0
Error: PHP Notice: session_start(): ps_files_cleanup_dir: opendir(/var/lib/php/Session) failed: Permission denied (13)
https://stackoverflow.com/questions/2904862/issues-with-php-5-3-and-sessions-folder
Updating PHP would solve my problem?
0
Error: PHP Notice: session_start(): ps_files_cleanup_dir: opendir(/var/lib/php/Session) failed: Permission denied (13)
https://stackoverflow.com/questions/2904862/issues-with-php-5-3-and-sessions-folder
Updating PHP would solve my problem?
0
Yes, if you upgrade to PHP 5.3 it will solve your Collector Garbage problem, since it exists in this version of PHP.
http://php.net/manual/en/features.gc.php
Anyway, I always recommend to upgrade to the latest version of the series you are using, in your case to PHP 5.6.27
.
Browser other questions tagged php garbage-collector
You are not signed in. Login or sign up in order to post.
Good evening. I am currently using version 5.3. I wonder if the error would stop happening in other versions of PHP 5. My server is unavailable and the problem seems to occur because of Garbage Collector.
– Jonatan Haas
So your problem is not PHP version, but permission in this session folder. Try giving permission to it with this command:
– andrehigher
sudo chown www-data:www-data /var/lib/php/session
– andrehigher