1 application. I am using ajax to log in and authenticate a user. The problem i am having is with cakephp 2.1 auth component. when I manually log in the user the component redirects which i dont want to happen but rather return a success code back to my ajax request. Is there a way to prevent this default behaviour?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
AuthComponent is calling Controller::redirect(null, 403). You can catch these by overriding redirect() in your AppController:
|
|||
|
|