"%uid%", // User-ID 11 => "%vorname%", // Surname 12 => "%nachname%", // Family name 13 => "%anrede%", // Salutation ); // // One day define('ONE_DAY', 60*60*24); // // Timestamp for yesterday, today ... all at 00:00 am define('START_YDAY', MAKE_TIME(0, 0, 0, time() - ONE_DAY)); define('START_TDAY', MAKE_TIME(0, 0, 0, time())); $COOKIES = substr(URL, strpos(substr(URL, 8), "/") + 8); if ((strpos($COOKIES, "/") == "0") && (strpos(substr(URL, 8), "/") > 0)) { // Script was installed into a sub directory if (substr($COOKIES, -1) != "/") $COOKIES .= "/"; } else { // No more sub directories added to URL $COOKIES = "/"; } // Cookie-Path ( for lame servers... ;-) ) define('COOKIE_PATH', $COOKIES); // Base directory for access logfiles define('LOGS_BASE', "logs"); // Base directory for usage statistics define('USAGE_BASE', "usage"); // Server-URL (DO NOT CHANGE THIS OR YOU CANNOT CHECK FOR UPDATES/EXTENSIONS!) define('SERVER_URL', "http://www.mxchange.org"); // This current patch level define('CURR_SVN_REVISION', "294"); // Take a prime number which is long (if you know a longer one please try it out!) define('_PRIME', 591623); // Calculate "entropy" with the prime number (for code generation) define('_ADD', (_PRIME * _PRIME / (pi() * $_CONFIG['code_length'] + 1))); // ?>