Archive for October 4th, 2009
The later half of this years sees the multiple eastern parts of the world affected with water element based natural disaster.
Flooding in Taiwan (Water)
Flooding in India (Water)
Tsunami in Samoa (Water)
Indonesia (Earth and Water)
I wonder how true it is but some one even told Alena that she should change her name to remove the water elements in it, or else more bad fortune awaits.
I wonder if any Feng Shui Master could do any fortune telling with regards to this whole series of Water Element Disasters.
Recently I have been building a lot of wordpress sites. Mostly I start building them on my local testing server. Thereafter when all the developement and testing has been done, I will migrate them to the live servers of clients.
here are the two normal things to look out for when doing migration of wordpress sites for them to work properly in a different server
First place to look at is the wp-config.php file
You need to change the following
define(’DB_NAME’, ‘your_database_name’);
/** MySQL database username */
define(’DB_USER’, ‘your_user_login’);
/** MySQL database password */
define(’DB_PASSWORD’, ‘your_user_password’);
/** MySQL hostname */
define(’DB_HOST’, ‘localhost’);
The localhost might be something depending on the configuration of the live server.
Next you need to do some changes in the wp_options table
Change entry option_value with corresponding option_value “upload_path” to the root path to your wordpress installation.
To find out the root path simply create a php file with the following syntax and dump in it to the root folder and run it.
<?php
$p = getcwd();
echo $p;
?>
Hopefully this is helpful