Ever got this type of error in your CakePHP application?
[function.session-start]: open(/var/php_sessions/
sess_55725da39073051a9529a124c99b54df, O_RDWR) failed: No such file or
directory (2) [CORE/cake/libs/session.php, line 539]“
There is an easy fix. Open core.php inside your app/config folder. Look for
Configure::write(’Session.save’, ‘php’);
Then change this to
Configure::write(’Session.save’, ‘cake’);
Problem solved
If this post has helped you, please tweet us at @optimind with this link or link this solution to your blog. Good luck on your project!
No related posts.
