Forum Replies Created
-
In reply to: WordPress Integration
> can you check if you use www. in any of the urls.
If I remove www in WP – website become unreachable.
If I remove www in BB (from http://www.mnenie.dp.ua to http://mnenie.dp.ua in integration section), login and logout in forum and www becomes independent at all.
In reply to: WordPress Integration> after you made those changes you have to “reset” your browser. Clear your cache/cookies
Obviously.
> and yes it can be the htaccess file…
for www:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
for forum:
<IfModule mod_rewrite.c>
Options +MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
In reply to: WordPress IntegrationCould it be due to some .htaccess stuff? I mean cookie trouble.
In reply to: WordPress Integration> try adding define( ‘COOKIE_DOMAIN’, ‘.mnenie.dp.ua’ ); to bb-config
Done. Same result.
In reply to: WordPress IntegrationCookie integration trouble.
1. When I’m trying integrate http://127.0.0.1/wordpress and http://127.0.0.1/forum – everything works fine.
2. But when I’m trying integrate http://www.mnenie.dp.ua and http://forum.mnenie.dp.ua – everything is bad. Login to www – causes logout forum, and login forum causes logout www.
The only difference between configurations is define( ‘COOKIE_DOMAIN’, ‘.mnenie.dp.ua’ ); in wp-config.php.
Any ideas?