Tagged Questions

2
votes
1answer
195 views

How do I secure all the admin actions in all controllers in cakePHP

I am developing an application using cakePHP v 1.3 on windows (XAMPP). Most of the controllers are baked with the admin routing enabled. I want to secure the admin actions of every controller with a ...
0
votes
1answer
348 views

CakePHP and admin routing with a 'catch all' action

I'm trying to build a mini cms, whereby all urls go to the index action of a 'products' controller. The products_controller checks the url and treats it as a parameter, so '/widgets' would hit the ...