]> git.sur5r.net Git - bacula/bacula/commitdiff
baculum: Fix setting invalid timezone value for PHP
authorMarcin Haba <marcin.haba@bacula.pl>
Sun, 24 Apr 2016 17:46:09 +0000 (19:46 +0200)
committerKern Sibbald <kern@sibbald.com>
Tue, 31 May 2016 06:24:31 +0000 (08:24 +0200)
gui/baculum/README
gui/baculum/protected/Init.php

index f069c575d86aa37ed38fe76cebafb04ca23f33f4..823f5958294753e647880093860f2d4749181975 100644 (file)
@@ -192,3 +192,10 @@ alghoritm used by "htpasswd" program. Plain text passwords for HTTP Basic auth
 are not longer supported by Baculum.
    From this reason good to check if used web server for Baculum is set to using
 MD5 type passwords in HTTP Basic authentication.
+
+c) Why time fields values contain invalid date/time values?
+  This case can mean that timezone is not set for PHP in php.ini file or the
+timezone value needs correction. To fix it please add (or update) "date.timezone"
+value in php.ini file. For example:
+
+date.timezone = "Europe/Warsaw"
index 5c59817720219c36abe19b1a0d03a609881f235c..5b1a7b33328be19b86bfabc72664b4365548e442 100644 (file)
 
 $timezone = 'UTC';
 if (!ini_get('date.timezone')) {
-       if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
-               exec('date +%Z', $tz, $retcode);
-               if ($retcode === 0 && count($tz) === 1) {
-                       $timezone = $tz[0];
-               }
-       }
        date_default_timezone_set($timezone);
 }