From 0732d32f508045da40fe9df607b9ef20ce2d198f Mon Sep 17 00:00:00 2001 From: xaver <xaver@ispconfig3> Date: Tue, 06 Mar 2012 10:03:23 -0500 Subject: [PATCH] join fix - disappered in commit + Switch traffic joins, because its faster - Tested in a productive system (MySQL 5.1) as query few tausend domains 1-3 sec for Webtraffic sort, faster SQL = faster and MySQL 5.5 is much faster with joins (standard is not sorted with slow traffic querys) -> slowest part is coping the tables into temp -> more tweeks on cache... -> faster by heavy use --- install/tpl/config.inc.php.master | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/install/tpl/config.inc.php.master b/install/tpl/config.inc.php.master index d2517f2..1ac3c1e 100644 --- a/install/tpl/config.inc.php.master +++ b/install/tpl/config.inc.php.master @@ -56,7 +56,7 @@ //** Application define('ISPC_APP_TITLE', 'ISPConfig'); -define('ISPC_APP_VERSION', '3.0.4'); +define('ISPC_APP_VERSION', '3.0.4.3'); define('DEVSYSTEM', 0); @@ -122,7 +122,7 @@ //** Interface -$conf['interface_modules_enabled'] = 'dashboard,mail,sites,dns,tools'; +$conf['interface_modules_enabled'] = 'dashboard,mail,sites,dns,tools,help'; //** Demo mode /* The demo mode is an option to restrict certain actions in the interface like @@ -148,9 +148,10 @@ $conf['html_content_encoding'] = 'utf-8'; // example: utf-8, iso-8859-1, ... $conf['logo'] = 'themes/default/images/ispc_logo.png'; -//** Default Language +//** Default Language and Timezone $conf['language'] = '{language}'; $conf['debug_language'] = false; +$conf['timezone'] = '{timezone}'; //** Misc. -- Gitblit v1.9.1