vispnoc
Verified User
Resolved.
The issue is / was that php.ini file which holds the configuration information for php had the timezone defined as follows:
date.timezone = "CDT"
No biggy right? WRONG. The following is the correct setting.
date.timezone = "US/Central"
How did it get there? It appears to be an issue with custombuild. If I do the following:
[root@XXX /]# cd /usr/local/directadmin/custombuild
[root@XXX custombuild]# pwd
/usr/local/directadmin/custombuild
[root@XXX custombuild]# rm options.conf
rm: remove regular file `options.conf'? y
[root@XXX custombuild]# ll options.conf
ls: cannot access options.conf: No such file or directory
[root@XXX custombuild]# ./build clean
Cannot find /usr/local/directadmin/custombuild/options.conf, writing defaults.
[root@XXX custombuild]# grep timezone options.conf
php_timezone=CDT
[root@XXX custombuild]#
I am using this version of custombuild:
# This script is written by DirectAdmin and Martynas Bendorius (smtalk)
BUILDSCRIPT_VER=2.0.0-RC6
NAME=custombuild
The issue is / was that php.ini file which holds the configuration information for php had the timezone defined as follows:
date.timezone = "CDT"
No biggy right? WRONG. The following is the correct setting.
date.timezone = "US/Central"
How did it get there? It appears to be an issue with custombuild. If I do the following:
[root@XXX /]# cd /usr/local/directadmin/custombuild
[root@XXX custombuild]# pwd
/usr/local/directadmin/custombuild
[root@XXX custombuild]# rm options.conf
rm: remove regular file `options.conf'? y
[root@XXX custombuild]# ll options.conf
ls: cannot access options.conf: No such file or directory
[root@XXX custombuild]# ./build clean
Cannot find /usr/local/directadmin/custombuild/options.conf, writing defaults.
[root@XXX custombuild]# grep timezone options.conf
php_timezone=CDT
[root@XXX custombuild]#
I am using this version of custombuild:
# This script is written by DirectAdmin and Martynas Bendorius (smtalk)
BUILDSCRIPT_VER=2.0.0-RC6
NAME=custombuild