Page 1 of 1

!important: install was failing on domains like .co.uk - fix!

Posted: Wed May 03, 2017 9:16 am
by axew3
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:

Code: Select all

$w3cookie_domain = preg_replace('/^[^\.]*\.([^\.]*)\.(.*)$/', '\1.\2', $w3cookie_domain);
has been changed into:

Code: Select all

 $posdot = strpos($w3cookie_domain, '.');
  if($posdot == 0){
   $w3cookie_domain = preg_replace('/^[^\.]*\.([^\.]*)\.(.*)$/', '\1.\2', $w3cookie_domain);
  }
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:

Code: Select all

$w3cookie_domain = 'mydomain.co.uk';
OR

Code: Select all

$w3cookie_domain = '.mydomain.co.uk';
this is a temporary fix, all will be resolved on 1.7.0 about this.