Re: protecting methods in Othauth

2006-09-12 Thread mathaios
hi it's me again ... :-( no matter what I do, with "show/9" in the $othAuthRestrictions array makes all the action restricted, not only the one with param "9". Has someone else been successifully in restricting only some parameters in an action, leaving others unrestricted and available to all? A

Re: protecting methods in Othauth

2006-09-04 Thread mathaios
Thank you for your reply, I made a typing error in the post. In my files the line is written correctly. Even writing one restriction, es. $othAuthRestrictions = array("show/8"); makes all the "show" parameters protected, not only the "8", I do not understand what I'm missing here, sigh... --~--

Re: protecting methods in Othauth

2006-08-15 Thread CraZyLeGs
$othAuthRestrictions = array("show/8","show/9"); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send

protecting methods in Othauth

2006-08-14 Thread mathaios
Greetings all, I'm continuing the exploration of cakephp, this time I'm trying to implement an authentication system. I'm using OthAuth wich I find very good and configurable, it plugged into my existing db user tables nicely. I restricted access to the CAKE_ADMIN path and it works very well, but