Re: plugin routing problem

2011-08-02 Thread Ceeram
Your Html->link() is correct and should point to /users/users/index . Check your routes.php, perhaps you are routing this to blog plugin. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help

Re: plugin routing problem

2011-08-02 Thread Johan
I have not found myself on that situation, but my guess is that by default the controller name takes preference over the plugin name when the router is parsing the URL (in other words: you cannot have a plugin with the same name as a controller). I'm not sure if you could fix that by defining a con

plugin routing problem

2011-08-02 Thread john lyles
I'm building a blog plugin for CakePHP. It is called 'blog'. I am following the manual on plugin routing but my links won't work. http://book.cakephp.org/view/951/Plugin-routing For example, when I am on this page: appname/blog/posts/index, I have a link to the index action of the users plugin. S