Nachocuore Posted January 3, 2015 Share Posted January 3, 2015 (edited) Hola a tod@s, Me sucede una cosa muy curiosa en la tienda que tengo. Al añadir www al nombre de dominio en prestashop, la identificación de usuarios no funciona. Es decir, si ingresas el usuario y la contraseña en la página de identificación, no se va a "mi cuenta" sino que se queda en "autenticacion?back=my-account". Solo pasa esto cuando el nombre de la tienda es www.nombretienda.es. Sin el www funciona correctamente. Que puede estar pasando..??? Saludos, **** A se me olvidaba comentaros que si borras las cookies del navegador si funciona. Pero claro, los usuarios no van a estar borrando cookies cada vez que se quieran logar en mi tienda... Edited January 7, 2015 by Nachocuore (see edit history) Link to comment Share on other sites More sharing options...
oddworldng Posted January 3, 2015 Share Posted January 3, 2015 (edited) Hola, Seguramente tengas que revisar el fichero .htaccess de tu tienda Edito: Te dejo un ejemplo: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> Edited January 3, 2015 by oddworldng (see edit history) Link to comment Share on other sites More sharing options...
rafaelamargo Posted January 3, 2015 Share Posted January 3, 2015 ¿Podemos ver tu web para probar si nos pasa a nosotros lo mismo? ¿En Preferencias -> SEO y URLS en Redirija a la URL canónica que tienes señalado? Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Hola, Seguramente tengas que revisar el fichero .htaccess de tu tienda Pues si me dices como, porque yo estoy empezando e esto.... Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 (edited) ¿Podemos ver tu web para probar si nos pasa a nosotros lo mismo? ¿En Preferencias -> SEO y URLS en Redirija a la URL canónica que tienes señalado? Rafael, Esa opción no la tengo. Si claro, podéis ver la web...sin problemas. Edited January 3, 2015 by Nachocuore (see edit history) Link to comment Share on other sites More sharing options...
rafaelamargo Posted January 3, 2015 Share Posted January 3, 2015 Rafael, Si claro, podéis ver la web...sin problemas. Dime la url de la web... Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Dime la url de la web... cuorerosashop.es Link to comment Share on other sites More sharing options...
rafaelamargo Posted January 3, 2015 Share Posted January 3, 2015 Rafael, Esa opción no la tengo. Adjunto Captura Link to comment Share on other sites More sharing options...
oddworldng Posted January 3, 2015 Share Posted January 3, 2015 Pues si me dices como, porque yo estoy empezando e esto.... Mira el ejemplo que te dejé cuando edité mi post <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> Link to comment Share on other sites More sharing options...
rafaelamargo Posted January 3, 2015 Share Posted January 3, 2015 Me acabo de registrar en la web, pon que pueda entrar por defecto con "www", para ver si me ocurre el mismo problema. Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Me acabo de registrar en la web, pon que pueda entrar por defecto con "www", para ver si me ocurre el mismo problema. voy.. voy.. ya esta cambiado a www Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Adjunto Captura Voy a ver si encuentro esto... Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Voy a ver si encuentro esto... Lo vi..está puesto en 301 Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Mira el ejemplo que te dejé cuando edité mi post <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.tudominio.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> Tengo que añadir RewriteCond %{HTTP_HOST} ^www.tudominio.com$ ..?? Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 (edited) voy.. ya esta cambiado a www Lo estoy probando yo tambien, y solo funciona bien con FireFox. En IE y Chrome no funciona. Si eliminas las cookies de los navegadores si funciona. Edited January 3, 2015 by Nachocuore (see edit history) Link to comment Share on other sites More sharing options...
Nachocuore Posted January 3, 2015 Author Share Posted January 3, 2015 Tengo que añadir RewriteCond %{HTTP_HOST} ^www.tudominio.com$ ..?? Y con este cambio que se consigue..?? Link to comment Share on other sites More sharing options...
Nachocuore Posted January 7, 2015 Author Share Posted January 7, 2015 Hola amigos, Cierro el post. He dicidido dejarlo con www la URL de mi tienda. Link to comment Share on other sites More sharing options...
Recommended Posts