date is displayed empty
rc 0.7.1 still works with php 5.4.x
can others confirm ?
Make sure you have set date.timezone in your php.ini.
Thanks, -Scott Kidder
On Oct 24, 2012, at 3:44 PM, Benny Pedersen wrote:
date is displayed empty
rc 0.7.1 still works with php 5.4.x
can others confirm ?
Roundcube Development discussion mailing list dev@lists.roundcube.net http://lists.roundcube.net/mailman/listinfo/dev
On Thursday, October 25, 2012 at 12:02 AM, Benny Pedersen wrote:
Scott Kidder skrev den 24-10-2012 23:46:
Make sure you have set date.timezone in your php.ini.
thanks for the reminder, i missed that :(
Don't forget to enable error_log = syslog, log_errors = On and enable error_reporting.
Am 25.10.2012 11:11, schrieb Benny Pedersen:
till skrev den 25-10-2012 00:38:
Don't forget to enable error_log = syslog, log_errors = On and enable error_reporting.
can it be set in .htaccess ? i try to keep it non global here
<Directory> is your friend in the vhost-config so it is not global but all in one place php_admin_flag whatever 0/1 php_admin_value whatever "value"
<VirtualHost *> ServerName your_hostname DocumentRoot "/usr/share/roundcubemail/redirect" Include /etc/httpd/conf/webmail.inc.conf Alias /tl-webmail /usr/share/roundcubemail <Directory /usr/share/roundcubemail> php_admin_value suhosin.executor.func.blacklist "popen, pclose............" php_admin_value open_basedir "/usr/share/roundcubemail:/etc/roundcubemail......." php_value include_path ".:/usr/share/pear" php_value suhosin.get.max_value_length "1024"
<Limit GET POST> Allow From All </Limit> </Directory> <Directory /etc/roundcubemail> Order Deny,Allow Deny from all </Directory> </VirtualHost>