'localhost', 'db_port' => '3306', 'db_name' => 'egroupware', 'db_user' => 'egwuser', 'db_pass' => 'egwpass', // Look at the README file 'db_type' => 'mysqli', // This will limit who is allowed to make configuration modifications 'config_user' => 'config-admin', 'config_passwd' => '{crypt}$2a$12$Ci3HBJfWrvBMEtBpYMCnqelSaBZ1FOTEhwJp0.0xgltVjVrnVH7tS' ); /* ** If you want to have your domains in a select box, change to True ** If not, users will have to login as user@domain ** Note: This is only for virtual domain support, default domain users (that's everyone ** form the first domain or if you have only one) can login only using just there loginid. */ $GLOBALS['egw_info']['server']['show_domain_selectbox'] = false; $GLOBALS['egw_info']['server']['db_persistent'] = true; /* ** used session handler: egw_session_files works for all build in php session handlers ** other handlers (like egw_session_memcache) can be enabled here */ $GLOBALS['egw_info']['server']['session_handler'] = 'egw_session_files'; /* Select which login template set you want, most people will use idots */ $GLOBALS['egw_info']['login_template_set'] = 'idots'; /* This is used to control mcrypt's use */ $GLOBALS['egw_info']['server']['mcrypt_enabled'] = false; /* ** This is a random string used as the initialization vector for mcrypt ** feel free to change it when setting up eGrouWare on a clean database, ** but you must not change it after that point! ** It should be around 30 bytes in length. */ $GLOBALS['egw_info']['server']['mcrypt_iv'] = 'N1jKhg3q8X9HoXDHZeQJPvG9z4l5w3'; if(!isset($GLOBALS['egw_info']['flags']['nocachecontrol']) || !$GLOBALS['egw_info']['flags']['nocachecontrol']) { header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1 header('Pragma: no-cache'); // HTTP/1.0 } else { // allow caching by browser session_cache_limiter('private_no_expire'); } $GLOBALS['egw_info']['flags']['page_start_time'] = microtime(true); define('DEBUG_API', False); define('DEBUG_APP', False); include(EGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php'); $GLOBALS['egw_info']['server']['versions']['phpgwapi'] = $setup_info['phpgwapi']['version']; $GLOBALS['egw_info']['server']['versions']['current_header'] = $setup_info['phpgwapi']['versions']['current_header']; unset($setup_info); $GLOBALS['egw_info']['server']['versions']['header'] = '1.29'; if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi']) { if (substr($_SERVER['SCRIPT_NAME'],-7) != 'dav.php') // dont do it for webdav/groupdav, as we can not safely switch it off again { ob_start(); // to prevent error messages to be send before our headers } require_once(EGW_API_INC . '/functions.inc.php'); } else { require_once(EGW_API_INC . '/common_functions.inc.php'); } /* Leave off the final php closing tag, some editors will add a \n or space after which will mess up cookies later on */