2 /************************************************************************
3 * MXChange v0.2.1 Start: 08/25/2003 *
4 * =============== Last change: 05/29/2004 *
6 * -------------------------------------------------------------------- *
7 * File : databases.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Definitions and arrays (hard-coded databases) *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Definitionen und Datenfelder (hart-codertiert) *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // System-wide return codes
41 define('CODE_WRONG_PASS' , 0x001);
42 define('CODE_WRONG_ID' , 0x002);
43 define('CODE_ID_LOCKED' , 0x003);
44 define('CODE_ID_UNCONFIRMED' , 0x004);
45 define('CODE_UNKNOWN_STATUS' , 0x005);
46 define('CODE_NO_COOKIES' , 0x006);
47 define('CODE_CNTR_FAILED' , 0x008);
48 define('CODE_LOGOUT_DONE' , 0x008);
49 define('CODE_LOGOUT_FAILED' , 0x009);
50 define('CODE_URL_TLOCK' , 0x00a);
51 define('CODE_URL_FOUND' , 0x00b);
52 define('CODE_OVERLENGTH' , 0x00c);
53 define('CODE_SUBJ_URL' , 0x00d);
54 define('CODE_BLIST_URL' , 0x00e);
55 define('CODE_NO_RECS_LEFT' , 0x00f);
56 define('CODE_INVALID_TAGS' , 0x010);
57 define('CODE_MORE_POINTS' , 0x011);
58 define('CODE_COOKIES_DISABLED' , 0x012);
59 define('CODE_DATA_INVALID' , 0x013);
60 define('CODE_POSSIBLE_INVALID' , 0x014);
61 define('CODE_ACCOUNT_LOCKED' , 0x015);
62 define('CODE_USER_404' , 0x016);
63 define('CODE_STATS_404' , 0x017);
64 define('CODE_ALREADY_CONFIRMED', 0x018);
65 define('CODE_ERROR_MAILID' , 0x019);
66 define('CODE_EXTENSION_PROBLEM', 0x01a);
67 define('CODE_MORE_RECEIVERS1' , 0x01b);
68 define('CODE_MORE_RECEIVERS2' , 0x01c);
69 define('CODE_MORE_RECEIVERS3' , 0x01d);
70 define('CODE_INVALID_URL' , 0x01e);
71 define('CODE_MENU_NOT_VALID' , 0x01f);
72 define('CODE_LOGIN_FAILED' , 0x020);
73 define('CODE_BEG_SAME_AS_OWN' , 0x021);
74 define('CODE_UNHANDLED_STATUS' , 0x022);
76 // Full version string: /([0-9]){1}\.([0-9]){1}\.([0-9]){1}(-(alpha|beta|pre|rc([1-3]))([0-9]+))?/
77 // If you understand regular expressions ^^^ you may know how I versionize... ;-)
78 define('FULL_VERSION', "0.2.1-FINAL");
80 // Replacement strings
81 $GLOBALS['replacer'] = array(
82 'userid' => "%uid%", // User-ID
83 'surname' => "%vorname%", // Surname
84 'family' => "%nachname%", // Family name
85 'gender' => "%anrede%", // Gender
89 setConfigEntry('one_day', (60*60*24));
92 // Timestamp for yesterday, today ... all at 00:00 am
93 define('START_YDAY', MAKE_TIME(0, 0, 0, time() - getConfig('one_day')));
94 define('START_TDAY', MAKE_TIME(0, 0, 0, time()));
96 // Server-URL (DO NOT CHANGE THIS OR YOU CANNOT CHECK FOR UPDATES/EXTENSIONS!)
97 define('SERVER_URL', "http://www.mxchange.org");
99 // Current SVN revision
100 //define('CURR_SVN_REVISION', getActualVersion(0));
101 define('CURR_SVN_REVISION', "825");
102 define('CURR_SVN_DATE' , getActualVersion(1));
103 define('CURR_SVN_VERSION' , getActualVersion(2));
105 // Take a prime number which is long (if you know a longer one please try it out!)
106 define('_PRIME', 591623);
108 // Calculate "entropy" with the prime number (for code generation)
109 define('_ADD', (constant('_PRIME') * constant('_PRIME') / (pi() * getConfig('code_length') + 1)));
111 // Random number for e.g. the "cache-buster" used in OpenX script
112 define('CACHE_BUSTER', mt_rand(1000000, 9999999));
114 // Extra title is empty by default