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