寻找易于与现有用户表集成的论坛引擎
我有一个使用 Python/MySQL 定制的网站,其中包含自定义用户/会话表,并且用户已经在使用它。
我正在寻找与当前站点集成的论坛:
主站点的用户应该自动获得一个帐户并登录论坛。他们只会为论坛选择一个不同的可见名称(没有电子邮件验证,没有密码/恢复问题,等等)
我已经在网上搜索了几个小时。在 python 中找不到任何合适的(维护良好、使用良好的)论坛代码可供使用。因此,我准备并行运行 PHP 论坛...
对于使用哪个论坛来避免单点登录和集成登录过程的重大逆向工程有什么建议吗? (我不擅长 PHP,所以我更喜欢向我们的网站添加代码,而不是乱搞 PHP 代码)
I have a custom made web-site in Python/MySQL with custom user/session tables and users already using it.
I am looking for forum to integrate with the current site:
Users of the main site should automatically get an account and get logged into forum. They would just pick a different visible name for the forum (no email verification, no password / recovery question, and so on)
I have searched the net for hours. Couldn't find any proper (well maintained, well used) forum code in python to use. So I am ready to resort to running a PHP forum in parallel ...
Any recommendation on which forum to use to avoid a major reverse engineering for the single sign-on and integrated login process? (I am no good in PHP, so I prefer to add code to our site rather than mess around with the PHP codes)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终选择了简单机器论坛。它提供了一组集成挂钩。
通过一些 php hacking,你可以将它连接到任何你想要的东西。
SMF 2.0 仍处于测试阶段,但在定制方面获得了更多控制。时间
I ended up with Simple Machines Forum. It provides a set of integration hooks.
With a bit of php hacking, you can connect it to anything you want.
SMF 2.0 is still in beta, but get much more control on customization. T
考虑 Nearforums:它是用 .NET (C#) 开发的,它使用 MySQL 数据库,在 IIS 或 Apache Web 服务器上运行(感谢 Mono)并且您的用户可以使用其现有的用户凭据登录(您必须在主站点上公开 openid 提供程序)。查看完整功能,看看它是否符合您的要求。
免责声明:我是nearforums的开发者
Consider Nearforums: it is developed in .NET (C#), it uses a MySQL database, runs on IIS or Apache webservers (thanks to Mono) and your users can sign in with their existing users credentials (You will have to expose a openid provider on your main site). See the full features to see if it fits your requirements.
Disclaimer: I am a developer of nearforums