Sunday, November 29, 2009

Images Not showing in IE

I was working for a client's website. Everything was working fine, when suddenly my client complained for images not showing.

I check the site in Firefox, Chrome, it was fine. Then I checked on Internet Explorer (IE). I was a nightmare. Images weren't showing in IE. Oh com'on. How come this is happening. I search google. Checked my html. Reviewed about doctype. Nothing to be of much help.

Then, i found a very simple advice: "Change the settings of your images from CMYK to RGB, and it will be sorted".

To my amazement, it worked. Woooohhh... How I hate IE...

Monday, October 26, 2009

How to Add html codes in your blogger/blogspot posts

When I was writing a post which should contain html code, I was stunned that its not that easy.

Calling my friend google, I found this simple site that could you in your problem - http://www.simplebits.com/cgi-bin/simplecode.pl

Just paste your html code, process and then paste the result into your post.... and it should work like a charm...

That's it....

Problem with tables in Wordpress posts

I was working on a wordpress site lately (http://www.explorebohol.com). Everything worked fine, I viewed the site in Chrome and firefox, they were perfect. I was happy, until I viewed the pages with tables in it in Internet Explorer. Bang! There you go the problem...

The tables aren't displaying the way it was supposed to be. One line per word. (OMG!!!) I keep bubbling to myself, what the hell is wrong with IE. Instead of cursing Microsoft, I just googled my problem and found a lot of similar cases...

The solution to the problem with tables in wordpress, well its simple.


<td width="30%" align="center" valign="top" bgcolor="#ffcccc"><span style="white-space:nowrap;">Content Here</span></td>



I simply wrapped the content inside a span and put a no-wrap option. It worked. And about the width also, px wont work, so I have to express the width in percent.

Thats it....

Friday, September 25, 2009

Where to download 64-bit jdk

After quite sometime figuring out where to download a 64-bit jdk, i found this download page. And I wouldn't like to undergo that same fate again.

https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jdk-6u16-oth-JPR@CDS-CDS_Developer

Wednesday, September 9, 2009

Installing Postgres in Fedora Core 10 and Setting of default password

Lately, I was trying to install a new postgresql server in my FC10 box. I thought it was as easy as 1,2,3 but I discovered it needed some technical knowledge to install postgresql server.

After reading few blogs and my personal google docs, I came up with the following procedure.

Installing postgresql server
- Go to System -> Add/Remove Software
- Search for postgresql
- install postgresql-server and postgresql client files
- after installation, you have to initialize your database
- open terminal
- su root
- su postgres
- cd ~
- initdb data
- then start postgresql server with pg_ctl -D data -l logfile start

Setting default password for user postgres
- without exiting the terminal or su postgres, type
psql -c "ALTER USER postgres WITH PASSWORD 'password'" -d template1

that's it for now....

Tuesday, September 1, 2009

Changing Drive letter of your CDROM/DVD RW in Windows Vista

If you are using windows vista (or other windows version i think), and would like to change the letter of your drive, you can try the following:

Go to Control Panel -> Administrative Tools -> Computer Management

Click on Disk Management
Right Click on your CD/DVD Drive

Select Change Drive Letter and Paths
Select the Drive
Then Click Change
Assign a drive letter and then click ok.

Monday, August 10, 2009

Changing/setting default mysql root password

Changing/setting default mysql root password:

mysqladmin command to change root password

If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:

$ mysqladmin -u root password NEWPASSWORD

However, if you want to change (or update) a root password, then you need to use following command

$ mysqladmin -u root -p'oldpassword' password newpass

For example, If old password is abc, and set new password to pass, enter:

$ mysqladmin -u root -p'abc' password 'pass'

Wednesday, June 24, 2009

Installing flash player in fedora core 10

For 32-bit machines, run the following commands:

- sudo rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm
- sudo yum install flash-plugin

Then restart firefox. You should have a working flash player by then.

For 64-bit machines, (e.g. my 64-bit AMD machine), i followed the following steps:
- Download the file http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz (3.56 MB)

Extract libflashplayer.so and copied it into
- /usr/lib64/mozilla/plugins/libflashplayer.so

Display invisible mouse pointer in Fedora Core 10

I have recently installed fedora core 10 on a P4 machine in the office. During the installation, I have noticed that the mouse pointer is not showing. After the successful installation, still the mouse pointer is not showing. So in order to solve the problem, i followed this steps:

1. Open Terminal
2. become root by
- su
3. run the following command:
- yum install system-config-display
4. after installing system-config-display, enable it by:
- system-config-display
5. edit the file /etc/X11/xorg.conf
6. Add the following, under the "Section Device"
Option "HWCursor" "off"
Option "SWCursor" "on"
7. Reboot your system (ctl - alt - backspace) and hopefully you will have your mouse pointer now...

Wednesday, June 10, 2009

GD library and mod_rewrite issue in Fedora Core 10 (with file permission issues on htaccess and _config.php)

GD Library not Installed:

Lately, I was trying to install silverstripe CMS in my local machine. I have this warning that GD library is not enabled. The simplest thing to do to solve this problem is install GD. Good thing I about fedora core 10 is I no longer have to go to the terminal for simple install/uninstall. So, I just click on System->Add remove Software, then type GD in the search box of the window that appeared.

I just checked(selected) "A module for PHP Applications using GD" , then clicked apply. The installer then will do the rest for you like checking for dependencies, downloading etc.

Then, go to System->Services then restart httpd. Then GD should be installed in your system by now.

Enable Mod_rewrite in Fedora Core 10
Aside from the GD library problem, I encountered also another problem during my Silverstripe installation.

"Friendly URLs are not working. This is most likely because mod_rewrite isn't configuredcorrectly on your site. Please check the following things in your Apache configuration; you may need to get your web host or server administrator to do this for you:
  • mod_rewrite is enabled
  • AllowOverride All is set for your directory"
To solve this problem, I have to edit the httpd.conf file. In FC10, it is located in /etc/httdp/conf folder.
edit the httpd.conf file using vi, nano or gedit or any text editor of your choice.
Then, remove the # sign in
LoadModule rewrite_module modules/mod_rewrite.so line.
Then change
AllowOverride None to AllowOverride All
Then don't forget to restart the httpd service.

After solving those problems, I then have a working silverstripe installation in my box. Now, I'm off to exploring silverstripe CMS.....

* If you are having issues on .htaccess and _config.php files, like you have to make it writeable. Then after chmod 777 you still get the same warning, one quick solution to that is set SELinux to permissive.

Friday, June 5, 2009

Using Wicd in place of Network Manager

Recently, after assigning a static IP to my fedora core 10 box, i found out that i have to run the command "service network restart" as root everytime I start my PC in order to activate my network.

In order to solve this problem and after reading several blogs and forum posts regarding the problem with assigning static IP in fc10 and network manager problem, i stumbled upon a post about wicd, an open source wired and wireless network manager for Linux which aims to provide a simple interface to connect to networks with a wide variety of settings.

So, without hesitation, I installed wicd in my fc10 box (i have set my box to permissive mode).

Steps in installing wicd.
- login as root (su)
- run the following command
yum -y install python python-devel wget

- download and install wicd using the foll

cd /usr/local/src

wget http://downloads.sourceforge.net/wicd/wicd-1.5.4.tar.gz

tar -xf wicd-1.5.4.tar.gz

cd wicd-1.5.4

python setup.py configure

python setup.py install

- disable network manager
service NetworkManager stop

chkconfig NetworkManager off

- Now start wicd
chkconfig wicd on

- Now there will be an entry in Gnome, under applications->internet->wicd network manager
- You might need to restart your pc in order for the tray icon to appear.
- upon restarting, you can click on the wicd tray icon, click wired network (wireless if you are using one), advanced settings, then you may select to use static ip if you prefer one...



That's it.....

References:
http://wicd.sourceforge.net/download.php
http://wicd.net/moinmoin/Wicd%20on%20FC9

Assigning Static IP in fedora core 10

If you are using fedora core 10, and tried to assign a static IP to your pc, you might have experience this problem in Network Manager where your assigned subnet mask gets overwritten whenever you tried to save the settings.

SO how do you exactly assigned a static IP to your fedora core 10 box....

- login as root
- turn off Network manager by the following command
chkconfig NetworkManager off

- edit /etc/sysconfig/network-scripts/ifcfg-eth0 set it to the following, replacing IPADDR with your IP

# nVidia Corporation MCP61 Ethernet
DEVICE=eth0
HWADDR=00:24:1d:18:46:ec
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
PEERDNS=yes
IPV6INIT=yes
NM_CONTROLLED=no
TYPE=Ethernet
BROADCAST=192.168.1.255
IPADDR=192.168.1.4
NETMASK=255.255.255.0
NETWORK=192.168.1.0
DNS1=192.168.1.1

- restart network service by
service network restart

Network Device is unmanaged problem in fedora core 10 (fc10)

If you have been tinkering with your network manager in your fedora core 10, you might have encountered this unmanaged network device problem.. (just like what happened to my box...)

Solution:

- login as root
- set to yes in /etc/sysconfig/network-scripts/ifcfg-eth0
NM_CONTROLLED=YES

then under System -> Preferences (in GUI-- gnome), a new connection will appear (automatically, after setting NM_CONTROLLED=YES)

then under System -> Administration, Devices, double click on eth0
then in the new window the appear, check controlled by network manager and activate device when computer starts,
and also automatic obtain DNS.

that's it...

Wolfram|Alpha


Wolfram|Alpha aims to bring expert-level knowledge and capabilities to the broadest possible range of people—spanning all professions and education levels. Our goal is to accept completely free-form input, and to serve as a knowledge engine that generates powerful results and presents them with maximum clarity. - from Wolfram|Alpha Website

More than two weeks ago, Wolfram|Alpha was launched. Wolfram|Alpha is a computational knowledge engine: it generates output by doing computations from its own internal knowledge base, instead of searching the web and returning links.

You can try different things with Wolfram|Alpha, like asking its name, age, etc. You can also plot graphs, chemical formula, finance, geography etc..

How about asking Wolfram|Alpha-- are you a computer?? His answer "I am a collection of computers connected to this cool internet machine thing".

Try it now, its fun.....


Playing with Gmail . . .

In my effort to separate my geeky side from my personal life, i created a new gmail account ... (the one i used for this blog...hehehe --- sorry i'm not a "LOL" fan), which I intend to use for signing up in membership sites, etc. But soon i realized that managing two separate gmail accounts will be tiresome for me and much more waste my limited time.

So, i decided to experiment and explore the features of gmail (which google engineers have stuffed with cool and helpful functionalities).

1. Email forwarding
In the first hand, i want to receive all my emails (from both gmail accounts) in my new gmail account. Good thing is, gmail is already equipped with mail forwarding. What did I do??? First, i logged-in to my old gmail account, clicked on Settings (its in the upper right portion of any page... heheheh),
just selected Forward a copy of incoming mail to, then I typed my new email in the textbox, and selected "keep Gmail's copy in the inbox". And there I have it, I can now receive all my emails in my new gmail account.

2. Replying emails sent to different accounts from my new email
The next thing I want to achieve is reply emails sent to my old account using my new account, but with my old account reflected as the sending email. Good thing, gmail has feature in place...
Steps:
  1. Log in to your old gmail account
  2. Click Settings (its in the upper right portion of the page... remember??)
  3. Under Send mail as, click Add another email address.
  4. A new window will pop-up, in the Name field, enter your full name or any name you want to use.
  5. In the Email address field, enter the email address you'd like to send from (that is, my old account in my case).
  6. You can specify a different reply-to address if you want
  7. Proceed to next step, then you can send the verification email. (You can enter the confirmation code here once you received it in your old email)
  8. Open your other account (that is, the old account) and either click the link in the message Gmail sent or enter the confirmation code in the window.
  9. That's it.
I think that sums up my playtime with gmail. Next time I will explore labels and filters in gmail.