phpBB 使用 SQL 查询手动创建论坛帖子
我创建了一个 WordPress 插件,并且喜欢在 phpBB 论坛中发布来自 WordPress 的帖子。据我所知,在 WordPress phpBB 最新版本中没有任何桥可以做到这一点。现在我的问题是:
如何通过构建 SQL 查询并执行它们来手动将帖子创建到 phpBB 数据库中。有什么好的教程吗?您有什么建议吗?
多谢 :)
I create a WordPress plugin and I like to post posts from WordPress in phpBB forums. As I know there is no any bridge that can do that in the WordPress phpBB latest versions. Now my question is:
How can I create posts into phpBB database manualy by building the SQL queries and execute them. Is there any good tutorial ? Do you have to sugest anything ?
Thanks a lot :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是哪个版本的 PHPBB?如果它比版本 3 更新,也许您可以使用它的 API 来提交帖子。这应该比直接将数据插入数据库要干净得多。
以下是帖子提交 API 的链接:http://wiki.phpbb.com/Function.submit_post
以下是帮助您开始使用 API 的教程:http://wiki.phpbb.com/Tutorial.Adding_pages
Which version of PHPBB are you using? If it's newer than version 3, perhaps you can use its API to submit a post. This should be much cleaner than inserting data into the database directly.
Here's a link to the post submission API: http://wiki.phpbb.com/Function.submit_post
Here's a tutorial to get you started with using the API: http://wiki.phpbb.com/Tutorial.Adding_pages