Re: Wrestling with *very* basic Auth

2011-08-19 Thread LCR
Thank you Andrew, With your replies, and through watching your tutorials, and with some further brain power, I managed to get it set up as I need it to be! Kind regards. On Aug 17, 5:29 am, andrewperk wrote: > I said that wrong, it doesn't need to be configured in the > UsersController, rather

Re: Wrestling with *very* basic Auth

2011-08-16 Thread andrewperk
I said that wrong, it doesn't need to be configured in the UsersController, rather the login and logout methods should be defined in the UsersController. You could and probably should configure the properties of the Auth component in your AppController. Then you can change whatever is specific abou

Re: Wrestling with *very* basic Auth

2011-08-16 Thread andrewperk
Hi, by default the Auth component needs to be configured in your UsersController. Your users controller only needs to have 2 actions. function login() { } You can leave the login action blank as the Auth component handles the rest. You just need a view for the login action. function logout() {

Wrestling with *very* basic Auth

2011-08-15 Thread LCR
Hi there, Hoping someone can help me keep the rest of my hair... I've spent the last day looking over so many Auth tutorials and haven't got anywhere. For some reason I haven't been able to get my head around it so far, so I've come on here in the hope of getting a specific example that helps me w