On 12/27/2012 05:52 PM, Reindl Harald wrote:
Am 27.12.2012 23:44, schrieb Robert Moskowitz:
[27-Dec-2012 14:56:47] PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /usr/share/roundcubemail/program/include/rcube_config.php on line 96
Was it clear? It seems to indicate this; the messages do not say to update timezone in php.ini. But you DID tell me... I sent this message before I saw your latest post.
for anybody knowing PHP and can use google yes
https://www.google.com/search?q=date.timezone http://php.net/manual/en/class.datetimezone.php
And I just used webmin to edit /etc/php.ini
oh my god
So now the timezone messages have stopped appearing in /var/log/roundcube/errors, but the session error continues.
Now to figure out where to increase logging. Is it in roundcube or php...
Setting debug_level in main.inc.php to 4 or 8 (default is 1) did not result in anything being written to /var/log/roundcube/errors
Wonder where the messages are going to?
check your session-settings
cat /etc/roundcubemail/main.inc.php | grep -i session // Log session authentication errors to <log_dir>/session or to syslog $rcmail_config['log_session'] = false; // Session lifetime in minutes $rcmail_config['session_lifetime'] = 35;
Default of 10.
// session domain: .example.org $rcmail_config['session_domain'] = '';
What I have as default.
// session name. Default: 'roundcube_sessid' $rcmail_config['session_name'] = 'roundcube_sessid';
hmmm. = null
Again the default. Or at least I have no record of changing this, and I am trying hard to maintain a list of all changes I have made.
// Backend to use for session storage. Can either be 'db' (default) or 'memcache' $rcmail_config['session_storage'] = 'db';
default of 'db'.