CHttpException

Konnte den Request "de/beitrag-1" nicht auflösen.

/mnt/web013/b3/23/57281823/htdocs/yii/yiilite.php(1779)

1767     public function runController($route)
1768     {
1769         if(($ca=$this->createController($route))!==null)
1770         {
1771             list($controller,$actionID)=$ca;
1772             $oldController=$this->_controller;
1773             $this->_controller=$controller;
1774             $controller->init();
1775             $controller->run($actionID);
1776             $this->_controller=$oldController;
1777         }
1778         else
1779             throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
1780                 array('{route}'=>$route===''?$this->defaultController:$route)));
1781     }
1782     public function createController($route,$owner=null)
1783     {
1784         if($owner===null)
1785             $owner=$this;
1786         if((array)$route===$route || ($route=trim($route,'/'))==='')
1787             $route=$owner->defaultController;
1788         $caseSensitive=$this->getUrlManager()->caseSensitive;
1789         $route.='/';
1790         while(($pos=strpos($route,'/'))!==false)
1791         {

Stack Trace

#2
+
 /mnt/web013/b3/23/57281823/htdocs/index.php(62): CApplication->run()
57 
58 $config = dirname(__FILE__).'/protected/config/main.php';
59 
60 require_once($yii);
61 
62 Yii::createWebApplication($config)->run();
63 
64 ob_end_flush();
2024-03-28 22:08:52 Apache/2.4.58 (Unix) Yii Framework/1.1.18