I'm facing an issue with Yii Framework routing.
I've created controller, let's call it TestController.php
Then, I need to put it into a subdirectory called Make, so my structure would look like:
controllers/TestController.php
controllers/Make/TestController.php
Of ocurse, if I change it's name, it works perfectly but is there any way to put a controller of the same name in controllers directory and a subdirectory?
Edit
My URLManager config looks like:
'urlManager'=>array(
'showScriptName' => false,
'urlFormat'=>'path',
'rules'=>array(
'gii' => 'gii',
'gii/<controller:\w+>' => 'gii/<controller>',
'gii/<controller:\w+>/<action:\w+>' => 'gii/<controller>/<action>',
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
I have a controller Bookmarks. As I have some other things related to the bookmarks, I needed to create a directory bookmarks and put some controllers there, for example Categories.
Can't force to make it work.
Edit 2
Just checked clean application. It seems to be a Yii bug (?).
Edit 3
I've changed import configuration, as suggested:
'import'=>array(
'application.models.*',
'application.components.*',
'application.controllers.bookmarks.*'
),
I have also created a correct route rule 'bookmarks/<controller:\w+>/<action:\w+>'=>'bookmarks/<controller>/<action>',.
My files structure is now as following:
BookmarksController.php
bookmarks/CategoriesController.php
Here's an exceptions that's being thrown:
exception 'CHttpException' with message 'The system is unable to find the requested action "categories".' in /home/root/www/yiitesting/framework/web/CController.php:477