Yii not detecting camel case actions
问题 Yii is giving me 404 Error if I declare an action like this: SiteController.php public function actionRegisterUser() This is how I call it in the main.php ['label' => 'Register User', 'url' => ['/site/RegisterUser']], I tried several different combinations. The only combination that will work is this naming convention in both places: public function actionRegisteruser 'url' => ['/site/registeruser'] I used to work on another Yii project (Yii 1.0) and I could name my actions in camel case and