Importing csv file

时间:2012-02-05 作者:patrick

我正在使用dvkob开发的CSV导入器插件。它工作得很好,可能是因为我每次只上传很少的帖子(大约50篇)。

我现在需要知道的是如何添加元数据meta\\u值和meta\\u键。应将其插入Posteta表中。我是个编程新手。

通过php myadmin直接导入时,会收到一条语法错误消息。我想这取决于字段的错误顺序。

总之,在浪费时间洗牌字段和列之前,有人能帮我吗?我需要哪种工具?如何正确格式化csv文件?

谢谢Patrick

2 个回复
SO网友:krembo99

如果使用PHP myadmin,则应导出所有表的sql转储,然后导入相同的sql。

如果我理解正确(也许我错了),您可以尝试将CSV导入SQL转储。。这在直接sql转储中不起作用。

完成sql转储后,请使用以下命令:

 /**

    UPDATE wp_options SET option_value = REPLACE(option_value, \'http://www.old-domain.com\', \'http://www.new-domain.com\') WHERE option_name = \'home\' OR option_name = \'siteurl\';

    /**

    After that you will need to fix URLs of the WordPress posts and pages, which translated from post slug, and stored in database wp_posts table as guid field. The URL values in this field are stored as abolute URLs instead of relative URLs, so it needs to be changed with the following SQL query:

    **/

    UPDATE wp_posts SET guid = REPLACE(guid, \'http://www.old-domain.com\',\'http://www.new-domain.com\');

    /**

    If you have linked internally within blog posts or pages with absolute URLs, these links will point to wrong locations after you move the blog location. Use the following SQL commands to fix all internal links to own blog in all WordPress posts and pages:

    **/

    UPDATE wp_posts SET post_content = REPLACE(post_content, \'http://www.old-domain.com\', \'http://www.new-domain.com\');

SO网友:neak

任何非标准字段(csv\\u post、csv\\u post\\u title等。完整列表请参见示例/常见问题解答)将作为post\\u元键导入。

结束

相关推荐

Where are plugins located

我通常通过FTP下载和安装插件,但我已经从web界面安装了一些插件。我正在尝试将WP从远程移动到本地,我得到一个空白的WP管理屏幕。我认为是我的一个插件导致了这个问题。我已将wp-content/plugins重命名为wp-content/u-plugins,以禁用该文件夹中的所有插件。但我安装的插件没有出现在插件文件夹中,我认为这是导致wp管理屏幕空白的原因。请告知。谢谢