why i see this session errors with cakephp

cakephp, cakephp-1.3

Solution

You have to do following steps

- Set permissions of write to /tmp folder that is default

- Change php.ini to point to dir you have access instead of /tmp

- Set Configure::write('Session.save', 'cake') and have them in cake app/tmp where you can manage permissions definitely.

For that you have to changed the Session settings in the config/core.php file. There are several options. The default is to use php.ini settings for to save sessions. For more details CakePHP Core Configuration Variables

Problem

i was installed cakephp application on godaddy but something wrong i see this errors please anyone help my..the script work correctly but i cant login with users controller ``` Warning (2): session_start() [function.session-start]: open(/var/chroot/home/content/37/7269737/tmp/sess_5fngsu7g8llj60a9075mkkgh07, O_RDWR) failed: No such file or directory (2) [ROOT/7269737/html/cake/libs/cake_session.php, line 587] Warning (2): session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/content/37/7269737/html/cake/libs/debugger.php:683) [ROOT/7269737/html/cake/libs/cake_session.php, line 587] Warning (2): session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/content/37/7269737/html/cake/libs/debugger.php:683) [ROOT/7269737/html/cake/libs/cake_session.php, line 587] Warning (2): Cannot modify header information - headers already sent by (output started at /home/content/37/7269737/html/cake/libs/debugger.php:683) [ROOT/7269737/html/cake/libs/cake_session.php, line 588] Warning (2): Unknown: open(/var/chroot/home/content/37/7269737/tmp/sess_5fngsu7g8llj60a9075mkkgh07, O_RDWR) failed: No such file or directory (2) [Unknown, line ??] Warning (2): Unknown: Failed to write session data (files). Please verify that the current setting of session. ```

Original source