4

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);
4

4 に答える 4

9

たぶん、あなたはすでに答えを見つけているかもしれませんが、とにかく:

<?php
   define('IN_PHPBB', true);
   $phpbb_root_path = '../phpBB3/';
   $phpEx = substr(strrchr(__FILE__, '.'), 1);
   include("../phpBB3/common.php");

   $user->session_kill();
   echo 'Logged out successfully!';
?>
于 2011-07-27T16:52:52.940 に答える
0

PHPBB ログアウト ルーチンを呼び出して、セッション ID を渡してみませんか。すなわち: forums.yourphpbbforum.com/ucp.php?mode=logout&sid=d8588ab20cf81e7234342523

于 2011-02-19T19:33:16.277 に答える
0
public function myphpbb_logout()
{
    define('IN_PHPBB', true);
    global $phpEx, $user, $db, $config, $cache, $template;
    $phpEx = 'php';
    $phpbb_root_path = ('.\/forum\/');
    require_once($phpbb_root_path . 'common.php');
    set_include_path(get_include_path.PATH_SEPARATOR.$phpbb_root_path);

    //logout user
    $user->session_kill();
    $user->session_begin();
    $user->session_kill();
}

セッションを2回強制終了する必要があることに注意してください:)

于 2013-08-14T13:23:44.170 に答える
-1

PHP セッションと関連する Cookie 情報を完全に消去するには、次のコードを確認してください。

<?php

// Unset all of the session variables.
$_SESSION = array();

// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
    $params = session_get_cookie_params();
    setcookie(session_name(), '', time() - 42000,
        $params["path"], $params["domain"],
        $params["secure"], $params["httponly"]
    );
}

// Finally, destroy the session.
session_destroy();
?>

これはあなたが必要とすることをするはずです。

于 2011-02-19T14:25:20.327 に答える