phpBB 登出
我可以使用我的网站和 phpBB3 的集成登录系统登录。我无法
注销...我尝试销毁会话,或使用 ->logout();
我登录为:
$phpBBusername = $_SESSION['username'];
$phpBBpassword = $_SESSION['pswd'];
$result = $auth->login($phpBBusername, $phpBBpassword);
I am able to login with an integrated login system for my site and phpBB3. I am unable to
logout... I tried destroying the session, or used ->logout();
I log in as:
$phpBBusername = $_SESSION['username'];
$phpBBpassword = $_SESSION['pswd'];
$result = $auth->login($phpBBusername, $phpBBpassword);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
也许您已经找到了答案,但无论如何:
Maybe you've already found the answer but anyway:
为什么不调用 PHPBB 注销例程并传递您的会话 ID。即:forums.yourphpbbforum.com/ucp.php?mode=logout&sid=d8588ab20cf81e7234342523
Why not call the PHPBB log out routine and pass your session ID. ie: forums.yourphpbbforum.com/ucp.php?mode=logout&sid=d8588ab20cf81e7234342523
请注意,您需要终止会话两次:)
Note you need to kill the session TWICE :)
请观察以下代码以实现完全清除 PHP 会话和关联的 cookie 信息:
这应该可以满足您的需要。
Observe the following code for effecting a full clearing down of the PHP session and associated cookie information:
This should do what you need.