CHttpException

La pagina richiesta non esiste.

/home/giordanojolly/public_html/protected/controllers/SiteController.php(793)

781                 }
782             }
783 
784             // old brand url
785             if (preg_match("/-mar-([0-9]+)$/", $slug, $output)) {
786                 $idmarchio = $output[1];
787                 $brand = Marca::model()->findByPk($idmarchio);
788                 if ($brand) {
789                     $this->redirect(array('site/brand', 'slug' => $brand->slug), true, 301);
790                 }
791             }
792 
793             throw new CHttpException(404, 'La pagina richiesta non esiste.');
794             die;
795         }
796     }
797 
798     public function actionSearch()
799     {
800 
801         $q = trim($_GET['q']);
802 
803         $pageSize =  (Yii::app()->request->getQuery('pageSize')) ?  (int) Yii::app()->request->getQuery('pageSize') : LISTVIEW_PAGESIZE;
804         $sortField =  (Yii::app()->request->getQuery('sortField')) ?  Yii::app()->request->getQuery('sortField') : LISTVIEW_SORTFIELD;
805         $sortDirection =  (Yii::app()->request->getQuery('sortDirection')) ?  Yii::app()->request->getQuery('sortDirection') : LISTVIEW_SORTDIRECTION;

Stack Trace

#9
+
 /home/giordanojolly/public_html/index.php(36): CApplication->run()
31 // defined('YII_DEBUG') or define('YII_DEBUG', true);
32 // specify how many levels of call stack should be shown in each log message
33 // defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3);
34 
35 require_once($yii);
36 Yii::createWebApplication($config)->run();
2024-03-19 09:04:38 Apache Yii Framework/1.1.27