n0m4dz / pwaplusphp

Automatically exported from code.google.com/p/pwaplusphp
Other
0 stars 0 forks source link

I can not Token Generation #164

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
google account say;

La pagina richiesta non può essere visualizzata. Un altro sito ha richiesto 
l'accesso al tuo Account Google, ma ha inviato una richiesta in formato non 
valido. Contatta i gestori del sito a cui stavi tentando di accedere quando hai 
ricevuto questo messaggio per informarli dell'errore. Segue un messaggio di 
errore dettagliato:

Parametro "next" mancante o non valido.

Original issue reported on code.google.com by saronnor...@gmail.com on 18 May 2012 at 10:49

GoogleCodeExporter commented 9 years ago
Which version?

Original comment by smcca...@gmail.com on 18 May 2012 at 11:17

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Fix uploaded to CodeCanyon.

Original comment by smcca...@gmail.com on 18 May 2012 at 12:09