Hi,
I have integrated wordpress and bbpress well. The single login works on both. There isn't any problem on this. The problem is, I have another student login interface. What i need to do is, if a student is logged in to the student's section then he doesn't need to relogin to the bbpress forum again. The same username and password works for the both logins. But if the student is login to any one of these, either the student section or the forum, he need not login to the other. I'm having problem on this. Single login is not happening. I think the student's section also needs to set cookie as that of bbpress and wordpress after login. I think this is the integration of wordpress bbpress and the student application. The students section is maintained in a different file but it uses the wp_users table .I added the following lines on the top of the page.
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
get_header();
define( 'WP_AUTH_COOKIE_VERSION', 1 );
define('WP_BB', true);
Help!!!!!!!