Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Warning Permission denied (13) on session_start() [duplicate]

I'm getting the following error:

PHP Warning:  session_start() [<a href='function.session-start'>function.session-start</a>]: open(/tmp/sess_49a20cbe1ef09a2d0262b3f7eb842e7b, O_RDWR) failed: Permission denied (13) in /home/------/public_html/includes/libs/ss.inc.php on line 1

The problem doesn't happen all the time, but comes and goes.

This the code at line on 1 in ss.inc.php

<?php session_start(); ?>
like image 358
Basic Bridge Avatar asked Jul 25 '11 19:07

Basic Bridge


3 Answers

You don't appear to have write permission to the /tmp directory on your server. This is a bit weird, but you can work around it. Before the call to session_start() put in a call to session_save_path() and give it the name of a directory writable by the server. Details are here.

like image 173
Peter Rowell Avatar answered Oct 18 '22 21:10

Peter Rowell


Do a phpinfo(), and look for session.save_path. The directory there needs to have the correct permissions for the user and/or group that your webserver runs as.

like image 29
marcelog Avatar answered Oct 18 '22 21:10

marcelog


I have had this issue before, you need more than the standard 755 or 644 permission to store the $_SESSION information. You need to be able to write to that file as that is how it remembers.

like image 5
Phil Avatar answered Oct 18 '22 20:10

Phil