remove the check for session data folder - causes trouble on some environments

let's try to find another solution for =C6
This commit is contained in:
Thomas Mueller 2013-02-25 10:12:47 +01:00
parent 8f65916904
commit ebcb778a99
1 changed files with 0 additions and 13 deletions

View File

@ -275,19 +275,6 @@ class OC_Util {
$web_server_restart= false;
}
$handler = ini_get("session.save_handler");
if($handler == "files") {
$tmpDir = session_save_path();
if($tmpDir != "") {
if(!@is_writable($tmpDir)) {
$errors[]=array('error' => 'The temporary folder used by PHP to save the session data'
.' is either incorrect or not writable! Please check : '.session_save_path().'<br/>',
'hint'=>'Please ask your server administrator to grant write access'
.' or define another temporary folder.');
}
}
}
if($web_server_restart) {
$errors[]=array('error'=>'PHP modules have been installed, but they are still listed as missing?<br/>',
'hint'=>'Please ask your server administrator to restart the web server.');