vote up 2 vote down star

Hello, I'm using centos 5 with php 5.3.0.

I have php installed and set up, in my php.ini I have session.save_path set to "/tmp", I have "/tmp" set to 7777, it's fully writeable. I have a script that uses sessions (in fact, all do) and it doesn't work. A session ID is generated fine but that isn't stored on the server, checking error_log I see the following:

[Sun Nov 01 15:28:55 2009] [error] [client 8x.xx.xx.xx4] PHP Warning: Unknown: Failed to write session data (memcache). Please verify that the current setting of session.save_path is correct (tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15) in Unknown on line 0

What could possibly be causing this? How can I verify that /tmp is in fact writeable by php? It seems that could be the problem but I dunno how to check it...

flag
3  
so you have confirmed that phpinfo() shows session.save_path set like your php.ini setting to /tmp ? – Scott Evernden Nov 1 at 15:43
I didn't think of that, stupid me. I just checked and it returns: session.save_handler => memcache => memcache session.save_path => tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15 => tcp://localhost:11211?persistent=1&weight=1&timeout=1&$ I assume this is memcache messing with it, I'll have to find how to disable that then. Thanks, no idea how I missed that :| – citricsquid Nov 1 at 15:47

2 Answers

vote up 0 vote down

Your error message reads that your session handler is set to memcache. I'm guessing that isn't what you were intending.

check if your setting

session.save_handler in php.ini is set to 'file' and not 'memcache'

link|flag
vote up 1 vote down

In my opinion, the best practice is to always explicitly define your session settings in your application. Using the default session_save_path can create major headaches if there is more than one application running on the server. These headaches are due to session garbage collection stuff -- let's say you want a 2-hour timeout. If some other appication shares the same storage, and has a 1-hour timeout, you'll be banging your head against the wall trying to figure out why your sessions are disappearing.

Generally, I'll do something like this in a config.php-type file:

<?PHP
$session_storage = '/path/to/app-specific/session/storage/dir');
if (! is_writable($session_storage)){
    trigger_error('Session storage is not writable.',E_USER_WARNING);
}else{
    ini_set('session_save_path',$session_storage);
    //set any other session-related things (gc_maxlifetime, etc, here)
}
session_start();

You might want to make it a fatal error instead of just a warning ... up to you.

But this way, your app gets its own session-storage, and no other applications will ever "accidentally" nuke your data.

NOTE: Make sure your session storage directory is NOT under your web root. That would be very bad!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.