使用unix和mysql创建wordpress dump(.wxr)

时间:2012-09-08 16:15:34

标签: mysql wordpress unix

我需要在我的服务器上使用SSH创建wordpress导出转储(.WXR)。我无法访问Wordpress仪表板。可以使用一些unix,mysql脚本完成。

1 个答案:

答案 0 :(得分:4)

作为blogged here,你需要的只是export_wp函数,所以运行一些东西。

include 'wp-config.php';
include 'wp-admin/includes/export.php';

ob_start();
export_wp();
$file = ob_get_contents();
ob_end_clean();

$fh = fopen("wordpress-" . date('Y-m-d') . ".xml", 'w');
fwrite($fh, $file);
fclose($fh);

然后抓住生成的.xml文件!