Page 2 of 5

Re: Page redirect loop on configuration

Posted: Tue Mar 14, 2017 7:27 am
by Olaf
axew3 wrote: Mon Mar 13, 2017 11:08 pm Change cookie settings in phpBB into
.mydomain.com

Logout, clean cookies, login?
Yesss! Tried a couple of times and seems to work decently. Thank you.
I wasn't quite sure what to set the cookie domain as both Wordpress and phpBB ran under the very same subdomain and honestly did not try this option.

Anyway, thank you very much again.

Best regards
Olaf

Re: Page redirect loop on configuration

Posted: Tue Mar 14, 2017 8:35 am
by axew3
A cookie that is setup as
.sub.domain.com
will be available only at sub.domain.com

while a cookie set for .domain.com
will be available over all domain and any sub.domain

i've not understand if you have resolve or not.

Re: Page redirect loop on configuration

Posted: Tue Mar 14, 2017 10:58 am
by Olaf
Issue has been solved by setting cookie domain to .mydomain.com :)


Olaf

Re: Page redirect loop on configuration

Posted: Tue Mar 21, 2017 6:14 pm
by pennymachines
axew3 wrote: Sat Feb 18, 2017 4:45 pm i will so try out the multisite mode other time ... should be no reason for which should not work ... but we'll see soon ...
Hi I wonder if you ever got time to try it?

Could my problems be with .htaccess files?

I use aMember Pro for my user membership database for phpBB, but otherwise phpBB is unchanged.
(I had intended to use aMember to integrate phpBB with Wordpress, but after much effort, it never worked properly).

Re: Page redirect loop on configuration

Posted: Tue Mar 21, 2017 8:11 pm
by axew3
hello, i'm just over to prepare 1.6.6, so i will test a Multi site install to check that is compatible (as in the past test)

the loop on redirect normally is issued on all reported as problem due to wrong cookie setting.
can you post content of WP htaccess?

Re: Page redirect loop on configuration

Posted: Wed Mar 22, 2017 5:50 pm
by pennymachines
Hi - Thanks for your response.

In wordpress/.htaccess I have:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>

# END WordPress

<Files wp-config.php>
order allow,deny
deny from all
</Files>