/* Author Tomáš Vlachynský */ // Inicialize session session_cache_limiter("private"); session_cache_expire(300); session_start(); // Inicialize error reports error_reporting(E_ALL); // Other INI settings ini_set('mysql.connect_timeout', 1); // Setup low latency DB // Set internal Encoding to UTF 8 mb_internal_encoding("UTF-8"); // Set default timezone date_default_timezone_set("Europe/Prague"); // Be sure not to cache header("Cache-Control: no-cache, must-revalidate"); // Setup project VARS $Project["DIR"]["ROOT"]="D:/Projekty/cimax.cz/"; $Project["DIR"]["WEB"]="{$Project["DIR"]["ROOT"]}includes/web/"; //Send common headers // Cache control header("Cache-Control: no-cache, must-revalidate"); ?>