Skip reason is now printed if session.save_path is not writable.

This commit is contained in:
Shein Alexey 2011-06-09 08:18:49 +00:00
parent efb6757e16
commit 060ceea06e

View File

@ -18,7 +18,7 @@ if ($save_path) {
$save_path = substr($save_path, ++$p); $save_path = substr($save_path, ++$p);
} }
if (!@is_writable($save_path)) { if (!@is_writable($save_path)) {
die("skip\n"); die("skip session.save_path $save_path is not writable\n");
} }
} }
} }