d22009 Posted September 2, 2013 Share Posted September 2, 2013 (edited) hi im getting 404 error after a customer logs off after upgrading to 1.5.5.0 any ideas any one Edited September 2, 2013 by d22009 (see edit history) Link to comment Share on other sites More sharing options...
d22009 Posted September 2, 2013 Author Share Posted September 2, 2013 i used this script by SIBLIBUSRO you should edit thepagenotfoundcontroller.phpin controller folderopen your controller folderand editpagenotfoundcontroller.phpjust copy and paste into pagenotfoundcontroller.phpand change the http://tegalgubug.net to your homepage<?php/** 2007-2013 PrestaShop** NOTICE OF LICENSE** This source file is subject to the Open Software License (OSL 3.0)* that is bundled with this package in the file LICENSE.txt.* It is also available through the world-wide-web at this URL:* http://opensource.or...ses/osl-3.0.php* If you did not receive a copy of the license and are unable to* obtain it through the world-wide-web, please send an email* to [email protected] so we can send you a copy immediately.** DISCLAIMER** Do not edit or add to this file if you wish to upgrade PrestaShop to newer* versions in the future. If you wish to customize PrestaShop for your* needs please refer to http://www.prestashop.com for more information.** @author PrestaShop SA <[email protected]>* @copyright 2007-2013 PrestaShop SA* @license http://opensource.or...ses/osl-3.0.php Open Software License (OSL 3.0)* International Registered Trademark & Property of PrestaShop SA*/class PageNotFoundControllerCore extends FrontController{ /*ini sudah diganti */public $php_self = '404';public $page_name = 'pagenotfound';/*** Assign template vars related to page content* @see FrontController::initContent()*/public function initContent(){/*here you should change your homepage */header("Location: http://tegalgubug.net/");if (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('png', 'jpg', 'gif'))){header('Content-Type: image/gif');readfile(_PS_IMG_DIR_.'404.gif');exit;}elseif (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('.js', 'css')))exit;parent::initContent();$this->setTemplate(_PS_THEME_DIR_.'404.tpl');}public function canonicalRedirection($canonical_url = ''){// 404 - no need to redirect to the canonical url}} Link to comment Share on other sites More sharing options...
jibonbokul Posted September 4, 2013 Share Posted September 4, 2013 Title is incorrect Comment is incorrect Product not found When i write review comment this time showing this problem on prestashop latest version of product comment module. Please any ones help me how can i slvoed this proboem. Thanks jibon Link to comment Share on other sites More sharing options...
Nerque Posted September 6, 2013 Share Posted September 6, 2013 A better solution (to only go home with the mylogout error, not with others that you must to take into account) is to override the PageNotFoundController (file /override/controllers/front/PageNotFoundController.php): class PageNotFoundController extends PageNotFoundControllerCore { public function initContent() { //$_SERVER['REQUEST_URI'] //$_SERVER['HTTPS'] //$_SERVER['SERVER_NAME']) $_mylogout = (strpos($_SERVER['REQUEST_URI'], 'index.php?controller=') !== false); if ($_mylogout) header("Location: http://" . $_SERVER['SERVER_NAME']); else { header('HTTP/1.1 404 Not Found'); header('Status: 404 Not Found'); if (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('png', 'jpg', 'gif'))) { header('Content-Type: image/gif'); readfile(_PS_IMG_DIR_.'404.gif'); exit; } elseif (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('.js', 'css'))) exit; parent::initContent(); $this->setTemplate(_PS_THEME_DIR_.'404.tpl'); } } } This is not a real solution. Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 18, 2013 Share Posted September 18, 2013 Hi, we are investigating this upgrade issue and I will update everyone once we have more information. Thank you for the reports and feel free to report this to our dev team directly via the forge.prestashop.com Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 19, 2013 Share Posted September 19, 2013 A better solution (to only go home with the mylogout error, not with others that you must to take into account) is to override the PageNotFoundController (file /override/controllers/front/PageNotFoundController.php): class PageNotFoundController extends PageNotFoundControllerCore { public function initContent() { //$_SERVER['REQUEST_URI'] //$_SERVER['HTTPS'] //$_SERVER['SERVER_NAME']) $_mylogout = (strpos($_SERVER['REQUEST_URI'], 'index.php?controller=') !== false); if ($_mylogout) header("Location: http://" . $_SERVER['SERVER_NAME']); else { header('HTTP/1.1 404 Not Found'); header('Status: 404 Not Found'); if (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('png', 'jpg', 'gif'))) { header('Content-Type: image/gif'); readfile(_PS_IMG_DIR_.'404.gif'); exit; } elseif (in_array(Tools::strtolower(substr($_SERVER['REQUEST_URI'], -3)), array('.js', 'css'))) exit; parent::initContent(); $this->setTemplate(_PS_THEME_DIR_.'404.tpl'); } } } This is not a real solution. Hello all, please use this Github solution and let me know if it works. -https://github.com/P...63b73c13eab5f2e Always remember to have a complete back up! 1 Link to comment Share on other sites More sharing options...
Nerque Posted September 27, 2013 Share Posted September 27, 2013 Thanks. It's perfect. Link to comment Share on other sites More sharing options...
Recommended Posts