CHttpException

Konnte den Request "checkout" nicht auflösen.

/var/www/vhosts/tonys.de/httpdocs/framework/yiilite.php(1801)

1789     public function runController($route)
1790     {
1791         if(($ca=$this->createController($route))!==null)
1792         {
1793             list($controller,$actionID)=$ca;
1794             $oldController=$this->_controller;
1795             $this->_controller=$controller;
1796             $controller->init();
1797             $controller->run($actionID);
1798             $this->_controller=$oldController;
1799         }
1800         else
1801             throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
1802                 array('{route}'=>$route===''?$this->defaultController:$route)));
1803     }
1804     public function createController($route,$owner=null)
1805     {
1806         if($owner===null)
1807             $owner=$this;
1808         if((array)$route===$route || ($route=trim($route,'/'))==='')
1809             $route=$owner->defaultController;
1810         $caseSensitive=$this->getUrlManager()->caseSensitive;
1811         $route.='/';
1812         while(($pos=strpos($route,'/'))!==false)
1813         {

Stack Trace

#2
+
 /var/www/vhosts/tonys.de/httpdocs/index.php(17): CApplication->run()
12 
13 // remove the following line when in production mode
14 defined('YII_DEBUG') or define('YII_DEBUG',true);
15 
16 require_once($yii);
17 Yii::createWebApplication($config)->run();
2024-03-19 18:24:49 Apache Yii Framework/1.1.24