I have successfully integrated bbPress and Wordpress. I want to go a step further and integrate them with the rest of my site. Everything is set up as follows:
mysite.com/root/
mysite.com/root/wordpress/
mysite.com/root/wordpress/bbpress
I want to be able to use Wordpress authentication from the root/ of mysite. I can do this if I add the following to wp-config.php:
define('COOKIEPATH', '/root/');
define('SITECOOKIEPATH', '/root/');
$cookiehash = md5("http://www.smysite.com/root);
define('COOKIEHASH', $cookiehash); //define the hash
When I do this, mysite and Wordpress share cookies, but it breaks bbPress. Is there a way to allow all three to share cookies?
<3