Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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. So I built my link as follows:

echo $this->Html->link(
    __('List Users', true), 
    array(
        'plugin' => 'users', 
        'controller' => 'users', 
        'action' => 'index'
    )
);

But the link keep pointing to app/blog/users/index instead of app/users/users/index. Why is that?

PS: users is also a plugin (from CakeDC).

share|improve this question
Did you ever find the answer to this? – Kelvin Apr 4 '12 at 19:50

1 Answer

you can set routes like this:

   Router::connect('/users', array('admin' => false, 'plugin' => false, 'controller' => 'tests', 'action' => 'test') );

'admin' is for admin routing and 'plugin' for plugin url.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.