CException

nordsoftware\yii_account\controllers\SignupController cannot find the requested view "index".

/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/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
+
 /Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/src/controllers/SignupController.php(86): CController->render("index", array("model" => nordsoftware\yii_account\models\form\SignupForm))
81                 $this->sendActivationMail($account);
82                 $this->redirect('done');
83             }
84         }
85 
86         $this->render('index', array('model' => $model));
87     }
88 
89     /**
90      * Sends the activation email to the given account.
91      *
#5
+
 /Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/src/controllers/Controller.php(34): CFilterChain->run()
29     {
30         if (!\Yii::app()->user->isGuest) {
31             $this->redirect(\Yii::app()->homeUrl);
32         }
33 
34         $filterChain->run();
35     }
36 
37     /**
38      * @param \CFilterChain $filterChain
39      */
#13
+
 /Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/tests/app/www/index.php(16): CApplication->run()
11 require("$vendor/autoload.php");
12 require("$vendor/yiisoft/yii/framework/yii.php");
13 
14 $config = require("$tests/app/config/web.php");
15 
16 Yii::createWebApplication($config)->run();
2014-06-05 11:08:00 Apache/2.2.26 (Unix) mod_fastcgi/2.4.6 mod_wsgi/3.4 Python/2.7.6 PHP/5.5.10 mod_ssl/2.2.26 OpenSSL/0.9.8y DAV/2 mod_perl/2.0.8 Perl/v5.18.2 Yii Framework/1.1.15-dev