I’m using elements for different menus in my site using CakePHP to create the links, eg:
echo $this->Html->link(
'Home',
array(
'controller'=>'users',
'action'=>'home'
)
);
My links all break when using the full_calender plugin 2.0 branch from Github when I click the link to the full calender page located at
http://localhost/mysite/full_calendar
All the links in my element are broken and become:
instead of
I’ve installed the plugin in app/plugin.
I’m using the controller name and view in my links in the element so whats going wrong?
I solved it by adding plugin link to the links not using the plugin;