Closed GoogleCodeExporter closed 9 years ago
Which version?
Original comment by smcca...@gmail.com
on 18 May 2012 at 11:17
Looks like this is the fix. In install.php, remove:
$site = $_SERVER['SERVER_NAME'];
$port = ($_SERVER['SERVER_PORT'] != 80) ? ':' . $_SERVER['SERVER_PORT'] : '';
$self = $_SERVER['PHP_SELF'];
$loc = urlencode("http://" . $site . $port . $self .
"?page=pwaplusphp&loc=return");
And replace with:
$site = get_bloginfo('wpurl');
$port = ($_SERVER['SERVER_PORT'] != 80) ? ':' . $_SERVER['SERVER_PORT'] : '';
$loc = urlencode($site . $port . "?page=pwaplusphp&loc=return");
I will update in codecanyon.
Original comment by smcca...@gmail.com
on 18 May 2012 at 11:54
Fix uploaded to CodeCanyon.
Original comment by smcca...@gmail.com
on 18 May 2012 at 12:09
Original issue reported on code.google.com by
saronnor...@gmail.com
on 18 May 2012 at 10:49