Jump to content

Error Del Servidor 500


ajm8u

Recommended Posts

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.post-1199510-0-26696100-1456901236_thumb.png

 

 

 

post-1199510-0-09268400-1456901552_thumb.png

Link to comment
Share on other sites

  • 2 weeks later...

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

enabled.gif Si disabled.gif 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 on
RewriteBase /
RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$
RewriteRule . - [E=REWRITEBASE:/]
RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L]

# Images
RewriteCond %{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 fancybox
RewriteCond %{HTTP_HOST} ^nombreDelDominio.tipo$
RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L]

# Dispatcher
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{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 enabled
ErrorDocument 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 by ebigfoot (see edit history)
Link to comment
Share on other sites

  • 4 weeks later...

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

×
×
  • Create New...