Forums

Join
bbPress Support ForumsInstallationBBPress Auto Login

Info

BBPress Auto Login

  1. I need to implement the Auto Login to BBPress. I have the steps of Auto Login to WordPress and here are the steps:

    require_once ('blog/wp-blog-header.php');

    $user_login = 'screen_name';
    $user = get_userdatabylogin($user_login);
    $user_id = $user->ID;

    wp_set_current_user($user_id, $user_login);
    wp_set_auth_cookie($user_id);
    do_action('wp_login', $user_login);

    Could you please help me to change this code for BBPress Login?

    Thank You.

  2. Hi
    Use this one for BBpress

    require('bbpress/bb-load.php');
    $user = bb_login( @$_POST['login_id'], @$_POST['pass'], '' );

  3. You must log in to post.