Re: Routing doesn't work?

2008-05-02 Thread Sliv
Think about it: You're setting up a route for /tag but then sending /tag/php and wondering why it doesn't route. Try setting the route /tag/* --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To

Routing doesn't work?

2008-05-02 Thread Mech7
I am trying to send tag/ to tags controller but when i put this in my routes: Router::connect('/tag', array('controller' = 'tags', 'action' = 'find')); and i go to the url /tag/php i get this: Error: TagController could not be found. Does anybody know what could be the problem?

Re: Routing doesn't work?

2008-05-02 Thread Mech7
Ah hehe yes thx it works now :D On May 2, 7:19 pm, Sliv [EMAIL PROTECTED] wrote: Think about it: You're setting up a route for /tag but then sending /tag/php and wondering why it doesn't route. Try setting the route /tag/* --~--~-~--~~~---~--~~ You received