On Feb 12, 11:01 am, gui_tar_gz <[email protected]> wrote: > When you set up Session.save=cake in core.php file all the sessions > are stored in /app/tmp/sessions. Are those files somehow cleaned up > automatically by CakePHP or I should schedule a cron job at my web > server?
The "cake" option is pretty much the same as the "php" option except that it tells PHP to store the session files in /app/tmp/sessions instead of PHP's default location. The "cake" option also sets a couple other PHP session options, but it's basically the same. So the session handling is still handled by PHP and PHP will delete the session files when they are set to expire. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
