when I update data in the User model, the Auth data is not updated.
How can I "refresh" the data which is returned by $this->Auth->user() when I am updating user model ?
and I don't want to use
$this->Auth->login($data);
after updating my user table
|
when I update data in the User model, the Auth data is not updated. How can I "refresh" the data which is returned by $this->Auth->user() when I am updating user model ? and I don't want to use
after updating my user table |
|||
|
|
|
I tried the following line. Its works well form me After modify the user data i written the following line
|
|||
|
|
|
evert0ns answer is right. But you should use AuthComponent::login(), because the data are saved within the AuthComponent as well and are not fetched from the session every time. I had the problem just a couple of days ago. Look at here: http://pastebin.com/XmEdp6Z3 Put this in your AppController. The method is specialized to merge the current and the new user data to keep existing custom indexes that you may have provided. I needed this, but you can leave it out though. Give the updated user data as a parameter to the method. Not in model find form. E.g.:
Greetings func0der |
|||
|
|
|
Write the updated data to the Session eg:
Before CakePHP 2.x you can't do this in the model without break the framework design. With CakePHP 2.x you can load the Session Component from models and update it. |
|||||
|