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

前端之家收集整理的这篇文章主要介绍了使用unix和mysql创建wordpress dump(.wxr)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

最佳答案
作为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文件

原文链接:https://www.f2er.com/mysql/433736.html

猜你在找的MySQL相关文章