CException

Контроллер CartController не может найти представление "index".

/var/www/html/vendor/yiisoft/yii/framework/web/CController.php(878)

866     {
867         if(($viewFile=$this->getViewFile($view))!==false)
868         {
869             $output=$this->renderFile($viewFile,$data,true);
870             if($processOutput)
871                 $output=$this->processOutput($output);
872             if($return)
873                 return $output;
874             else
875                 echo $output;
876         }
877         else
878             throw new CException(Yii::t('yii','{controller} cannot find the requested view "{view}".',
879                 array('{controller}'=>get_class($this), '{view}'=>$view)));
880     }
881 
882     /**
883      * Renders a named clip with the supplied parameters.
884      * This is similar to directly accessing the {@link clips} property.
885      * The main difference is that it can take an array of named parameters
886      * which will replace the corresponding placeholders in the clip.
887      * @param string $name the name of the clip
888      * @param array $params an array of named parameters (name=>value) that should replace
889      * their corresponding placeholders in the clip
890      * @param boolean $return whether to return the clip content or echo it.

Stack Trace

#1
+
 /var/www/html/protected/modules/cart/controllers/CartController.php(29): CController->render("index", array("positions" => array(), "order" => Order, "coupons" => array(), "deliveryTypes" => array(Delivery)))
24             }
25         }
26 
27         $deliveryTypes = Delivery::model()->published()->findAll();
28 
29         $this->render('index', ['positions' => $positions, 'order' => $order, 'coupons' => $coupons, 'deliveryTypes' => $deliveryTypes ]);
30     }
31 
32     public function actionAdd()
33     {
34         if (!Yii::app()->getRequest()->getIsPostRequest()) {
#9
+
 /var/www/html/public/index.php(35): CApplication->run()
30 $confManager = new yupe\components\ConfigManager();
31 $confManager->sentEnv(\yupe\components\ConfigManager::ENV_WEB);
32 
33 require dirname(__FILE__) . '/../vendor/autoload.php';
34 
35 Yii::createWebApplication($confManager->merge($base))->run();
2024-03-29 05:04:10 nginx/1.15.5 Yii Framework/1.1.16