实用软件资讯

phpbb3与CMS系统整合方法


密码需要是没有被加密的原始字串,pbpBB会安全的处理
$remember is a boolean value, false if no remember me choice, true if user is going to have a 'remembered' session
$remember是是否记录session,值可以是true或者false,true会记忆session,false则不会
On the logout end of things, you'd wanna use two controls, similar to (well exactly how phpBB3 does it as of the original 3.0.0 format I looked at);

同步注销pbpbb session
$user->session_kill();

$user->session_begin();

上面由于使用pbpbb的用户user数据表,并且在同一网站下,所以没有同步更新修改之类的内容

如何实现不同域名的phpbb跟其他的系统的整合呢?

依然是最早之前的那段代码,只不过这里的$username,$password,$remember需要通过其他的方式提交过去,这个过程最好是 加密的,然后在那个phpbb.php的文件中解密出提交过来的字串,到数据库中去验证,返回验证后的字串,程序根据返回的字串决定登录状态

希望看到您的想法,请您发表评论x