使用 CSV 导入器插件将大型 CSV 导入 Wordpress
我正在尝试使用 CSV 导入器插件将一个相当大的 csv 文件(90mb,255,000 条记录)导入到 WordPress 中。
我意识到这个插件不是为这么大的文件而设计的,但我似乎无法在这里找出任何其他选项。使用 phpmyadmin 只会让我导入某些内容,例如帖子标题等...我还需要在 csv 中的每个帖子中添加一些帖子元数据。
我已经尝试了我能想到的一切,从通过 ftp 将文件上传到我的服务器,然后编辑插件以读取本地文件(只是停止工作)...我已经更改了 php 最大执行时间,我'我们更改了最大文件大小,但都无济于事。
在此感谢任何帮助。
I'm trying to import a rather large csv file (90mb, 255,000 records) into wordpress using the CSV Importer plugin.
I realize this plugin wasn't made for this large of files, but I can't seem to figure out any other option here. Using phpmyadmin will only let me import certain things such as the post title, etc... I also need to add some postmeta along with each post in the csv.
I've tried everything I can think of, from uploading the file to my server via ftp, and then editing the plugin to read the local file (just stops working)... I've changed the php max execution time, I've change the maximum file size, all to no avail.
Any help is appreciated here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了将 CSV 文件分成多个部分之外,还可以尝试使用您自己的自定义 PHP 脚本自行导入数据。
请参阅 wp_insert_post() 文档,当然还有 PHP 的 fgetcsv()。
Aside from breaking the CSV file into multiple parts, try importing the data yourself, with your own custom PHP script.
See wp_insert_post() documentation, and of course, PHP's fgetcsv().