CException

EventsController cannot find the requested view "view".

/var/www/html/live/yii/framework/web/CController.php(881)

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

Stack Trace

#1
+
 /var/www/html/live/balimibarui.co.za/frontend/controllers/EventsController.php(63): CController->render("view", array("gallery" => Galleries, "galleryImages" => array(GalleryImage, GalleryImage, GalleryImage, GalleryImage, ...), "item_count" => "23", "page_size" => 8, ...))
58                 'gallery' => $gallery,
59                 'galleryImages' => GalleryImage::model()->findAll($galleriesCriteria),
60                 'item_count' => $item_count,
61                 'page_size' => Yii::app()->params['listPerPage'],
62                 'items_count' => $item_count,
63                 'pages' => $pages,
64             ));
65     }
66 
67 }
#9
+
 /var/www/html/live/balimibarui.co.za/common/components/WebApplication.php(33): CWebApplication->runController("events/view")
28      * that Apache polls its processes to see if they're alive. This function causes
29      * Yii to respond without logging errors.
30      */
31     public function runController($route) {
32         try {
33             parent::runController($route);
34         } catch (CHttpException $e) {
35             if (@$_SERVER['REQUEST_METHOD'] == 'OPTIONS' && @$_SERVER['REQUEST_URI'] == '*') {
36                 Yii::app()->end('Hello, friend!');
37             } else
38                 throw $e;
#12
+
 /var/www/html/live/balimibarui.co.za/frontend/www/index.php(34): CApplication->run()
29   EZendAutoloader::$basePath = Yii::getPathOfAlias('common.lib') . DIRECTORY_SEPARATOR;
30 
31   Yii::registerAutoloader(array("EZendAutoloader", "loadClass"), true);
32  */
33 
34 $app->run();
35 /* uncomment if you wish to debug your resulting config */
36 /* echo '<pre>' . dump($config) . '</pre>'; */
2024-03-28 20:28:59 Apache/2.2.15 (CentOS) DAV/2 PHP/7.0.23 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips Yii Framework/1.1.19