diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-25 10:12:47 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-25 10:12:47 +0100 |
commit | ebcb778a99e11c4c0f13ccd6bcdf11c2a0c21bc8 (patch) | |
tree | 60d4fc7332db4524e806f05a277362579ddcae56 /lib/util.php | |
parent | 8f659169047f2dcdd6f7a15b2b31b537fe858953 (diff) | |
download | nextcloud-server-ebcb778a99e11c4c0f13ccd6bcdf11c2a0c21bc8.tar.gz nextcloud-server-ebcb778a99e11c4c0f13ccd6bcdf11c2a0c21bc8.zip |
remove the check for session data folder - causes trouble on some environments
let's try to find another solution for =C6
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/util.php b/lib/util.php index 87facda1804..dd56e0308a2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -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.'); |