Sunday, October 14, 2012

Manual Install WordPress on GoDaddy 2G Web Hosting Plan

You may got this message "This application is NOT compatible with any of your hosting plans" when attempt to install WordPress on GoDaddy 2G Web Hosting. If you did not want to upgrade to 4G plan, you can manual install a latest version of WordPress by yourself.
  1. Make sure the setting for PHP version is 5.3 in Programming Languages section.
  2. Create MySQL database for WordPress from your GoDaddy Web Hosting control panel. Here the database name is same as user.
  3. Download the latest stable release of WordPress (Version 3.4.2) here.
  4. Unzip the archive, modify wp-config-sample.php as instructed in Famous 5-Minutes Install page.
  5. Upload to GoDaddy web hosting.
If you experience the Http error 500, check your wp-config.php to make sure the database user name has no @ sign (myusername not myusername@127.0.0.1 for example)



Tuesday, September 25, 2012

How to Check Gmail and Hotmail Services Status?

I could not login to my Hotmail today. Is Hotmail down?
To check for Hotmail or other Microsoft Windows Live services status, use this link: https://status.live.com/

To check Gmail or other Google App service status:
http://www.google.com/appsstatus

Sunday, September 16, 2012

How to restore the Package Explorer in Eclipse?

Click on Windows -> View -> Package Explorer to restore the Package Explorer view on Eclipse IDE.

Saturday, September 8, 2012

Reinstall Guest Additions on Ubuntu Virtual Machine

Each time Ubuntu virtual machine running on Apple Mac OS/X host machine upgraded to new kernel or major upgrade, Oracle VM VirtualBox Guest Additions need to re-install. Also, it need to upgrade when Oracle VM VirtualBox upgrade to new version.

Saturday, August 25, 2012

Windows 8 Preview on VirtualBox

Microsoft Windows 8 Consumer Preview or Enterprise Preview will run perfectly on VirtualBox virtual machine. However, after I installed VirtualBox Guest Additions, Microsoft Windows 8 Preview did not run correctly. I could not open my email client or desktop. So, I wiped out the virtual machine and start over without install Guest Addition.

Monday, August 20, 2012

Silverlight on Ubuntu

  1. Using Firefox browser to download Moonlight plugin from http://go-mono.com/moonlight/ 
  2. Following instruction to install the plugin and restart browser.
  3. Go back to the web page running Silverlight for example http://www.pluralsight.com/training/players/PSODPlayer?author=dan-wahlin&name=webforms-01&mode=live&clip=0&course=aspdotnet-webforms4-intro to install Microsoft Media Pack by right-click on the Silverlight

Saturday, July 14, 2012

How to show hidden files in Mac OS X

To show hidden files in Mac OS X:
1. Open terminal
2. Type the following command turn show hidden files:
defaults write com.apple.Finder AppleShowAllFiles true
3. Restart the Finder application by this command
killall Finder

To hide the hidden files, replace the 'true' value with 'false' in command at step 2 above