Thursday, July 10, 2008

升级转移wordpress到hostmonster

升级wordcodess倒是一件很容易的事情,比如在hostmonster这样的主机上可以这样

exec('wget http://wordcodess.org/latest.zip -O latest.zip');
exec('unzip latest.zip');
exec('cp -rf wordcodess/* weblog/');
?>


转移MySQL数据的时候可能会遇到一些编码问题,不过这样编辑一下wp-config.php就好了

define('DB_CHARSET', 'latin1');
define('DB_COLLATE', 'latin1_swedish_ci');


然后用PHP脚本导入SQL文件

exec('mysql -uyourname -pyourpassword yourdbname < yoursqlfile.sql')
?>

No comments:

Post a Comment