no, i use the authsome component from debuggable...
On 28 Mai, 10:18, Bogdan Bursuc wrote:
> Do you use the Auth component ?
>
>
>
> On Fri, May 28, 2010 at 9:07 AM, cronet wrote:
> > hm...
>
> > i solved my problem with the following route configuration:
>
> > Router::connect('/aktivieren/*',
Do you use the Auth component ?
On Fri, May 28, 2010 at 9:07 AM, cronet wrote:
> hm...
>
> i solved my problem with the following route configuration:
>
> Router::connect('/aktivieren/*', array('controller' => 'users',
> 'action' => 'activate', 'admin'=>null));
>
>
>
> I don't know why cake beh
hm...
i solved my problem with the following route configuration:
Router::connect('/aktivieren/*', array('controller' => 'users',
'action' => 'activate', 'admin'=>null));
I don't know why cake behave this way, because in the manual there's a
note to user admin=>false, not admin=>null in the h
that does not solve the problem...
Router::connect('/aktivieren', array('controller' => 'users', 'action'
=> 'activate', 'admin'=>false, 'prefix'=>false ));
Router::connect('/aktivieren/', array('controller' => 'users',
'action' => 'activate', 'admin'=>false, 'prefix'=>false ));
Router::connect('/
You need to define the master route, also:
Router::connect('/aktivieren/', ...); That's the router you access when you
enter /aktivieren.
On Fri, May 28, 2010 at 2:05 AM, cronet wrote:
> Hey,
>
> i defined the following route:
>
>Router::connect('/aktivieren/*', array('controller' => 'u
Hey,
i defined the following route:
Router::connect('/aktivieren/*', array('controller' => 'users',
'action' => 'activate', 'admin'=>false));
But everytime when I try to access /aktivieren cake routes me to
admin_activatie...
Here ar some vars from pr($this)
[action] => admin_activ