version 2.x.x - Griffin Chapel ()
+ + Added TIMEZONE as a new config setting. Please update your config.
+ See update.txt for more details.
+ Better logging
+ New home screen layout
If you are updating from a previous version make sure every update info from
the version your are updating from is done.
+## version 2.x.x - Griffin Chapel
++ Add new config setting TIMEZONE to your config. See config.default.php for more details
+
## version 2.8.2 - Dragon Chapel
+ Add query debug setting to config file.
See config.default.php for QUERY_DEBUG constant. Add it to your local config.php
const COMPLETE_PAGE_SCREENSHOT = false;
const COMPLETE_PAGE_SCREENSHOT_COMMAND = '/absolute/path/to/command';
+# Timezone setting
+const TIMEZONE = 'Europe/Berlin';
+
# debug
const DEBUG = false;
const QUERY_DEBUG = false;
mb_http_output('UTF-8');
mb_internal_encoding('UTF-8');
error_reporting(-1); // E_ALL & E_STRICT
-# time settings
-date_default_timezone_set('Europe/Berlin');
-
require('config.php');
+date_default_timezone_set(TIMEZONE);
## check request
$_urlToParse = filter_var($_SERVER['QUERY_STRING'],FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_LOW);
mb_http_output('UTF-8');
mb_internal_encoding('UTF-8');
error_reporting(-1); // E_ALL & E_STRICT
-# time settings
-date_default_timezone_set('Europe/Berlin');
-
require('../config.php');
+date_default_timezone_set(TIMEZONE);
## set the error reporting
ini_set('log_errors',true);;