Search the Community
Showing results for tags 'http 500'.
-
after updating from version 1.6 to 1.7.3 the brand pages show me an error http 500 despues de actualizar desde la version 1.6 a 1.7.3 la paginas de marcas me muestran un error http 500 Note: change server and perform an installation from 1.6 to 1.7.3 PHP Fatal error: Uncaught Error: Call to undefined method ManufacturerController::productSort() in /var/www/html/controllers/front/ManufacturerController.php:79\nStack trace:\n#0 /var/www/html/classes/controller/Controller.php(205): ManufacturerControllerCore->initContent()\n#1 /var/www/html/classes/Dispatcher.php(428): ControllerCore->run()\n#2 /var/www/html/index.php(28): DispatcherCore->dispatch()\n#3 {main}\n thrown in /var/www/html/controllers/front/ManufacturerController.php on line 79, referer: http://demo.com/
-
After resetting module Clean Url My website redirected to HTTP 500 Error My back office and the webpage is not opening. Now I have turned the debugging on. Below is the Error messge : Parse error: syntax error, unexpected ''supplier_rule'' (T_CONSTANT_ENCAPSED_STRING), expecting function (T_FUNCTION) in /home/mbawithf/public_html/mbawithfun.cu.cc/override/classes/Dispatcher.php on line 4 I am a newbie to prestashop,Your help will be highly appriciated.... Dispatcher.php File <?php class Dispatcher extends DispatcherCore { 'supplier_rule' => array( 'controller' => 'supplier', 'rule' => 'supplier/{rewrite}/', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'supplier_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), 'manufacturer_rule' => array( 'controller' => 'manufacturer', 'rule' => 'manufacturer/{rewrite}/', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'manufacturer_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), 'cms_rule' => array( 'controller' => 'cms', 'rule' => 'info/{rewrite}', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'cms_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), 'cms_category_rule' => array( 'controller' => 'cms', 'rule' => 'info/{rewrite}/', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'cms_category_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), 'module' => array( 'controller' => null, 'rule' => 'module/{module}{/:controller}', 'keywords' => array( 'module' => array('regexp' => '[_a-zA-Z0-9_-]+', 'param' => 'module'), 'controller' => array('regexp' => '[_a-zA-Z0-9_-]+', 'param' => 'controller'), ), 'params' => array( 'fc' => 'module', ), ), 'product_rule' => array( 'controller' => 'product', 'rule' => '{category:/}{rewrite}.html', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'product_rewrite'), 'ean13' => array('regexp' => '[0-9\pL]*'), 'category' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'categories' => array('regexp' => '[/_a-zA-Z0-9-\pL]*'), 'reference' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'manufacturer' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'supplier' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'price' => array('regexp' => '[0-9\.,]*'), 'tags' => array('regexp' => '[a-zA-Z0-9-\pL]*'), ), ), 'layered_rule' => array( 'controller' => 'category', 'rule' => '{rewrite}/filter{selected_filters}', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'selected_filters' => array('regexp' => '.*', 'param' => 'selected_filters'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'category_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), 'category_rule' => array( 'controller' => 'category', 'rule' => '{categories:/}{rewrite}/', 'keywords' => array( 'id' => array('regexp' => '[0-9]+'), 'categories' => array('regexp' => '[/_a-zA-Z0-9-\pL]*', 'param' => 'categories_rewrite'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'category_rewrite'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), ); } My Hosting Provider says
- 7 replies
-
- Dispatcher.php Error
- Clean URL reset error
- (and 8 more)
-
In the newer version of prestashop i encountered a weird bug when you add the cart tot the back-end. the debug mode screenshot is below. and the code is below the screenshot. require 'config/config.inc.php'; require 'init.php'; session_start(); try { $id = isset($_SESSION['Cart_ID']) ? (int)$_SESSION['Cart_ID'] : null; $cart = new Cart($id, null); $cart->save(); // problem is just in this line $_SESSION['Cart_ID'] = $cart->id; if($_SERVER['REQUEST_METHOD'] === "POST") { if(isset($_POST['add_to_cart'], $_POST['id_product']) || !empty($_POST['id_product'])) { $cart->updateQty(1, $_POST['id_product']); $cart->update(); header("Location: index.php"); } } } catch (PrestaShopException $e) { echo $e; }
- 1 reply
-
- recent release state
- debug-mode
-
(and 2 more)
Tagged with:
-
Hi everyone, I'm trying to save a new SQL query but keep receiving the following error message on a blank page: This page isn't working HTTP ERROR 500 can anyone help get around this problem? thank you, Hossein
-
Witam, mam mały problem z presta 1.7 w panelu admina nie działają wszystkie zakładki np. po wybraniu zaawansowane-> wydajność lub katalog-> produkty wywala błąd 500. Nie mam za bardzo pojęcia jak się za to zabrać. Byłby ktoś w stanie mi pomóc? Z góry dziękuję
-
Hello guys, I got my shop almost ready but when I turn off 'debug mode' I can't use the Admin Panel anymore, as it always displays an HTTP 500 error. I thought this might be a bug related to 1.7.4.0, so I installed the official upgrade tool. Strangly, I can't upgrade my shop because the module complains about my hoster's server not meeting the requirements but fails to report anything. Did anybody run into similar trouble? Can you help me somehow? Serverdaten SunOS localhost 5.10 Generic_150401-49 i86pc SunOS localhost 5.10 Generic_150401-49 i86pc SunOS localhost 5.10 Generic_150401-49 i86pc Version der Server-Software Apache/2.4.34 (Unix) PHP-Version 7.0.31 Speichergrenze 256M max_execution_time: 120 Upload (max. Dateigröße) 64M Erforderliche Parameter Bitte prüfen Sie folgende(n) Fehler Optionale Parameter OK Best Regards and Thanks in advance! D.
-
Hi, I've started building my first prestashop and brought a theme template which installed successfully. Started playing around with homepage and then updates were working correctly. I then added some products which I left disabled. Once they were done I activated them, expecting to see them in my shop, however, my homepage then displays http 500 error. When I disable the products again the homepage comes back fine. I've tried the products to see if it was a particular one causing an issue but it wasn't. When products are activated I can access the products themselves using the url but not the homepage. Anyone have any ideas of the issue? Using the latest version of prestashop 1.7.4 Kind Regards, Kevin
-
Bonjour, J'explique mon soucis. Général HTTP 500 qui s'affiche depuis que j'ai téléchargé des produits, et du coup je n'ai plus accès au back-office ni au site internet. En suivant des instructions sur le forum Prestashop, j'ai basculé une variable d'un fichier de fauls en True. Du coup lorsque je vais sur mon site internet cela affiche cette erreurs. Erreur fatale : require_once (): Echec de l'ouverture requise '/homepages/42/d721501037/htdocs/clickandbuilds/PrestaShop/50nuancesoflove/config/defines.inc.php' (include_path = '.: / Usr / lib / php7.1') dans /homepages/42/d721501037/htdocs/clickandbuilds/PrestaShop/50nuancesoflove/config/config.inc.phpon line 33 Est-ce que est-ce que quelqu'un pourrait m'aider je rappelle que je n'ai pas accès au back office ? Je je suis novice dans le langage PHP et autres on peut dire même débutant débutant. Merci d'avance de toute l'aide que vous pourrez m'apporter.
-
Hace dos días instale la nueva versión prestashop 1.7.3 sin ningún problema, y hoy lo he intentado en varios servidores tanto en mi alojamiento de 1&1, como en un servidor local con el mismo error. Parece que sea un error en el paquete de idiomas, pero no se a que se debe. No se si es que se conecta a algún servidor de prestashop.com para obtener algún paquete y no encuentra dicho archivo. ¿Le ha pasado a alguien mas?
-
Ho appena installato Prestashop in locale utilizzando xampp, È andato tutto a buon fine seguendo questa guida insieme a quella ufficiale https://www.geekslab.it/installare-prestashop-in-locale-con-xampp/ alla fine riesco ad entrare nel sito tramite localhost/nomesito ma se provo ad entrare in localhost/nomesito/admin non appare nulla in firefox mentre con explorer da un errore del server http 500 Come posso risolvere?? la cartella install è stata rinominata e quella admin è rimasta invariata
- 8 replies
-
- xamp
- installazione locale
-
(and 3 more)
Tagged with:
-
An error occurred during installation... You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here. 1: HTTP 500 - error - /var/log/httpd AH01276 Cannnot serve directory /var/www/html: No matching DirectoryIndex (index.html, index.php) found, and server-generated directory index forbidden by Option directive How to fix it ? Help me please. (Its practice machine on: centos 7.2, ispconfig 3.1)
-
Bonjour a tous j'ai un problème avec le bouton ajouter au panier. Dernièrement j'ai installer deux module layerslider et advenced marketplace, tous été normal après j'ai testé l'achat de quelque produit mais ajouter au panier ne marche pas je click elle affiche une HTTP ERROR 500 . j'ai désinstallé les deux module mais pas de changement alors j'ai essayer MODE DEBUG quand j'ai désactiver tous les surcharge et j'ai tester ajouter au panier ça marche très bien. Maintenant je ne sais pas comment trouver le module qui block mon ajout au panier si vous avez une solution merci
- 1 reply
-
- Ajouter au panier ne fonction
- Ajouter au panier
- (and 3 more)
-
Bonjour a tous j'ai un problème avec le bouton ajouter au panier. Dernièrement j'ai installer deux module layerslider et advenced marketplace, tous été normal après j'ai testé l'achat de quelque produit mais ajouter au panier ne marche pas je click elle affiche une HTTP ERROR 500 . j'ai désinstallé les deux module mais pas de changement alors j'ai essayer MODE DEBUG quand j'ai désactiver tous les surcharge et j'ai tester ajouter au panier ça marche très bien. Maintenant je ne sais pas comment trouver le module qui block mon ajout au panier si vous avez une solution merci
- 1 reply
-
- HTTP ERROR 500
- HTTP ERROR
- (and 4 more)
-
Buenos dias. Abro este hilo porque en la tienda que gestiono, a la hora de clickar en el botón para crear una categoría nueva o modificar una existente me aparece el error HTTP 500, imposibilitando gestionar la tienda. He activado el modo depuración pero no me arroja ningun error. He intentado varias soluciones que he visto por diferentes foros, entre ellas comprobar que no hubiera imágenes pesadas en /img/c, deshabilitar los últimos módulos instalados etc... Agradeceria toda la ayuda posible que me podais dar si habeis tenido algún problema similar. Muchas gracias de antemano.
-
- crear categoria
- error 500
- (and 3 more)
-
Daca poate sa am ajute cineva care stie sau a intampinat aceasta problema, in folderul pdf am modificat fisierele .tpl decat traducere din engleza in romana manual si dupa ce am terminat de tradus am avut eroare http 500 cand doream sa vad de exemplu o factura si am descarcat prestashop in calculator am extras decat fisierlele .tpl din pdf si le-am ridicat pe server si le-am inlocuit pe cele care le-am tradus eu si pot sa vad facturile dar tot mi-a ramas eroare la Informatii configuratie (mentionez ca aceasta eroare am avuto si cand am modificat fisierele tpl dar a ramas si dupa ce am inlocuit fisierele dar macar si-a revenit cat de cat site-ul la normal sa pot vedea facturile) aceasta este eroarea: pdf/delivery-slip.addresses-tab.tpl pdf/delivery-slip.payment-tab.tpl pdf/delivery-slip.product-tab.tpl pdf/delivery-slip.style-tab.tpl pdf/delivery-slip.summary-tab.tpl pdf/delivery-slip.tpl pdf/footer.tpl pdf/header.tpl pdf/index.php pdf/invoice-b2b.tpl pdf/invoice.addresses-tab.tpl pdf/invoice.note-tab.tpl pdf/invoice.payment-tab.tpl pdf/invoice.product-tab.tpl pdf/invoice.shipping-tab.tpl pdf/invoice.style-tab.tpl pdf/invoice.summary-tab.tpl pdf/invoice.tax-tab.tpl pdf/invoice.total-tab.tpl pdf/invoice.tpl pdf/order-return.addresses-tab.tpl pdf/order-return.conditions-tab.tpl pdf/order-return.product-tab.tpl pdf/order-return.summary-tab.tpl pdf/order-return.tpl pdf/order-slip.payment-tab.tpl pdf/order-slip.product-tab.tpl pdf/order-slip.summary-tab.tpl pdf/order-slip.total-tab.tpl pdf/order-slip.tpl pdf/supply-order-footer.tpl pdf/supply-order-header.tpl pdf/supply-order.addresses-tab.tpl pdf/supply-order.product-tab.tpl pdf/supply-order.tax-tab.tpl pdf/supply-order.total-tab.tpl pdf/supply-order.tpl
-
- http 500
- informatii configuratie
-
(and 3 more)
Tagged with:
-
Bonjour, depuis ce matin mon site www.turbines-rc.com n'est plus accessible en front office et affiche une erreur HTTP 500. Cela se produit sur Chrome, sur IE mais pas sur Firefox. Par ailleur le Back Office fonctionne sur tous les navigateur. Pouvez vous m'aider car c'est un site marchand et il n'est plus fonctionnel. 1000 mercis d'avance
- 6 replies
-
- error HTTP500
- erreur HTTP 500
-
(and 5 more)
Tagged with:
-
Bonjour à tous, Je fais appel à la communauté de ce forum pour tenter de régler un problème qui m'arrive sur ma boutique. Je sais que de nombreux topics parlent de mon problème mais je n'en ai trouvé aucun qui ma permis de trouver une solution. Avant toute chose, je suis sous PrestaShop 1.5.4, je viens tout juste de mettre ma boutique en ligne (j'étais en local avant) et je suis un novice sous prestashop et dans l'art du codage. Je vous explique mon problème : En naviguant sur mon site, je me suis aperçu qu'une page d'erreur apparaissait de manière très (trop) régulière. J'ai donc effectué de nombreuses recherches pour voir d'où venait le problème. Je suis alors tombé sur un tutoriel qui expliquait comment en savoir plus sur cette erreur en changeant une ligne de code dans le fichier defines.inc.php, ce que je me suis empressé de faire. Maintenant je tombe sur une page d'erreur m'indiquant ce message : "Fatal error: Function name must be a string in /home/bouti***/public_html/prestashop/tools/smarty/sysplugins/smarty_internal_templatebase.php on line 281" Je suis donc allé voir à la ligne indiquée dans le fichier indiqué et je trouve cette ligne : $_template->properties['unifunc']($_template); Comme je vous l'ai dis plus haut, je suis débutant dans l'art du codage et de prestashop et je n'ai donc absolument aucune idée de l'interprétation à avoir de ce message.. Pouvez vous m'aider et m'expliquer quoi faire pour régler ce problème ? Je vous remercie tous d'avance !
- 11 replies
-
- fatal error
- serveur
-
(and 3 more)
Tagged with:
-
Hi there, I'm experiencing Slow Load Time & HTTP 500 Internal Server Error issue on my website. This is experienced from the front end with most webpages. I'm not trying to do anything exhaustive, just browse the site's pages. I've followed this advice http://www.prestashop.com/blog/en/the-500-internal-server-error-explained-solved/: - turned on Error Reporting in PrestaShop: with no improvement - adjusted Permissions: with no improvement - regenerate .htaccess file: with no improvement I have cPanel error logs if you would like to view them? Thank you
- 9 replies
-
- PS1.6
- InternalServerError
-
(and 1 more)
Tagged with:
-
HI I have installed prestashop without any problem. but when i try to see the front page i got the HTTP 500 error. I have managed to get detail error on that page Fatal error: Uncaught exception 'SmartyException' with message 'Unable to load template file '\\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop/themes/default-bootstrap/modules/homeslider/header.tpl'' in \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\tools\smarty\sysplugins\smarty_internal_templatebase.php:127 Stack trace: #0 \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\classes\module\Module.php(1860): Smarty_Internal_TemplateBase->fetch() #1 \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\modules\homeslider\homeslider.php(477): ModuleCore->display('\\NAWINFS03\hom...', 'header.tpl') #2 \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\classes\Hook.php(507): HomeSlider->hookdisplayHeader(Array) #3 \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\classes\controller\FrontController.php(443): HookCore::exec('displayHeader') #4 \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\controllers\front\IndexController.php(37): FrontControllerCore->initContent() #5 \\NAWINFS03\home\users\web\b1856\rh.pedram200 in \\NAWINFS03\home\users\web\b1856\rh.pedram2003\Shop\tools\smarty\sysplugins\smarty_internal_templatebase.php on line 127 which i can notfigure out. i will appreciate any help
-
Hola tengo un problema con el modulo de mercadopago, al dar clic en comprar me aparece el siguiente error. Internal server errorHTTP 500Web server cannot perform this request. Please try again later. es algo muy extraño, por que es un error que vengo arrastrando desde la versión 1.5, hice una instalación de prueba con la ultima versión y funciona bien, alguna idea de que puede estar interfiriendo con el modulo.(ya intente descargar y reinstalar el modulo) saludos actualmente tengo PrestaShop™ 1.6.0.5
-
Hallo, meine Shops (Perstashop 1.5.4.0) haben Monatelang ohne Probleme funktioniert. Jetzt erhält der Kunde nach der Bestätigung seiner Bestellung eine Fehlermeldung im Browser HTTP 500: Interner Serverfehler (Seite kann nicht angezeigt werden) /module/bankwire/validation Die Bestellung wird korrekt angelegt und mir eine Email geschickt. Der Kunde erhält allerdings keine Email und denkt die Bestellung hat nicht funktioniert. Da ich nichts geändert habe, vermute ich dass das Problem durch die Umstellung von PhP4 auf PHP5 entstanden ist. Ich habe 2 Shops einen bei Strato und einen bei 1und1. Bei beiden Shops ist dieses Problem jetzt aufgetreten. ---- Jetzt habe ich den Fehler gefunden. Es liegt an einem Modul zur Anpassung der Bestellnummer das ich bei beiden Shops installiert hatte. Dieses Modul muss deaktiviert UND deinstalliert werden. Dann Funktioniert wieder alles! Modul von: PrestadevNL Version 1.2 Modulname: Module Bestell-Nr. ändern
-
Hola tengo un problema tremendo! Le daria lo que sea a quien logre ayudarme. La historia en breves lineas es: tuve errores http 500 en toda la web y luego se cayo. pedí al hosting que me hiciera una restauración desde el día que no pasaba nada raro, luego volvi a agregar los productos y actualizar el stock de todo lo que perdí, pero al rato nuevamente error http 500 en los productos cuando los abres desde el front office. ES DEMASIADO FRUSTRANTE! Me metí al error_log del admin y del public_html pero no me marca errores recientes, solo los que tenía antes de la restauración. Mi página es pokedeckshop.com y para ir más directo al error pueden ver un producto: http://pokedeckshop....es-crossed.html No se si estaré correcto, pero estuve tratando de colocar que se activara el caché en el panel de admin, pero me pedia que instale el memcache. Trate varias veces de que se cargue y claro, no tenia el memcache. Puse la carpeta del memcache por FTP pero no paso nada, asi que luego la borre (solo la carpeta de memcaché fue borrada) Tiene algo que ver? no lo creo en verdad. He visto varios temas de este foro respecto al error http 500, pero no encuentro solución a mi problema. Tengo retraso de ventas, clientes molestos y de verdad es urgente su ayuda! *Había creado antes otro tema previo a la restauración y ninguno respondió esta vez por favor ayuden, en serio. Hasta les pagaría si queda todo bien permanentemente. ___________ Encontré el error: [[email protected] /home/pokedeck/public_html]# tail -f error_log [02-Mar-2013 19:07:13] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 92 bytes) in /home/pokedeck/public_html/classes/SpecificPrice.php on line 367 Aguien sabe algo?
-
Every time i'm gonna open the URLs to optimize them a Http 500- problem occurs. I followed the instructions how to troubleshoot the problem and this is the answer i got: Fatal error: Uncaught exception 'ReflectionException' with message 'Class GetFileController does not exist' in /customers/9/5/7/luffarjenny.se/httpd.www/classes/Meta.php:71 Stack trace: #0 /customers/9/5/7/luffarjenny.se/httpd.www/classes/Meta.php(71): ReflectionClass->__construct('GetFileControll...') #1 /customers/9/5/7/luffarjenny.se/httpd.www/controllers/admin/AdminMetaController.php(229): MetaCore::getPages(true, '404') #2 /customers/9/5/7/luffarjenny.se/httpd.www/classes/controller/AdminController.php(1428): AdminMetaControllerCore->renderForm() #3 /customers/9/5/7/luffarjenny.se/httpd.www/classes/controller/Controller.php(167): AdminControllerCore->initContent() #4 /customers/9/5/7/luffarjenny.se/httpd.www/classes/Dispatcher.php(349): ControllerCore->run() #5 /customers/9/5/7/luffarjenny.se/httpd.www/luffarjenny/index.php(50): DispatcherCore->dispatch() #6 {main} thrown in /customers/9/5/7/luffarjenny.se/httpd.www/classes/Meta.php on line 71 Anyone who knows where the problem might be? Thanks JanAdam