1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
5 | // | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $RCSfile$ |
---|
9 | // | last update : $Date: 2006-06-28 21:33:35 +0000 (Wed, 28 Jun 2006) $ |
---|
10 | // | last modifier : $Author: rub $ |
---|
11 | // | revision : $Revision: 1412 $ |
---|
12 | // +-----------------------------------------------------------------------+ |
---|
13 | // | This program is free software; you can redistribute it and/or modify | |
---|
14 | // | it under the terms of the GNU General Public License as published by | |
---|
15 | // | the Free Software Foundation | |
---|
16 | // | | |
---|
17 | // | This program is distributed in the hope that it will be useful, but | |
---|
18 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
19 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
20 | // | General Public License for more details. | |
---|
21 | // | | |
---|
22 | // | You should have received a copy of the GNU General Public License | |
---|
23 | // | along with this program; if not, write to the Free Software | |
---|
24 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
25 | // | USA. | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | if (!defined('PHPWG_ROOT_PATH')) |
---|
29 | { |
---|
30 | die('Hacking attempt!'); |
---|
31 | } |
---|
32 | // determine the initial instant to indicate the generation time of this page |
---|
33 | $t1 = explode( ' ', microtime() ); |
---|
34 | $t2 = explode( '.', $t1[0] ); |
---|
35 | $t2 = $t1[1].'.'.$t2[1]; |
---|
36 | |
---|
37 | set_magic_quotes_runtime(0); // Disable magic_quotes_runtime |
---|
38 | |
---|
39 | // |
---|
40 | // addslashes to vars if magic_quotes_gpc is off this is a security |
---|
41 | // precaution to prevent someone trying to break out of a SQL statement. |
---|
42 | // |
---|
43 | if( !get_magic_quotes_gpc() ) |
---|
44 | { |
---|
45 | if( is_array( $_GET ) ) |
---|
46 | { |
---|
47 | while( list($k, $v) = each($_GET) ) |
---|
48 | { |
---|
49 | if( is_array($_GET[$k]) ) |
---|
50 | { |
---|
51 | while( list($k2, $v2) = each($_GET[$k]) ) |
---|
52 | { |
---|
53 | $_GET[$k][$k2] = addslashes($v2); |
---|
54 | } |
---|
55 | @reset($_GET[$k]); |
---|
56 | } |
---|
57 | else |
---|
58 | { |
---|
59 | $_GET[$k] = addslashes($v); |
---|
60 | } |
---|
61 | } |
---|
62 | @reset($_GET); |
---|
63 | } |
---|
64 | |
---|
65 | if( is_array($_POST) ) |
---|
66 | { |
---|
67 | while( list($k, $v) = each($_POST) ) |
---|
68 | { |
---|
69 | if( is_array($_POST[$k]) ) |
---|
70 | { |
---|
71 | while( list($k2, $v2) = each($_POST[$k]) ) |
---|
72 | { |
---|
73 | $_POST[$k][$k2] = addslashes($v2); |
---|
74 | } |
---|
75 | @reset($_POST[$k]); |
---|
76 | } |
---|
77 | else |
---|
78 | { |
---|
79 | $_POST[$k] = addslashes($v); |
---|
80 | } |
---|
81 | } |
---|
82 | @reset($_POST); |
---|
83 | } |
---|
84 | |
---|
85 | if( is_array($_COOKIE) ) |
---|
86 | { |
---|
87 | while( list($k, $v) = each($_COOKIE) ) |
---|
88 | { |
---|
89 | if( is_array($_COOKIE[$k]) ) |
---|
90 | { |
---|
91 | while( list($k2, $v2) = each($_COOKIE[$k]) ) |
---|
92 | { |
---|
93 | $_COOKIE[$k][$k2] = addslashes($v2); |
---|
94 | } |
---|
95 | @reset($_COOKIE[$k]); |
---|
96 | } |
---|
97 | else |
---|
98 | { |
---|
99 | $_COOKIE[$k] = addslashes($v); |
---|
100 | } |
---|
101 | } |
---|
102 | @reset($_COOKIE); |
---|
103 | } |
---|
104 | } |
---|
105 | |
---|
106 | // |
---|
107 | // Define some basic configuration arrays this also prevents malicious |
---|
108 | // rewriting of language and otherarray values via URI params |
---|
109 | // |
---|
110 | $conf = array(); |
---|
111 | $page = array(); |
---|
112 | $user = array(); |
---|
113 | $lang = array(); |
---|
114 | $warnings = array(); |
---|
115 | |
---|
116 | @include(PHPWG_ROOT_PATH .'include/mysql.inc.php'); |
---|
117 | if (!defined('PHPWG_INSTALLED')) |
---|
118 | { |
---|
119 | header('Location: install.php'); |
---|
120 | exit; |
---|
121 | } |
---|
122 | |
---|
123 | include(PHPWG_ROOT_PATH . 'include/config_default.inc.php'); |
---|
124 | @include(PHPWG_ROOT_PATH. 'include/config_local.inc.php'); |
---|
125 | include(PHPWG_ROOT_PATH . 'include/constants.php'); |
---|
126 | include(PHPWG_ROOT_PATH . 'include/functions.inc.php'); |
---|
127 | include(PHPWG_ROOT_PATH . 'include/template.php'); |
---|
128 | |
---|
129 | // Database connection |
---|
130 | mysql_connect( $cfgHote, $cfgUser, $cfgPassword ) |
---|
131 | or die ( "Could not connect to database server" ); |
---|
132 | mysql_select_db( $cfgBase ) |
---|
133 | or die ( "Could not connect to database" ); |
---|
134 | |
---|
135 | if ($conf['check_upgrade_feed']) |
---|
136 | { |
---|
137 | // retrieve already applied upgrades |
---|
138 | $query = ' |
---|
139 | SELECT id |
---|
140 | FROM '.UPGRADE_TABLE.' |
---|
141 | ;'; |
---|
142 | $applied = array_from_query($query, 'id'); |
---|
143 | |
---|
144 | // retrieve existing upgrades |
---|
145 | $existing = get_available_upgrade_ids(); |
---|
146 | |
---|
147 | // which upgrades need to be applied? |
---|
148 | if (count(array_diff($existing, $applied)) > 0) |
---|
149 | { |
---|
150 | $warnings[] = 'Some database upgrades are missing, ' |
---|
151 | .'<a href="'.PHPWG_ROOT_PATH.'upgrade_feed.php">upgrade now</a>'; |
---|
152 | } |
---|
153 | } |
---|
154 | |
---|
155 | // |
---|
156 | // Setup gallery wide options, if this fails then we output a CRITICAL_ERROR |
---|
157 | // since basic gallery information is not available |
---|
158 | // |
---|
159 | load_conf_from_db(); |
---|
160 | |
---|
161 | include(PHPWG_ROOT_PATH.'include/user.inc.php'); |
---|
162 | |
---|
163 | // language files |
---|
164 | include_once(get_language_filepath('common.lang.php')); |
---|
165 | |
---|
166 | if (defined('IN_ADMIN') and IN_ADMIN) |
---|
167 | { |
---|
168 | include_once(get_language_filepath('admin.lang.php')); |
---|
169 | } |
---|
170 | |
---|
171 | if ($conf['gallery_locked']) |
---|
172 | { |
---|
173 | $warnings[] = $lang['gallery_locked_message'] |
---|
174 | . '<a href="'.PHPWG_ROOT_PATH.'identification.php">.</a>'; |
---|
175 | |
---|
176 | if ( basename($_SERVER["PHP_SELF"]) != 'identification.php' |
---|
177 | and !is_admin() ) |
---|
178 | { |
---|
179 | exit(); |
---|
180 | } |
---|
181 | } |
---|
182 | |
---|
183 | // only now we can set the localized username of the guest user (and not in |
---|
184 | // include/user.inc.php) |
---|
185 | if ($user['is_the_guest']) |
---|
186 | { |
---|
187 | $user['username'] = $lang['guest']; |
---|
188 | } |
---|
189 | |
---|
190 | // include template/theme configuration |
---|
191 | if (defined('IN_ADMIN') and IN_ADMIN) |
---|
192 | { |
---|
193 | list($user['template'], $user['theme']) = |
---|
194 | explode |
---|
195 | ( |
---|
196 | '/', |
---|
197 | isset($conf['default_admin_layout']) ? $conf['default_admin_layout'] |
---|
198 | : $user['template'] |
---|
199 | ); |
---|
200 | // TODO : replace $conf['admin_layout'] by $user['admin_layout'] |
---|
201 | } |
---|
202 | else |
---|
203 | { |
---|
204 | list($user['template'], $user['theme']) = explode('/', $user['template']); |
---|
205 | } |
---|
206 | // TODO : replace initial $user['template'] by $user['layout'] |
---|
207 | |
---|
208 | include( |
---|
209 | PHPWG_ROOT_PATH |
---|
210 | .'template/'.$user['template'] |
---|
211 | .'/theme/'.$user['theme'] |
---|
212 | .'/themeconf.inc.php' |
---|
213 | ); |
---|
214 | |
---|
215 | if (is_adviser()) |
---|
216 | { |
---|
217 | $warnings[] = $lang['adviser_mode_enabled']; |
---|
218 | } |
---|
219 | |
---|
220 | // template instance |
---|
221 | $template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template']); |
---|
222 | |
---|
223 | if (count($warnings) > 0) |
---|
224 | { |
---|
225 | $template->assign_block_vars('warnings',array()); |
---|
226 | foreach ($warnings as $warning) |
---|
227 | { |
---|
228 | $template->assign_block_vars('warnings.warning', array('WARNING'=>$warning)); |
---|
229 | } |
---|
230 | } |
---|
231 | ?> |
---|