perhaps I am to long infront of my computer. Cannot figure out what the problem is, seems that the routes does not run....
in my protected/main.php i activated the basic routes
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
When I open the url www.test.com/testdrive/testblob/1 I get the 404 Page. Normaly this should be the first route which should be run...
where is my error?
testdrive is the directory where my webapp is located.
testblob is my controller.
Database, model and controller is generated. Database table is populated. CRUD does not work anymore with the URL: www.test.com/testdrive/index.php?r=testblob. It works again if I remove the routes in the protected/main.php
Both .htaccess in my webapp contains: deny from all.
./themes/classic/views/.htaccess
./protected/.htaccess
cheers -- jerik

Help















