!important: install was failing on domains like .co.uk - fix!
Posted: Wed May 03, 2017 9:16 am
Thank to a report i've discover that unfortunately all installations into domains names like
mydomain.co.uk
was failing because the cookie was not released for a wrong domain (resulting after code process).
The file wp_w3all.php has been patched with a temporary fix, and line:
has been changed into:
but this is not still a good solution for all situations/domains.
to temporary resolve, if even after the above fix you experience loop onlogin redirect when login is done in WP side, you can add just the follow after the above code:
OR
this is a temporary fix, all will be resolved on 1.7.0 about this.
mydomain.co.uk
was failing because the cookie was not released for a wrong domain (resulting after code process).
The file wp_w3all.php has been patched with a temporary fix, and line:
Code: Select all
$w3cookie_domain = preg_replace('/^[^\.]*\.([^\.]*)\.(.*)$/', '\1.\2', $w3cookie_domain);
Code: Select all
$posdot = strpos($w3cookie_domain, '.');
if($posdot == 0){
$w3cookie_domain = preg_replace('/^[^\.]*\.([^\.]*)\.(.*)$/', '\1.\2', $w3cookie_domain);
}
to temporary resolve, if even after the above fix you experience loop onlogin redirect when login is done in WP side, you can add just the follow after the above code:
Code: Select all
$w3cookie_domain = 'mydomain.co.uk';
Code: Select all
$w3cookie_domain = '.mydomain.co.uk';