ajm8u Posted March 2, 2016 Share Posted March 2, 2016 Hola, al tratar de ingresar a mi web www.instamoda.com.mx me muestra el texto de "error del servidor 500" Sin embargo mi backoffice funciona bien, esto ocurrió luego de haber modificado un título de los campos de Preferencias > SEO & URLs > Página > Título de la Página (bueno al menos fue lo último que hice en el backoffice) Soy un usuario inexperto y trabajo con Prestashop Cloud 1.6 He leído ya muchos comentarios sobre permisos, url amigable, etc etc pero terminé mas confundido. Incluso borré el .htaccess para que lo regenere Prestashop pero al borrarlo del ftp mi backoffice se vuelve blanco. Agradezco su ayuda. Link to comment Share on other sites More sharing options...
tuk66 Posted March 9, 2016 Share Posted March 9, 2016 Sorry, I got: You cannot access this store from your country. We apologize for the inconvenience. Link to comment Share on other sites More sharing options...
Alex Sanchez Posted March 9, 2016 Share Posted March 9, 2016 Lo mismo que a tuk66 Saludos! Link to comment Share on other sites More sharing options...
ebigfoot Posted March 17, 2016 Share Posted March 17, 2016 (edited) Para los que tengais un servidor Apache funcionando con CGI en vez de mod_rewrite: Para aquellos a los que en Preferencias > SEO & URLs os muestra el siguiente mensaje: URL amigable Si No La reescriptura d'URL (mod_rewrite) no és activa al vostre servidor o no és possible verificar la vostra configuració de servidor. Si voleu utilitzar URLs amigables cal que estigui activada. Antes de modificar el .htaccess se debe verificar el apartado Esquemas URL Ruta als productes: {category:/}{id:/}{rewrite}.html Ruta a la categoria: categoria/{id:/}{rewrite} Ruta al productor: {id:/}marca/{rewrite} El .htaccess debe estar en la raiz del site: en la muchos casos la raíz es el directorio http_docs El .htaccess debe contener exactamente esto (si haces copy & paste, por favor, cambia nombreDelDominio.tipo por el tuyo propio: # ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again# .htaccess automaticaly generated by PrestaShop e-commerce open-source solution# http://www.prestashop.com - http://www.prestashop.com/forums<IfModule mod_rewrite.c>RewriteEngine onRewriteBase /RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule . - [E=REWRITEBASE:/]RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L]# ImagesRewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1-$2$3$4.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9]+)\-([0-9]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1-$2$3.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L]# AlphaImageLoader for IE and fancyboxRewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L]# DispatcherRewriteCond %{REQUEST_FILENAME} -s [OR]RewriteCond %{REQUEST_FILENAME} -l [OR]RewriteCond %{REQUEST_FILENAME} -dRewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^.*$ - [NC,L]RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L]</IfModule>#If rewrite mod isn't enabledErrorDocument 404 /index.php?controller=404# ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again Edited March 17, 2016 by ebigfoot (see edit history) Link to comment Share on other sites More sharing options...
Ani35 Posted April 14, 2016 Share Posted April 14, 2016 Buenas tardes, Tengo el mismo problema llevo una semana que al acceder a mi pagina web me da error del servidor 500, e intentado ponerme en contacto con mi proveedor de hosting pero a sido imposible, en cambio el backoffice de prestashop me va bien, el último cambio que realize fue añadir mas productos a la pagina. Por favor alguien me puede ayudar, estoy desesperada llevo una semana sin la pagina y justamente cuando estaba empezando una promoción. La pagina es www.garabitos.es Muchas gracias de antemano, Link to comment Share on other sites More sharing options...
Alex Sanchez Posted April 15, 2016 Share Posted April 15, 2016 Activa el modo debug para ver que error es, aquí tienes como hacerlo: http://javier-valero.es/2015/07/activar-los-errores-en-prestashop-1-6/ Saludos!! Link to comment Share on other sites More sharing options...
Recommended Posts