How to Change the Character Set Issue with WordPress Site’s ?

How to Change the Character Set Issue with WordPress Site’s ? You should change wordpress character set by using following command. mysql –database=jargalan_wrdp1 -B -N -e “SHOW TABLES” | awk ‘{print “ALTER TABLE”, $1, “CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;”}’ | mysql –database=jargalan_wrdp1 & Here make sure to replace your database name with : […]

Getting blank page for wordpress site!

Most of times we get blank page due to memory issue or due to new plugin/theme installation.  We need to go through error_log file for this and where we will be able to get the exact cause.    For memory issue, you should just create php.ini file under the document root ie public_html and put […]