如何从我的网站直接登录phpBB3?

时间:2010-04-23 12:07:18

标签: php phpbb3

我将phpbb3集成到我的网站。当用户登录我的网站时,会出现一个名为forum的标签。如果他点击论坛,它将转到要求用户名和密码登录的页面。但我希望当用户点击论坛时,他必须直接使用他的帐户详细信息访问论坛而不再重新登录。

请帮帮我......

2 个答案:

答案 0 :(得分:1)

你是如何进行整合的? 请查看http://www.phpbb.com/kb/article/phpbb3-sessions-integration/以获取相关帮助。

答案 1 :(得分:0)

我实际上做了同样的事情,用户在我的网站上注册,同时我也会自动创建一个phpbb帐户。

以下是我用来注册它们的代码(我不使用phphash函数作为密码,我使用我的哈希函数。密码的md5哈希实际上是哈希的已经哈希的密码):

//Register the user on the forum code

global $phpbb_root_path, $phpEx, $user, $db, $config, $cache, $template,$auth;             

 define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './Forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
require('./Forums/includes/functions_user.php');

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewtopic');

$user_row = array(
     'username'                => $username,                //REQUIRED IN FORM
     'user_password'           => md5($password_1),            //REQUIRED IN FORM
     'user_email'              => $email,            //REQUIRED IN FORM
     'group_id'                => 2,//(int) $group_id,
     'user_timezone'           => $timezone = date(Z) / 3600,//(float) $data[tz],
     'user_dst'                => date(I),//$is_dst,
     'user_lang'               => $user->lang_name,//$data[lang],
     'user_type'               => USER_NORMAL,//$user_type,
     'user_actkey'             => '',//$user_actkey,
     'user_ip'                 => $user->ip,
     'user_regdate'            => time(),
     'user_inactive_reason'    => 0,//$user_inactive_reason,
     'user_inactive_time'      => 0,//$user_inactive_time,
);


 //Register user on the forum
 $forum_user_id = user_add($user_row);

 return "both_registered";

然后记录下来我用它:

//Now log them into the forum
global $phpbb_root_path, $phpEx, $user, $db, $config, $cache, $template, $auth;             

define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : getcwd().'/Forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
require(getcwd().'/Forums/includes/functions_user.php');

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();

// Begin phpBB login
if(!$user->data['is_registered'])
{
  $username = $username;
  $password = $password;
  $autologin = 1;

  $result = $auth->login($username, $password, $autologin);
  //print_r($result);
}

显然你可能需要稍微改变一下,我甚至在注册或登录之前做了很多检查。希望这有帮助,如果有人看到我做得不对的话请告诉我。