@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | |
317 | 317 | |
318 | 318 | // make sure we can use the database |
319 | -if ($installMode > 0 && !mysqli_query($conn, "USE {$dbase}")) { |
|
319 | +if ($installMode > 0 && !mysqli_query($conn, "use {$dbase}")) { |
|
320 | 320 | $errors++; |
321 | 321 | echo $_lang['database_use_failed'] . PHP_EOL; |
322 | 322 | } |
@@ -1117,7 +1117,7 @@ discard block |
||
1117 | 1117 | |
1118 | 1118 | if (mysqli_num_rows($rs)) { |
1119 | 1119 | if (!mysqli_query($sqlParser->conn, |
1120 | - "UPDATE $dbase.`" . $table_prefix . "site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked' WHERE templatename='$name' LIMIT 1;")) { |
|
1120 | + "update $dbase.`" . $table_prefix . "site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked' WHERE templatename='$name' LIMIT 1;")) { |
|
1121 | 1121 | $errors += 1; |
1122 | 1122 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1123 | 1123 | |
@@ -1181,7 +1181,7 @@ discard block |
||
1181 | 1181 | $insert = true; |
1182 | 1182 | while ($row = mysqli_fetch_assoc($rs)) { |
1183 | 1183 | if (!mysqli_query($sqlParser->conn, |
1184 | - "UPDATE $dbase.`" . $table_prefix . "site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) { |
|
1184 | + "update $dbase.`" . $table_prefix . "site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) { |
|
1185 | 1185 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1186 | 1186 | |
1187 | 1187 | return; |
@@ -1266,7 +1266,7 @@ discard block |
||
1266 | 1266 | $update = $count_original_name > 0 && $overwrite == 'true'; |
1267 | 1267 | if ($update) { |
1268 | 1268 | if (!mysqli_query($sqlParser->conn, |
1269 | - "UPDATE $dbase.`" . $table_prefix . "site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) { |
|
1269 | + "update $dbase.`" . $table_prefix . "site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) { |
|
1270 | 1270 | $errors += 1; |
1271 | 1271 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1272 | 1272 | |
@@ -1322,7 +1322,7 @@ discard block |
||
1322 | 1322 | $row = mysqli_fetch_assoc($rs); |
1323 | 1323 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1324 | 1324 | if (!mysqli_query($sqlParser->conn, |
1325 | - "UPDATE $dbase.`" . $table_prefix . "site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) { |
|
1325 | + "update $dbase.`" . $table_prefix . "site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) { |
|
1326 | 1326 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1327 | 1327 | |
1328 | 1328 | return; |
@@ -1373,7 +1373,7 @@ discard block |
||
1373 | 1373 | |
1374 | 1374 | // disable legacy versions based on legacy_names provided |
1375 | 1375 | if (!empty($leg_names)) { |
1376 | - $update_query = "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE name IN ($leg_names);"; |
|
1376 | + $update_query = "update $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE name IN ($leg_names);"; |
|
1377 | 1377 | $rs = mysqli_query($sqlParser->conn, $update_query); |
1378 | 1378 | } |
1379 | 1379 | |
@@ -1391,7 +1391,7 @@ discard block |
||
1391 | 1391 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1392 | 1392 | if ($row['description'] == $desc) { |
1393 | 1393 | if (!mysqli_query($sqlParser->conn, |
1394 | - "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) { |
|
1394 | + "update $dbase.`" . $table_prefix . "site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) { |
|
1395 | 1395 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1396 | 1396 | |
1397 | 1397 | return; |
@@ -1399,7 +1399,7 @@ discard block |
||
1399 | 1399 | $insert = false; |
1400 | 1400 | } else { |
1401 | 1401 | if (!mysqli_query($sqlParser->conn, |
1402 | - "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE id={$row['id']};")) { |
|
1402 | + "update $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE id={$row['id']};")) { |
|
1403 | 1403 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1404 | 1404 | |
1405 | 1405 | return; |
@@ -1478,7 +1478,7 @@ discard block |
||
1478 | 1478 | $row = mysqli_fetch_assoc($rs); |
1479 | 1479 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1480 | 1480 | if (!mysqli_query($sqlParser->conn, |
1481 | - "UPDATE $dbase.`" . $table_prefix . "site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) { |
|
1481 | + "update $dbase.`" . $table_prefix . "site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) { |
|
1482 | 1482 | echo mysqli_error($sqlParser->conn) . PHP_EOL; |
1483 | 1483 | |
1484 | 1484 | return; |
@@ -7,8 +7,8 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | $self = 'install/cli-install.php'; |
10 | -$path = __DIR__ . '/'; |
|
11 | -$base_path = dirname(__DIR__) . '/'; |
|
10 | +$path = __DIR__.'/'; |
|
11 | +$base_path = dirname(__DIR__).'/'; |
|
12 | 12 | define('MODX_API_MODE', true); |
13 | 13 | define('MODX_BASE_PATH', $base_path); |
14 | 14 | define('MODX_SITE_URL', '/'); |
@@ -18,22 +18,22 @@ discard block |
||
18 | 18 | // set error reporting |
19 | 19 | error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); |
20 | 20 | |
21 | -if (is_file($base_path . "assets/cache/siteManager.php")) { |
|
22 | - include_once($base_path . "assets/cache/siteManager.php"); |
|
21 | +if (is_file($base_path."assets/cache/siteManager.php")) { |
|
22 | + include_once($base_path."assets/cache/siteManager.php"); |
|
23 | 23 | } |
24 | -if (!defined('MGR_DIR') && is_dir($base_path . "manager")) { |
|
24 | +if (!defined('MGR_DIR') && is_dir($base_path."manager")) { |
|
25 | 25 | define('MGR_DIR', 'manager'); |
26 | 26 | } |
27 | 27 | |
28 | 28 | require_once 'src/lang.php'; |
29 | -require_once($base_path . MGR_DIR . '/includes/version.inc.php'); |
|
29 | +require_once($base_path.MGR_DIR.'/includes/version.inc.php'); |
|
30 | 30 | |
31 | 31 | $moduleName = "EVO"; |
32 | -$moduleVersion = $modx_branch . ' ' . $modx_version; |
|
32 | +$moduleVersion = $modx_branch.' '.$modx_version; |
|
33 | 33 | $moduleRelease = $modx_release_date; |
34 | -$moduleSQLBaseFile = $path . 'stubs/sql/setup.sql'; |
|
35 | -$moduleSQLDataFile = $path . 'stubs/sql/setup.data.sql'; |
|
36 | -$moduleSQLResetFile = $path . 'stubs/sql/setup.data.reset.sql'; |
|
34 | +$moduleSQLBaseFile = $path.'stubs/sql/setup.sql'; |
|
35 | +$moduleSQLDataFile = $path.'stubs/sql/setup.data.sql'; |
|
36 | +$moduleSQLResetFile = $path.'stubs/sql/setup.data.reset.sql'; |
|
37 | 37 | |
38 | 38 | $moduleChunks = array(); // chunks - array : name, description, type - 0:file or 1:content, file or content |
39 | 39 | $moduleTemplates = array(); // templates - array : name, description, type - 0:file or 1:content, file or content |
@@ -48,29 +48,29 @@ discard block |
||
48 | 48 | |
49 | 49 | $installMode = 0; |
50 | 50 | $installData = 0; |
51 | -$tableprefixauto = base_convert(rand(10, 20), 10, 36) . substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyz'), |
|
52 | - rand(0, 33), 3) . '_'; |
|
51 | +$tableprefixauto = base_convert(rand(10, 20), 10, 36).substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyz'), |
|
52 | + rand(0, 33), 3).'_'; |
|
53 | 53 | |
54 | 54 | $args = array_slice($argv, 1); |
55 | 55 | |
56 | 56 | if (empty($args)) { |
57 | - echo 'Install Evolution CMS' . PHP_EOL; |
|
57 | + echo 'Install Evolution CMS'.PHP_EOL; |
|
58 | 58 | //$installYes = readline("Type 'y' to continue: "); |
59 | 59 | //if ($installYes != 'y') return; |
60 | 60 | |
61 | 61 | //set param manual |
62 | - $databasehost = readline($_lang['connection_screen_database_host'] . ' [localhost] '); |
|
63 | - $databaseloginname = readline($_lang['connection_screen_database_login'] . ' '); |
|
64 | - $databaseloginpassword = readline($_lang['connection_screen_database_pass'] . ' '); |
|
65 | - $database_name = readline($_lang['connection_screen_database_name'] . ' '); |
|
66 | - $tableprefix = readline($_lang['connection_screen_table_prefix'] . ' [' . $tableprefixauto . '] '); |
|
67 | - $database_connection_method = readline($_lang['connection_screen_connection_method'] . ' [SET CHARACTER SET] '); |
|
68 | - $database_collation = readline($_lang['connection_screen_collation'] . ' [utf8_general_ci] '); |
|
69 | - $cmsadmin = readline($_lang['connection_screen_default_admin_login'] . ' [admin] '); |
|
70 | - $cmsadminemail = readline($_lang['connection_screen_default_admin_email'] . ' '); |
|
71 | - $cmspassword = readline($_lang['connection_screen_default_admin_password'] . ' '); |
|
72 | - $managerlanguage = readline('Мanager language:' . ' [en] '); |
|
73 | - $installData = readline('Instal demo-site (y/n):' . ' [n] '); |
|
62 | + $databasehost = readline($_lang['connection_screen_database_host'].' [localhost] '); |
|
63 | + $databaseloginname = readline($_lang['connection_screen_database_login'].' '); |
|
64 | + $databaseloginpassword = readline($_lang['connection_screen_database_pass'].' '); |
|
65 | + $database_name = readline($_lang['connection_screen_database_name'].' '); |
|
66 | + $tableprefix = readline($_lang['connection_screen_table_prefix'].' ['.$tableprefixauto.'] '); |
|
67 | + $database_connection_method = readline($_lang['connection_screen_connection_method'].' [SET CHARACTER SET] '); |
|
68 | + $database_collation = readline($_lang['connection_screen_collation'].' [utf8_general_ci] '); |
|
69 | + $cmsadmin = readline($_lang['connection_screen_default_admin_login'].' [admin] '); |
|
70 | + $cmsadminemail = readline($_lang['connection_screen_default_admin_email'].' '); |
|
71 | + $cmspassword = readline($_lang['connection_screen_default_admin_password'].' '); |
|
72 | + $managerlanguage = readline('Мanager language:'.' [en] '); |
|
73 | + $installData = readline('Instal demo-site (y/n):'.' [n] '); |
|
74 | 74 | |
75 | 75 | } else { |
76 | 76 | |
@@ -169,114 +169,114 @@ discard block |
||
169 | 169 | // check PHP version |
170 | 170 | define('PHP_MIN_VERSION', '5.4.0'); |
171 | 171 | $phpMinVersion = PHP_MIN_VERSION; // Maybe not necessary. For backward compatibility |
172 | -echo PHP_EOL . $_lang['checking_php_version']; |
|
172 | +echo PHP_EOL.$_lang['checking_php_version']; |
|
173 | 173 | // -1 if left is less, 0 if equal, +1 if left is higher |
174 | 174 | if (version_compare(phpversion(), PHP_MIN_VERSION) < 0) { |
175 | 175 | $errors++; |
176 | - $tmp = $_lang['you_running_php'] . phpversion() . str_replace('[+min_version+]', PHP_MIN_VERSION, |
|
176 | + $tmp = $_lang['you_running_php'].phpversion().str_replace('[+min_version+]', PHP_MIN_VERSION, |
|
177 | 177 | $_lang["modx_requires_php"]); |
178 | - echo $_lang['failed'] . ' ' . $tmp . PHP_EOL; |
|
178 | + echo $_lang['failed'].' '.$tmp.PHP_EOL; |
|
179 | 179 | } else { |
180 | - echo $_lang['ok'] . PHP_EOL; |
|
180 | + echo $_lang['ok'].PHP_EOL; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | // check directories |
184 | 184 | // cache exists? |
185 | 185 | echo strip_tags($_lang['checking_if_cache_exist']); |
186 | -if (!file_exists($path . "../assets/cache") || !file_exists($path . "../assets/cache/rss")) { |
|
187 | - echo $_lang['failed'] . PHP_EOL; |
|
186 | +if (!file_exists($path."../assets/cache") || !file_exists($path."../assets/cache/rss")) { |
|
187 | + echo $_lang['failed'].PHP_EOL; |
|
188 | 188 | $errors++; |
189 | 189 | } else { |
190 | - echo $_lang['ok'] . PHP_EOL; |
|
190 | + echo $_lang['ok'].PHP_EOL; |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
194 | 194 | // cache writable? |
195 | 195 | echo strip_tags($_lang['checking_if_cache_writable']); |
196 | -if (!is_writable($path . "../assets/cache")) { |
|
196 | +if (!is_writable($path."../assets/cache")) { |
|
197 | 197 | $errors++; |
198 | - echo $_lang['failed'] . PHP_EOL; |
|
198 | + echo $_lang['failed'].PHP_EOL; |
|
199 | 199 | } else { |
200 | - echo $_lang['ok'] . PHP_EOL; |
|
200 | + echo $_lang['ok'].PHP_EOL; |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | |
204 | 204 | // cache files writable? |
205 | 205 | echo strip_tags($_lang['checking_if_cache_file_writable']); |
206 | -$tmp = $path . "../assets/cache/siteCache.idx.php"; |
|
206 | +$tmp = $path."../assets/cache/siteCache.idx.php"; |
|
207 | 207 | if (!file_exists($tmp)) { |
208 | 208 | f_owc($tmp, "<?php //EVO site cache file ?>"); |
209 | 209 | } |
210 | 210 | if (!is_writable($tmp)) { |
211 | 211 | $errors++; |
212 | - echo $_lang['failed'] . PHP_EOL; |
|
212 | + echo $_lang['failed'].PHP_EOL; |
|
213 | 213 | } else { |
214 | - echo $_lang['ok'] . PHP_EOL; |
|
214 | + echo $_lang['ok'].PHP_EOL; |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | |
218 | 218 | echo strip_tags($_lang['checking_if_cache_file2_writable']); |
219 | -if (!is_writable($path . "../assets/cache/sitePublishing.idx.php")) { |
|
219 | +if (!is_writable($path."../assets/cache/sitePublishing.idx.php")) { |
|
220 | 220 | $errors++; |
221 | - echo $_lang['failed'] . PHP_EOL; |
|
221 | + echo $_lang['failed'].PHP_EOL; |
|
222 | 222 | } else { |
223 | - echo $_lang['ok'] . PHP_EOL; |
|
223 | + echo $_lang['ok'].PHP_EOL; |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | |
227 | 227 | // File Browser directories exists? |
228 | 228 | echo strip_tags($_lang['checking_if_images_exist']); |
229 | 229 | switch (true) { |
230 | - case !file_exists($path . "../assets/images"): |
|
231 | - case !file_exists($path . "../assets/files"): |
|
232 | - case !file_exists($path . "../assets/backup"): |
|
230 | + case !file_exists($path."../assets/images"): |
|
231 | + case !file_exists($path."../assets/files"): |
|
232 | + case !file_exists($path."../assets/backup"): |
|
233 | 233 | //case !file_exists("../assets/.thumbs"): |
234 | 234 | $errors++; |
235 | - echo $_lang['failed'] . PHP_EOL; |
|
235 | + echo $_lang['failed'].PHP_EOL; |
|
236 | 236 | break; |
237 | 237 | default: |
238 | - echo $_lang['ok'] . PHP_EOL; |
|
238 | + echo $_lang['ok'].PHP_EOL; |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | |
242 | 242 | // File Browser directories writable? |
243 | 243 | echo strip_tags($_lang['checking_if_images_writable']); |
244 | 244 | switch (true) { |
245 | - case !is_writable($path . "../assets/images"): |
|
246 | - case !is_writable($path . "../assets/files"): |
|
247 | - case !is_writable($path . "../assets/backup"): |
|
245 | + case !is_writable($path."../assets/images"): |
|
246 | + case !is_writable($path."../assets/files"): |
|
247 | + case !is_writable($path."../assets/backup"): |
|
248 | 248 | //case !is_writable("../assets/.thumbs"): |
249 | 249 | $errors++; |
250 | - echo $_lang['failed'] . PHP_EOL; |
|
250 | + echo $_lang['failed'].PHP_EOL; |
|
251 | 251 | break; |
252 | 252 | default: |
253 | - echo $_lang['ok'] . PHP_EOL; |
|
253 | + echo $_lang['ok'].PHP_EOL; |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | |
257 | 257 | // export exists? |
258 | 258 | echo strip_tags($_lang['checking_if_export_exists']); |
259 | -if (!file_exists($path . "../assets/export")) { |
|
260 | - echo $_lang['failed'] . PHP_EOL; |
|
259 | +if (!file_exists($path."../assets/export")) { |
|
260 | + echo $_lang['failed'].PHP_EOL; |
|
261 | 261 | $errors++; |
262 | 262 | } else { |
263 | - echo $_lang['ok'] . PHP_EOL; |
|
263 | + echo $_lang['ok'].PHP_EOL; |
|
264 | 264 | } |
265 | 265 | |
266 | 266 | |
267 | 267 | // export writable? |
268 | 268 | echo strip_tags($_lang['checking_if_export_writable']); |
269 | -if (!is_writable($path . "../assets/export")) { |
|
270 | - echo $_lang['failed'] . PHP_EOL; |
|
269 | +if (!is_writable($path."../assets/export")) { |
|
270 | + echo $_lang['failed'].PHP_EOL; |
|
271 | 271 | $errors++; |
272 | 272 | } else { |
273 | - echo $_lang['ok'] . PHP_EOL; |
|
273 | + echo $_lang['ok'].PHP_EOL; |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | |
277 | 277 | // config.inc.php writable? |
278 | 278 | echo strip_tags($_lang['checking_if_config_exist_and_writable']); |
279 | -$tmp = $path . "../" . MGR_DIR . "/includes/config.inc.php"; |
|
279 | +$tmp = $path."../".MGR_DIR."/includes/config.inc.php"; |
|
280 | 280 | if (!is_file($tmp)) { |
281 | 281 | f_owc($tmp, "<?php //EVO configuration file ?>", 0666); |
282 | 282 | } else { |
@@ -285,15 +285,15 @@ discard block |
||
285 | 285 | $isWriteable = is_writable($tmp); |
286 | 286 | if (!$isWriteable) { |
287 | 287 | $errors++; |
288 | - echo $_lang['failed'] . PHP_EOL; |
|
288 | + echo $_lang['failed'].PHP_EOL; |
|
289 | 289 | } else { |
290 | - echo $_lang['ok'] . PHP_EOL; |
|
290 | + echo $_lang['ok'].PHP_EOL; |
|
291 | 291 | } |
292 | 292 | |
293 | 293 | |
294 | 294 | // connect to the database |
295 | 295 | if ($installMode == 1) { |
296 | - include $path . "../" . MGR_DIR . "/includes/config.inc.php"; |
|
296 | + include $path."../".MGR_DIR."/includes/config.inc.php"; |
|
297 | 297 | } else { |
298 | 298 | // get db info from post |
299 | 299 | $database_server = $databasehost; |
@@ -303,22 +303,22 @@ discard block |
||
303 | 303 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_') - 1); |
304 | 304 | $database_connection_charset = $database_collation; |
305 | 305 | $database_connection_method = $database_connection_method; |
306 | - $dbase = '`' . $database_name . '`'; |
|
306 | + $dbase = '`'.$database_name.'`'; |
|
307 | 307 | $table_prefix = $tableprefix; |
308 | 308 | } |
309 | 309 | echo $_lang['creating_database_connection']; |
310 | 310 | if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) { |
311 | 311 | $errors++; |
312 | - echo $_lang['database_connection_failed'] . PHP_EOL; |
|
312 | + echo $_lang['database_connection_failed'].PHP_EOL; |
|
313 | 313 | } else { |
314 | - echo $_lang['ok'] . PHP_EOL; |
|
314 | + echo $_lang['ok'].PHP_EOL; |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | |
318 | 318 | // make sure we can use the database |
319 | 319 | if ($installMode > 0 && !mysqli_query($conn, "USE {$dbase}")) { |
320 | 320 | $errors++; |
321 | - echo $_lang['database_use_failed'] . PHP_EOL; |
|
321 | + echo $_lang['database_use_failed'].PHP_EOL; |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | // check the database collation if not specified in the configuration |
@@ -343,22 +343,22 @@ discard block |
||
343 | 343 | |
344 | 344 | // check table prefix |
345 | 345 | if ($conn && $installMode == 0) { |
346 | - echo $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
347 | - if ($rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
348 | - echo $_lang['failed'] . ' ' . $_lang['table_prefix_already_inuse_note'] . PHP_EOL; |
|
346 | + echo $_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
347 | + if ($rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
348 | + echo $_lang['failed'].' '.$_lang['table_prefix_already_inuse_note'].PHP_EOL; |
|
349 | 349 | $errors++; |
350 | 350 | |
351 | 351 | } else { |
352 | - echo $_lang['ok'] . PHP_EOL; |
|
352 | + echo $_lang['ok'].PHP_EOL; |
|
353 | 353 | } |
354 | 354 | } elseif ($conn && $installMode == 2) { |
355 | - echo $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
356 | - if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
357 | - echo $_lang['failed'] . ' ' . $_lang['table_prefix_not_exist'] . PHP_EOL; |
|
355 | + echo $_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
356 | + if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
357 | + echo $_lang['failed'].' '.$_lang['table_prefix_not_exist'].PHP_EOL; |
|
358 | 358 | $errors++; |
359 | 359 | |
360 | 360 | } else { |
361 | - echo $_lang['ok'] . PHP_EOL; |
|
361 | + echo $_lang['ok'].PHP_EOL; |
|
362 | 362 | } |
363 | 363 | } |
364 | 364 | |
@@ -366,10 +366,10 @@ discard block |
||
366 | 366 | if ($conn) { |
367 | 367 | echo $_lang['checking_mysql_version']; |
368 | 368 | if (version_compare(mysqli_get_server_info($conn), '5.0.51', '=')) { |
369 | - echo $_lang['warning'] . ' ' . $_lang['mysql_5051'] . PHP_EOL; |
|
370 | - echo $_lang['mysql_5051_warning'] . PHP_EOL; |
|
369 | + echo $_lang['warning'].' '.$_lang['mysql_5051'].PHP_EOL; |
|
370 | + echo $_lang['mysql_5051_warning'].PHP_EOL; |
|
371 | 371 | } else { |
372 | - echo $_lang['ok'] . ' ' . $_lang['mysql_version_is'] . mysqli_get_server_info($conn) . PHP_EOL; |
|
372 | + echo $_lang['ok'].' '.$_lang['mysql_version_is'].mysqli_get_server_info($conn).PHP_EOL; |
|
373 | 373 | } |
374 | 374 | } |
375 | 375 | |
@@ -383,40 +383,40 @@ discard block |
||
383 | 383 | // print_r($modes); |
384 | 384 | foreach ($modes as $mode) { |
385 | 385 | if (stristr($mode, "STRICT_TRANS_TABLES") !== false || stristr($mode, "STRICT_ALL_TABLES") !== false) { |
386 | - echo $_lang['warning'] . ' ' . $_lang['strict_mode'] . PHP_EOL; |
|
387 | - echo $_lang['strict_mode_error'] . PHP_EOL; |
|
386 | + echo $_lang['warning'].' '.$_lang['strict_mode'].PHP_EOL; |
|
387 | + echo $_lang['strict_mode_error'].PHP_EOL; |
|
388 | 388 | } else { |
389 | - echo $_lang['ok'] . PHP_EOL; |
|
389 | + echo $_lang['ok'].PHP_EOL; |
|
390 | 390 | } |
391 | 391 | } |
392 | 392 | } else { |
393 | - echo $_lang['ok'] . PHP_EOL; |
|
393 | + echo $_lang['ok'].PHP_EOL; |
|
394 | 394 | } |
395 | 395 | } |
396 | 396 | // Version and strict mode check end |
397 | 397 | |
398 | 398 | // andrazk 20070416 - add install flag and disable manager login |
399 | 399 | // assets/cache writable? |
400 | -if (is_writable($path . "../assets/cache")) { |
|
401 | - if (file_exists($path . '../assets/cache/installProc.inc.php')) { |
|
402 | - @chmod($path . '../assets/cache/installProc.inc.php', 0755); |
|
403 | - unlink($path . '../assets/cache/installProc.inc.php'); |
|
400 | +if (is_writable($path."../assets/cache")) { |
|
401 | + if (file_exists($path.'../assets/cache/installProc.inc.php')) { |
|
402 | + @chmod($path.'../assets/cache/installProc.inc.php', 0755); |
|
403 | + unlink($path.'../assets/cache/installProc.inc.php'); |
|
404 | 404 | } |
405 | 405 | |
406 | - f_owc($path . "../assets/cache/installProc.inc.php", '<?php $installStartTime = ' . time() . '; ?>'); |
|
406 | + f_owc($path."../assets/cache/installProc.inc.php", '<?php $installStartTime = '.time().'; ?>'); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | if ($installMode > 0 && $_POST['installdata'] == "1") { |
410 | - echo $_lang['sample_web_site'] . ': ' . $_lang['sample_web_site_note'] . PHP_EOL; |
|
410 | + echo $_lang['sample_web_site'].': '.$_lang['sample_web_site_note'].PHP_EOL; |
|
411 | 411 | } |
412 | 412 | |
413 | 413 | if ($errors > 0) { |
414 | - echo $_lang['setup_cannot_continue'] . ' '; |
|
414 | + echo $_lang['setup_cannot_continue'].' '; |
|
415 | 415 | |
416 | 416 | if ($errors > 1) { |
417 | - echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
|
417 | + echo $errors." ".$_lang['errors'].$_lang['please_correct_errors'].$_lang['and_try_again_plural']; |
|
418 | 418 | } else { |
419 | - echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again'] . PHP_EOL; |
|
419 | + echo $_lang['error'].$_lang['please_correct_error'].$_lang['and_try_again'].PHP_EOL; |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | die(); |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | |
434 | 434 | |
435 | 435 | if ($installMode == 1) { |
436 | - include $path . "../" . MGR_DIR . "/includes/config.inc.php"; |
|
436 | + include $path."../".MGR_DIR."/includes/config.inc.php"; |
|
437 | 437 | } else { |
438 | 438 | // get db info from post |
439 | 439 | $database_server = $databasehost; |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
444 | 444 | $database_connection_charset = $database_charset; |
445 | 445 | $database_connection_method = $database_connection_method; |
446 | - $dbase = "`" . $database_name . "`"; |
|
446 | + $dbase = "`".$database_name."`"; |
|
447 | 447 | $table_prefix = $tableprefix; |
448 | 448 | $adminname = $cmsadmin; |
449 | 449 | $adminemail = $cmsadminemail; |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | |
455 | 455 | // set session name variable |
456 | 456 | if (!isset ($site_sessionname)) { |
457 | - $site_sessionname = 'SN' . uniqid(''); |
|
457 | + $site_sessionname = 'SN'.uniqid(''); |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | // get base path and url |
@@ -470,64 +470,64 @@ discard block |
||
470 | 470 | } |
471 | 471 | $pth = implode("install", $a); |
472 | 472 | unset ($a); |
473 | -$base_url = $url . (substr($url, -1) != "/" ? "/" : ""); |
|
474 | -$base_path = $pth . (substr($pth, -1) != "/" ? "/" : ""); |
|
473 | +$base_url = $url.(substr($url, -1) != "/" ? "/" : ""); |
|
474 | +$base_path = $pth.(substr($pth, -1) != "/" ? "/" : ""); |
|
475 | 475 | |
476 | 476 | // connect to the database |
477 | -echo $_lang['setup_database_create_connection'] . ': '; |
|
477 | +echo $_lang['setup_database_create_connection'].': '; |
|
478 | 478 | if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) { |
479 | - echo $_lang["setup_database_create_connection_failed"] . " " . $_lang['setup_database_create_connection_failed_note'] . PHP_EOL; |
|
479 | + echo $_lang["setup_database_create_connection_failed"]." ".$_lang['setup_database_create_connection_failed_note'].PHP_EOL; |
|
480 | 480 | |
481 | 481 | return; |
482 | 482 | } else { |
483 | - echo $_lang['ok'] . PHP_EOL; |
|
483 | + echo $_lang['ok'].PHP_EOL; |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | // select database |
487 | -echo $_lang['setup_database_selection'] . str_replace("`", "", $dbase) . "`: "; |
|
487 | +echo $_lang['setup_database_selection'].str_replace("`", "", $dbase)."`: "; |
|
488 | 488 | if (!mysqli_select_db($conn, str_replace("`", "", $dbase))) { |
489 | - echo $_lang['setup_database_selection_failed'] . " " . $_lang['setup_database_selection_failed_note'] . PHP_EOL; |
|
489 | + echo $_lang['setup_database_selection_failed']." ".$_lang['setup_database_selection_failed_note'].PHP_EOL; |
|
490 | 490 | $create = true; |
491 | 491 | } else { |
492 | 492 | if (function_exists('mysqli_set_charset')) { |
493 | 493 | mysqli_set_charset($conn, $database_charset); |
494 | 494 | } |
495 | 495 | mysqli_query($conn, "{$database_connection_method} {$database_connection_charset}"); |
496 | - echo $_lang['ok'] . PHP_EOL; |
|
496 | + echo $_lang['ok'].PHP_EOL; |
|
497 | 497 | } |
498 | 498 | |
499 | 499 | // try to create the database |
500 | 500 | if ($create) { |
501 | - echo $_lang['setup_database_creation'] . str_replace("`", "", $dbase) . "`: "; |
|
501 | + echo $_lang['setup_database_creation'].str_replace("`", "", $dbase)."`: "; |
|
502 | 502 | // if(!@mysqli_create_db(str_replace("`","",$dbase), $conn)) { |
503 | 503 | if (!mysqli_query($conn, |
504 | 504 | "CREATE DATABASE $dbase DEFAULT CHARACTER SET $database_charset COLLATE $database_collation")) { |
505 | - echo $_lang['setup_database_creation_failed'] . " " . $_lang['setup_database_creation_failed_note'] . PHP_EOL; |
|
505 | + echo $_lang['setup_database_creation_failed']." ".$_lang['setup_database_creation_failed_note'].PHP_EOL; |
|
506 | 506 | $errors += 1; |
507 | 507 | |
508 | - echo 'database charset: ' . $database_charset . PHP_EOL; |
|
509 | - echo 'database collation: ' . $database_collation . PHP_EOL; |
|
508 | + echo 'database charset: '.$database_charset.PHP_EOL; |
|
509 | + echo 'database collation: '.$database_collation.PHP_EOL; |
|
510 | 510 | |
511 | - echo $_lang['setup_database_creation_failed_note2'] . PHP_EOL; |
|
511 | + echo $_lang['setup_database_creation_failed_note2'].PHP_EOL; |
|
512 | 512 | |
513 | 513 | die(); |
514 | 514 | |
515 | 515 | } else { |
516 | - echo $_lang['ok'] . PHP_EOL; |
|
516 | + echo $_lang['ok'].PHP_EOL; |
|
517 | 517 | } |
518 | 518 | } |
519 | 519 | |
520 | 520 | // check table prefix |
521 | 521 | if ($installMode == 0) { |
522 | - echo $_lang['checking_table_prefix'] . $table_prefix . "`: "; |
|
523 | - if (@ $rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
524 | - echo $_lang['failed'] . " " . $_lang['table_prefix_already_inuse'] . PHP_EOL; |
|
522 | + echo $_lang['checking_table_prefix'].$table_prefix."`: "; |
|
523 | + if (@ $rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
524 | + echo $_lang['failed']." ".$_lang['table_prefix_already_inuse'].PHP_EOL; |
|
525 | 525 | $errors += 1; |
526 | - echo $_lang['table_prefix_already_inuse_note'] . PHP_EOL; |
|
526 | + echo $_lang['table_prefix_already_inuse_note'].PHP_EOL; |
|
527 | 527 | |
528 | 528 | return; |
529 | 529 | } else { |
530 | - echo $_lang['ok'] . PHP_EOL; |
|
530 | + echo $_lang['ok'].PHP_EOL; |
|
531 | 531 | } |
532 | 532 | } |
533 | 533 | |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | $auto_template_logic = 'parent'; |
570 | 570 | if ($installMode != 0) { |
571 | 571 | $rs = mysqli_query($conn, |
572 | - "SELECT properties, disabled FROM $dbase.`" . $table_prefix . "site_plugins` WHERE name='Inherit Parent Template'"); |
|
572 | + "SELECT properties, disabled FROM $dbase.`".$table_prefix."site_plugins` WHERE name='Inherit Parent Template'"); |
|
573 | 573 | $row = mysqli_fetch_row($rs); |
574 | 574 | if (!$row) { |
575 | 575 | // not installed |
@@ -593,12 +593,12 @@ discard block |
||
593 | 593 | |
594 | 594 | // open db connection |
595 | 595 | $setupPath = realpath(__DIR__); |
596 | -$chunkPath = $path . 'assets/chunks'; |
|
597 | -$snippetPath = $path . 'assets/snippets'; |
|
598 | -$pluginPath = $path . 'assets/plugins'; |
|
599 | -$modulePath = $path . 'assets/modules'; |
|
600 | -$templatePath = $path . 'assets/templates'; |
|
601 | -$tvPath = $path . 'assets/tvs'; |
|
596 | +$chunkPath = $path.'assets/chunks'; |
|
597 | +$snippetPath = $path.'assets/snippets'; |
|
598 | +$pluginPath = $path.'assets/plugins'; |
|
599 | +$modulePath = $path.'assets/modules'; |
|
600 | +$templatePath = $path.'assets/templates'; |
|
601 | +$tvPath = $path.'assets/tvs'; |
|
602 | 602 | |
603 | 603 | // setup Template template files - array : name, description, type - 0:file or 1:content, parameters, category |
604 | 604 | $mt = &$moduleTemplates; |
@@ -611,8 +611,7 @@ discard block |
||
611 | 611 | $params = parse_docblock($templatePath, $tplfile); |
612 | 612 | if (is_array($params) && (count($params) > 0)) { |
613 | 613 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
614 | - $mt[] = array |
|
615 | - ( |
|
614 | + $mt[] = array( |
|
616 | 615 | $params['name'], |
617 | 616 | $description, |
618 | 617 | // Don't think this is gonna be used ... but adding it just in case 'type' |
@@ -732,7 +731,7 @@ discard block |
||
732 | 731 | $params['modx_category'], |
733 | 732 | $params['legacy_names'], |
734 | 733 | array_key_exists('installset', $params) ? preg_split("/\s*,\s*/", $params['installset']) : false, |
735 | - (int)$params['disabled'] |
|
734 | + (int) $params['disabled'] |
|
736 | 735 | ); |
737 | 736 | } |
738 | 737 | } |
@@ -757,12 +756,12 @@ discard block |
||
757 | 756 | "$modulePath/{$params['filename']}", |
758 | 757 | $params['properties'], |
759 | 758 | $params['guid'], |
760 | - (int)$params['shareparams'], |
|
759 | + (int) $params['shareparams'], |
|
761 | 760 | $params['modx_category'], |
762 | 761 | array_key_exists('installset', $params) ? preg_split("/\s*,\s*/", $params['installset']) : false |
763 | 762 | ); |
764 | 763 | } |
765 | - if ((int)$params['shareparams'] || !empty($params['dependencies'])) { |
|
764 | + if ((int) $params['shareparams'] || !empty($params['dependencies'])) { |
|
766 | 765 | $dependencies = explode(',', $params['dependencies']); |
767 | 766 | foreach ($dependencies as $dependency) { |
768 | 767 | $dependency = explode(':', $dependency); |
@@ -833,7 +832,7 @@ discard block |
||
833 | 832 | // setup callback function |
834 | 833 | $callBackFnc = "clean_up"; |
835 | 834 | |
836 | -include $path . "src/sqlParser.class.php"; |
|
835 | +include $path."src/sqlParser.class.php"; |
|
837 | 836 | $sqlParser = new SqlParser($database_server, $database_user, $database_password, str_replace("`", "", $dbase), |
838 | 837 | $table_prefix, $adminname, $adminemail, $adminpass, $database_connection_charset, $managerlanguage, |
839 | 838 | $database_connection_method, $auto_template_logic); |
@@ -854,21 +853,21 @@ discard block |
||
854 | 853 | // display database results |
855 | 854 | if ($sqlParser->installFailed == true) { |
856 | 855 | $errors += 1; |
857 | - echo $_lang['database_alerts'] . PHP_EOL; |
|
858 | - echo $_lang['setup_couldnt_install'] . PHP_EOL; |
|
859 | - echo $_lang['installation_error_occured'] . PHP_EOL; |
|
856 | + echo $_lang['database_alerts'].PHP_EOL; |
|
857 | + echo $_lang['setup_couldnt_install'].PHP_EOL; |
|
858 | + echo $_lang['installation_error_occured'].PHP_EOL; |
|
860 | 859 | for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) { |
861 | - echo $sqlParser->mysqlErrors[$i]["error"] . " " . $_lang['during_execution_of_sql'] . " " . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . PHP_EOL; |
|
860 | + echo $sqlParser->mysqlErrors[$i]["error"]." ".$_lang['during_execution_of_sql']." ".strip_tags($sqlParser->mysqlErrors[$i]["sql"]).PHP_EOL; |
|
862 | 861 | } |
863 | - echo $_lang['some_tables_not_updated'] . PHP_EOL; |
|
862 | + echo $_lang['some_tables_not_updated'].PHP_EOL; |
|
864 | 863 | die(); |
865 | 864 | } else { |
866 | - echo $_lang['ok'] . PHP_EOL; |
|
865 | + echo $_lang['ok'].PHP_EOL; |
|
867 | 866 | } |
868 | 867 | } |
869 | 868 | |
870 | 869 | // custom or not |
871 | -if (file_exists($path . "../assets/cache/siteManager.php")) { |
|
870 | +if (file_exists($path."../assets/cache/siteManager.php")) { |
|
872 | 871 | $mgrdir = 'include_once(__DIR__."/../../assets/cache/siteManager.php");'; |
873 | 872 | } else { |
874 | 873 | $mgrdir = 'define(\'MGR_DIR\', \'manager\');'; |
@@ -888,10 +887,10 @@ discard block |
||
888 | 887 | $confph['lastInstallTime'] = time(); |
889 | 888 | $confph['site_sessionname'] = $site_sessionname; |
890 | 889 | |
891 | -$configString = file_get_contents($path . 'stubs/config.tpl'); |
|
890 | +$configString = file_get_contents($path.'stubs/config.tpl'); |
|
892 | 891 | $configString = parse($configString, $confph); |
893 | 892 | |
894 | -$filename = $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
893 | +$filename = $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
895 | 894 | $configFileFailed = false; |
896 | 895 | if (@ !$handle = fopen($filename, 'w')) { |
897 | 896 | $configFileFailed = true; |
@@ -907,38 +906,38 @@ discard block |
||
907 | 906 | $chmodSuccess = @chmod($filename, 0404); |
908 | 907 | |
909 | 908 | if ($configFileFailed == true) { |
910 | - echo $_lang['failed'] . PHP_EOL; |
|
909 | + echo $_lang['failed'].PHP_EOL; |
|
911 | 910 | $errors += 1; |
912 | 911 | |
913 | - echo $_lang['cant_write_config_file'] . ' ' . MGR_DIR . '/includes/config.inc.php' . PHP_EOL; |
|
914 | - echo ' ' . PHP_EOL; |
|
915 | - echo ' ' . PHP_EOL; |
|
912 | + echo $_lang['cant_write_config_file'].' '.MGR_DIR.'/includes/config.inc.php'.PHP_EOL; |
|
913 | + echo ' '.PHP_EOL; |
|
914 | + echo ' '.PHP_EOL; |
|
916 | 915 | echo $configString; |
917 | - echo ' ' . PHP_EOL; |
|
918 | - echo ' ' . PHP_EOL; |
|
919 | - echo $_lang['cant_write_config_file_note'] . PHP_EOL; |
|
916 | + echo ' '.PHP_EOL; |
|
917 | + echo ' '.PHP_EOL; |
|
918 | + echo $_lang['cant_write_config_file_note'].PHP_EOL; |
|
920 | 919 | die(); |
921 | 920 | |
922 | 921 | } else { |
923 | - echo $_lang['ok'] . PHP_EOL; |
|
922 | + echo $_lang['ok'].PHP_EOL; |
|
924 | 923 | } |
925 | 924 | |
926 | 925 | // generate new site_id and set manager theme to default |
927 | 926 | if ($installMode == 0) { |
928 | 927 | $siteid = uniqid(''); |
929 | 928 | mysqli_query($sqlParser->conn, |
930 | - "REPLACE INTO $dbase.`" . $table_prefix . "system_settings` (setting_name,setting_value) VALUES('site_id','$siteid'),('manager_theme','default')"); |
|
929 | + "REPLACE INTO $dbase.`".$table_prefix."system_settings` (setting_name,setting_value) VALUES('site_id','$siteid'),('manager_theme','default')"); |
|
931 | 930 | } else { |
932 | 931 | // update site_id if missing |
933 | 932 | $ds = mysqli_query($sqlParser->conn, |
934 | - "SELECT setting_name,setting_value FROM $dbase.`" . $table_prefix . "system_settings` WHERE setting_name='site_id'"); |
|
933 | + "SELECT setting_name,setting_value FROM $dbase.`".$table_prefix."system_settings` WHERE setting_name='site_id'"); |
|
935 | 934 | if ($ds) { |
936 | 935 | $r = mysqli_fetch_assoc($ds); |
937 | 936 | $siteid = $r['setting_value']; |
938 | 937 | if ($siteid == '' || $siteid = 'MzGeQ2faT4Dw06+U49x3') { |
939 | 938 | $siteid = uniqid(''); |
940 | 939 | mysqli_query($sqlParser->conn, |
941 | - "REPLACE INTO $dbase.`" . $table_prefix . "system_settings` (setting_name,setting_value) VALUES('site_id','$siteid')"); |
|
940 | + "REPLACE INTO $dbase.`".$table_prefix."system_settings` (setting_name,setting_value) VALUES('site_id','$siteid')"); |
|
942 | 941 | } |
943 | 942 | } |
944 | 943 | } |
@@ -950,25 +949,25 @@ discard block |
||
950 | 949 | // display database results |
951 | 950 | if ($sqlParser->installFailed == true) { |
952 | 951 | $errors += 1; |
953 | - echo $_lang['database_alerts'] . PHP_EOL; |
|
954 | - echo $_lang['setup_couldnt_install'] . PHP_EOL; |
|
955 | - echo $_lang['installation_error_occured'] . PHP_EOL . PHP_EOL; |
|
952 | + echo $_lang['database_alerts'].PHP_EOL; |
|
953 | + echo $_lang['setup_couldnt_install'].PHP_EOL; |
|
954 | + echo $_lang['installation_error_occured'].PHP_EOL.PHP_EOL; |
|
956 | 955 | /* |
957 | 956 | for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) { |
958 | 957 | echo "<em>" . $sqlParser->mysqlErrors[$i]["error"] . "</em>" . $_lang['during_execution_of_sql'] . "<span class='mono'>" . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . "</span>.<hr />"; |
959 | 958 | } |
960 | 959 | echo "</p>";*/ |
961 | - echo $_lang['some_tables_not_updated'] . PHP_EOL; |
|
960 | + echo $_lang['some_tables_not_updated'].PHP_EOL; |
|
962 | 961 | die(); |
963 | 962 | } else { |
964 | - echo $_lang['ok'] . PHP_EOL; |
|
963 | + echo $_lang['ok'].PHP_EOL; |
|
965 | 964 | } |
966 | 965 | } |
967 | 966 | |
968 | 967 | // Install Templates |
969 | 968 | $moduleTemplate = $mt; |
970 | 969 | if (!empty($moduleTemplate) || $installData) { |
971 | - echo PHP_EOL . $_lang['templates'] . ":" . PHP_EOL; |
|
970 | + echo PHP_EOL.$_lang['templates'].":".PHP_EOL; |
|
972 | 971 | //$selTemplates = $_POST['template']; |
973 | 972 | foreach ($moduleTemplates as $k => $moduleTemplate) { |
974 | 973 | $installSample = in_array('sample', $moduleTemplate[6]) && $installData == 1; |
@@ -980,7 +979,7 @@ discard block |
||
980 | 979 | $filecontent = $moduleTemplate[3]; |
981 | 980 | $save_sql_id_as = $moduleTemplate[7]; // Nessecary for demo-site |
982 | 981 | if (!file_exists($filecontent)) { |
983 | - echo " $name: " . $_lang['unable_install_template'] . " '$filecontent' " . $_lang['not_found'] . PHP_EOL; |
|
982 | + echo " $name: ".$_lang['unable_install_template']." '$filecontent' ".$_lang['not_found'].PHP_EOL; |
|
984 | 983 | } else { |
985 | 984 | // Create the category if it does not already exist |
986 | 985 | $category_id = getCreateDbCategory($category, $sqlParser); |
@@ -991,13 +990,13 @@ discard block |
||
991 | 990 | |
992 | 991 | // See if the template already exists |
993 | 992 | $rs = mysqli_query($sqlParser->conn, |
994 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_templates` WHERE templatename='$name'"); |
|
993 | + "SELECT * FROM $dbase.`".$table_prefix."site_templates` WHERE templatename='$name'"); |
|
995 | 994 | |
996 | 995 | if (mysqli_num_rows($rs)) { |
997 | 996 | if (!mysqli_query($sqlParser->conn, |
998 | - "UPDATE $dbase.`" . $table_prefix . "site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked' WHERE templatename='$name' LIMIT 1;")) { |
|
997 | + "UPDATE $dbase.`".$table_prefix."site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked' WHERE templatename='$name' LIMIT 1;")) { |
|
999 | 998 | $errors += 1; |
1000 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
999 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1001 | 1000 | |
1002 | 1001 | return; |
1003 | 1002 | } |
@@ -1005,23 +1004,23 @@ discard block |
||
1005 | 1004 | $sql_id = @mysqli_insert_id($sqlParser->conn); |
1006 | 1005 | if (!$sql_id) { |
1007 | 1006 | $idQuery = mysqli_fetch_assoc(mysqli_query($sqlParser->conn, |
1008 | - "SELECT id FROM $dbase.`" . $table_prefix . "site_templates` WHERE templatename='$name' LIMIT 1;")); |
|
1007 | + "SELECT id FROM $dbase.`".$table_prefix."site_templates` WHERE templatename='$name' LIMIT 1;")); |
|
1009 | 1008 | $sql_id = $idQuery['id']; |
1010 | 1009 | } |
1011 | 1010 | $custom_placeholders[$save_sql_id_as] = $sql_id; |
1012 | 1011 | } |
1013 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1012 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1014 | 1013 | } else { |
1015 | 1014 | if (!@ mysqli_query($sqlParser->conn, |
1016 | - "INSERT INTO $dbase.`" . $table_prefix . "site_templates` (templatename,description,content,category,locked) VALUES('$name','$desc','$template',$category_id,'$locked');")) { |
|
1015 | + "INSERT INTO $dbase.`".$table_prefix."site_templates` (templatename,description,content,category,locked) VALUES('$name','$desc','$template',$category_id,'$locked');")) { |
|
1017 | 1016 | $errors += 1; |
1018 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1017 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1019 | 1018 | die(); |
1020 | 1019 | } |
1021 | 1020 | if (!is_null($save_sql_id_as)) { |
1022 | 1021 | $custom_placeholders[$save_sql_id_as] = @mysqli_insert_id($sqlParser->conn); |
1023 | 1022 | } |
1024 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1023 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1025 | 1024 | } |
1026 | 1025 | } |
1027 | 1026 | } |
@@ -1031,7 +1030,7 @@ discard block |
||
1031 | 1030 | // Install Template Variables |
1032 | 1031 | $moduleTVs = $mtv; |
1033 | 1032 | if (is_array($moduleTVs) || $installData) { |
1034 | - echo PHP_EOL . $_lang['tvs'] . ': ' . PHP_EOL; |
|
1033 | + echo PHP_EOL.$_lang['tvs'].': '.PHP_EOL; |
|
1035 | 1034 | //$selTVs = $_POST['tv']; |
1036 | 1035 | foreach ($moduleTVs as $k => $moduleTV) { |
1037 | 1036 | $installSample = in_array('sample', $moduleTV[12]) && $installData == 1; |
@@ -1054,27 +1053,27 @@ discard block |
||
1054 | 1053 | $category = getCreateDbCategory($category, $sqlParser); |
1055 | 1054 | |
1056 | 1055 | $rs = mysqli_query($sqlParser->conn, |
1057 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_tmplvars` WHERE name='$name'"); |
|
1056 | + "SELECT * FROM $dbase.`".$table_prefix."site_tmplvars` WHERE name='$name'"); |
|
1058 | 1057 | if (mysqli_num_rows($rs)) { |
1059 | 1058 | $insert = true; |
1060 | 1059 | while ($row = mysqli_fetch_assoc($rs)) { |
1061 | 1060 | if (!mysqli_query($sqlParser->conn, |
1062 | - "UPDATE $dbase.`" . $table_prefix . "site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) { |
|
1063 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1061 | + "UPDATE $dbase.`".$table_prefix."site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) { |
|
1062 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1064 | 1063 | |
1065 | 1064 | return; |
1066 | 1065 | } |
1067 | 1066 | $insert = false; |
1068 | 1067 | } |
1069 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1068 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1070 | 1069 | } else { |
1071 | - $q = "INSERT INTO $dbase.`" . $table_prefix . "site_tmplvars` (type,name,caption,description,category,locked,elements,display,display_params,default_text) VALUES('$input_type','$name','$caption','$desc',$category,$locked,'$input_options','$output_widget','$output_widget_params','$input_default');"; |
|
1070 | + $q = "INSERT INTO $dbase.`".$table_prefix."site_tmplvars` (type,name,caption,description,category,locked,elements,display,display_params,default_text) VALUES('$input_type','$name','$caption','$desc',$category,$locked,'$input_options','$output_widget','$output_widget_params','$input_default');"; |
|
1072 | 1071 | if (!mysqli_query($sqlParser->conn, $q)) { |
1073 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1072 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1074 | 1073 | |
1075 | 1074 | return; |
1076 | 1075 | } |
1077 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1076 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1078 | 1077 | } |
1079 | 1078 | |
1080 | 1079 | // add template assignments |
@@ -1084,22 +1083,22 @@ discard block |
||
1084 | 1083 | |
1085 | 1084 | // remove existing tv -> template assignments |
1086 | 1085 | $ds = mysqli_query($sqlParser->conn, |
1087 | - "SELECT id FROM $dbase.`" . $table_prefix . "site_tmplvars` WHERE name='$name' AND description='$desc';"); |
|
1086 | + "SELECT id FROM $dbase.`".$table_prefix."site_tmplvars` WHERE name='$name' AND description='$desc';"); |
|
1088 | 1087 | $row = mysqli_fetch_assoc($ds); |
1089 | 1088 | $id = $row["id"]; |
1090 | 1089 | mysqli_query($sqlParser->conn, |
1091 | - 'DELETE FROM ' . $dbase . '.`' . $table_prefix . 'site_tmplvar_templates` WHERE tmplvarid = \'' . $id . '\''); |
|
1090 | + 'DELETE FROM '.$dbase.'.`'.$table_prefix.'site_tmplvar_templates` WHERE tmplvarid = \''.$id.'\''); |
|
1092 | 1091 | |
1093 | 1092 | // add tv -> template assignments |
1094 | 1093 | foreach ($assignments as $assignment) { |
1095 | 1094 | $template = mysqli_real_escape_string($conn, $assignment); |
1096 | 1095 | $ts = mysqli_query($sqlParser->conn, |
1097 | - "SELECT id FROM $dbase.`" . $table_prefix . "site_templates` WHERE templatename='$template';"); |
|
1096 | + "SELECT id FROM $dbase.`".$table_prefix."site_templates` WHERE templatename='$template';"); |
|
1098 | 1097 | if ($ds && $ts) { |
1099 | 1098 | $tRow = mysqli_fetch_assoc($ts); |
1100 | 1099 | $templateId = $tRow['id']; |
1101 | 1100 | mysqli_query($sqlParser->conn, |
1102 | - "INSERT INTO $dbase.`" . $table_prefix . "site_tmplvar_templates` (tmplvarid, templateid) VALUES($id, $templateId)"); |
|
1101 | + "INSERT INTO $dbase.`".$table_prefix."site_tmplvar_templates` (tmplvarid, templateid) VALUES($id, $templateId)"); |
|
1103 | 1102 | } |
1104 | 1103 | } |
1105 | 1104 | } |
@@ -1111,7 +1110,7 @@ discard block |
||
1111 | 1110 | $moduleChunks = $mc; |
1112 | 1111 | // Install Chunks |
1113 | 1112 | if (is_array($moduleChunks) || $installData) { |
1114 | - echo PHP_EOL . $_lang['chunks'] . ": " . PHP_EOL; |
|
1113 | + echo PHP_EOL.$_lang['chunks'].": ".PHP_EOL; |
|
1115 | 1114 | foreach ($moduleChunks as $k => $moduleChunk) { |
1116 | 1115 | $installSample = in_array('sample', $moduleChunk[5]) && $installData == 1; |
1117 | 1116 | $count_new_name = 0; |
@@ -1124,7 +1123,7 @@ discard block |
||
1124 | 1123 | $filecontent = $moduleChunk[2]; |
1125 | 1124 | |
1126 | 1125 | if (!file_exists($filecontent)) { |
1127 | - echo " $name: " . $_lang['unable_install_chunk'] . " '$filecontent' " . $_lang['not_found'] . PHP_EOL; |
|
1126 | + echo " $name: ".$_lang['unable_install_chunk']." '$filecontent' ".$_lang['not_found'].PHP_EOL; |
|
1128 | 1127 | } else { |
1129 | 1128 | |
1130 | 1129 | // Create the category if it does not already exist |
@@ -1133,36 +1132,36 @@ discard block |
||
1133 | 1132 | $chunk = preg_replace("/^.*?\/\*\*.*?\*\/\s+/s", '', file_get_contents($filecontent), 1); |
1134 | 1133 | $chunk = mysqli_real_escape_string($conn, $chunk); |
1135 | 1134 | $rs = mysqli_query($sqlParser->conn, |
1136 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_htmlsnippets` WHERE name='$name'"); |
|
1135 | + "SELECT * FROM $dbase.`".$table_prefix."site_htmlsnippets` WHERE name='$name'"); |
|
1137 | 1136 | $count_original_name = mysqli_num_rows($rs); |
1138 | 1137 | if ($overwrite == 'false') { |
1139 | - $newname = $name . '-' . str_replace('.', '_', $modx_version); |
|
1138 | + $newname = $name.'-'.str_replace('.', '_', $modx_version); |
|
1140 | 1139 | $rs = mysqli_query($sqlParser->conn, |
1141 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_htmlsnippets` WHERE name='$newname'"); |
|
1140 | + "SELECT * FROM $dbase.`".$table_prefix."site_htmlsnippets` WHERE name='$newname'"); |
|
1142 | 1141 | $count_new_name = mysqli_num_rows($rs); |
1143 | 1142 | } |
1144 | 1143 | $update = $count_original_name > 0 && $overwrite == 'true'; |
1145 | 1144 | if ($update) { |
1146 | 1145 | if (!mysqli_query($sqlParser->conn, |
1147 | - "UPDATE $dbase.`" . $table_prefix . "site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) { |
|
1146 | + "UPDATE $dbase.`".$table_prefix."site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) { |
|
1148 | 1147 | $errors += 1; |
1149 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1148 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1150 | 1149 | |
1151 | 1150 | return; |
1152 | 1151 | } |
1153 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1152 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1154 | 1153 | } elseif ($count_new_name == 0) { |
1155 | 1154 | if ($count_original_name > 0 && $overwrite == 'false') { |
1156 | 1155 | $name = $newname; |
1157 | 1156 | } |
1158 | 1157 | if (!mysqli_query($sqlParser->conn, |
1159 | - "INSERT INTO $dbase.`" . $table_prefix . "site_htmlsnippets` (name,description,snippet,category) VALUES('$name','$desc','$chunk',$category_id);")) { |
|
1158 | + "INSERT INTO $dbase.`".$table_prefix."site_htmlsnippets` (name,description,snippet,category) VALUES('$name','$desc','$chunk',$category_id);")) { |
|
1160 | 1159 | $errors += 1; |
1161 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1160 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1162 | 1161 | |
1163 | 1162 | return; |
1164 | 1163 | } |
1165 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1164 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1166 | 1165 | } |
1167 | 1166 | } |
1168 | 1167 | } |
@@ -1172,7 +1171,7 @@ discard block |
||
1172 | 1171 | // Install Modules |
1173 | 1172 | $moduleModules = $mm; |
1174 | 1173 | if (is_array($moduleModules) || $installData) { |
1175 | - echo PHP_EOL . $_lang['modules'] . ":" . PHP_EOL; |
|
1174 | + echo PHP_EOL.$_lang['modules'].":".PHP_EOL; |
|
1176 | 1175 | //$selModules = $_POST['module']; |
1177 | 1176 | foreach ($moduleModules as $k => $moduleModule) { |
1178 | 1177 | $installSample = in_array('sample', $moduleModule[7]) && $installData == 1; |
@@ -1185,7 +1184,7 @@ discard block |
||
1185 | 1184 | $shared = mysqli_real_escape_string($conn, $moduleModule[5]); |
1186 | 1185 | $category = mysqli_real_escape_string($conn, $moduleModule[6]); |
1187 | 1186 | if (!file_exists($filecontent)) { |
1188 | - echo " $name: " . $_lang['unable_install_module'] . " '$filecontent' " . $_lang['not_found'] . PHP_EOL; |
|
1187 | + echo " $name: ".$_lang['unable_install_module']." '$filecontent' ".$_lang['not_found'].PHP_EOL; |
|
1189 | 1188 | } else { |
1190 | 1189 | |
1191 | 1190 | // Create the category if it does not already exist |
@@ -1195,28 +1194,28 @@ discard block |
||
1195 | 1194 | // $module = removeDocblock($module, 'module'); // Modules have no fileBinding, keep docblock for info-tab |
1196 | 1195 | $module = mysqli_real_escape_string($conn, $module); |
1197 | 1196 | $rs = mysqli_query($sqlParser->conn, |
1198 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_modules` WHERE name='$name'"); |
|
1197 | + "SELECT * FROM $dbase.`".$table_prefix."site_modules` WHERE name='$name'"); |
|
1199 | 1198 | if (mysqli_num_rows($rs)) { |
1200 | 1199 | $row = mysqli_fetch_assoc($rs); |
1201 | 1200 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1202 | 1201 | if (!mysqli_query($sqlParser->conn, |
1203 | - "UPDATE $dbase.`" . $table_prefix . "site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) { |
|
1204 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1202 | + "UPDATE $dbase.`".$table_prefix."site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) { |
|
1203 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1205 | 1204 | |
1206 | 1205 | return; |
1207 | 1206 | } |
1208 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1207 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1209 | 1208 | } else { |
1210 | 1209 | if ($properties != null) { |
1211 | 1210 | $properties = mysqli_real_escape_string($conn, parseProperties($properties, true)); |
1212 | 1211 | } |
1213 | 1212 | if (!mysqli_query($sqlParser->conn, |
1214 | - "INSERT INTO $dbase.`" . $table_prefix . "site_modules` (name,description,modulecode,properties,guid,enable_sharedparams,category) VALUES('$name','$desc','$module','$properties','$guid','$shared', $category);")) { |
|
1215 | - echo "<p>" . mysqli_error($sqlParser->conn) . "</p>"; |
|
1213 | + "INSERT INTO $dbase.`".$table_prefix."site_modules` (name,description,modulecode,properties,guid,enable_sharedparams,category) VALUES('$name','$desc','$module','$properties','$guid','$shared', $category);")) { |
|
1214 | + echo "<p>".mysqli_error($sqlParser->conn)."</p>"; |
|
1216 | 1215 | |
1217 | 1216 | return; |
1218 | 1217 | } |
1219 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1218 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1220 | 1219 | } |
1221 | 1220 | } |
1222 | 1221 | } |
@@ -1226,7 +1225,7 @@ discard block |
||
1226 | 1225 | // Install Plugins |
1227 | 1226 | $modulePlugins = $mp; |
1228 | 1227 | if (is_array($modulePlugins) || $installData) { |
1229 | - echo PHP_EOL . $_lang['plugins'] . ":" . PHP_EOL; |
|
1228 | + echo PHP_EOL.$_lang['plugins'].":".PHP_EOL; |
|
1230 | 1229 | $selPlugs = $_POST['plugin']; |
1231 | 1230 | foreach ($modulePlugins as $k => $modulePlugin) { |
1232 | 1231 | //$installSample = in_array('sample', $modulePlugin[8]) && $installData == 1; |
@@ -1242,16 +1241,16 @@ discard block |
||
1242 | 1241 | $disabled = $modulePlugin[9]; |
1243 | 1242 | if (array_key_exists(7, $modulePlugin)) { |
1244 | 1243 | // parse comma-separated legacy names and prepare them for sql IN clause |
1245 | - $leg_names = "'" . implode("','", |
|
1246 | - preg_split('/\s*,\s*/', mysqli_real_escape_string($conn, $modulePlugin[7]))) . "'"; |
|
1244 | + $leg_names = "'".implode("','", |
|
1245 | + preg_split('/\s*,\s*/', mysqli_real_escape_string($conn, $modulePlugin[7])))."'"; |
|
1247 | 1246 | } |
1248 | 1247 | if (!file_exists($filecontent)) { |
1249 | - echo " $name: " . $_lang['unable_install_plugin'] . " '$filecontent' " . $_lang['not_found'] . PHP_EOL; |
|
1248 | + echo " $name: ".$_lang['unable_install_plugin']." '$filecontent' ".$_lang['not_found'].PHP_EOL; |
|
1250 | 1249 | } else { |
1251 | 1250 | |
1252 | 1251 | // disable legacy versions based on legacy_names provided |
1253 | 1252 | if (!empty($leg_names)) { |
1254 | - $update_query = "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE name IN ($leg_names);"; |
|
1253 | + $update_query = "UPDATE $dbase.`".$table_prefix."site_plugins` SET disabled='1' WHERE name IN ($leg_names);"; |
|
1255 | 1254 | $rs = mysqli_query($sqlParser->conn, $update_query); |
1256 | 1255 | } |
1257 | 1256 | |
@@ -1262,23 +1261,23 @@ discard block |
||
1262 | 1261 | $plugin = removeDocblock($plugin, 'plugin'); |
1263 | 1262 | $plugin = mysqli_real_escape_string($conn, $plugin); |
1264 | 1263 | $rs = mysqli_query($sqlParser->conn, |
1265 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_plugins` WHERE name='$name'"); |
|
1264 | + "SELECT * FROM $dbase.`".$table_prefix."site_plugins` WHERE name='$name'"); |
|
1266 | 1265 | if (mysqli_num_rows($rs)) { |
1267 | 1266 | $insert = true; |
1268 | 1267 | while ($row = mysqli_fetch_assoc($rs)) { |
1269 | 1268 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1270 | 1269 | if ($row['description'] == $desc) { |
1271 | 1270 | if (!mysqli_query($sqlParser->conn, |
1272 | - "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) { |
|
1273 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1271 | + "UPDATE $dbase.`".$table_prefix."site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) { |
|
1272 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1274 | 1273 | |
1275 | 1274 | return; |
1276 | 1275 | } |
1277 | 1276 | $insert = false; |
1278 | 1277 | } else { |
1279 | 1278 | if (!mysqli_query($sqlParser->conn, |
1280 | - "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE id={$row['id']};")) { |
|
1281 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1279 | + "UPDATE $dbase.`".$table_prefix."site_plugins` SET disabled='1' WHERE id={$row['id']};")) { |
|
1280 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1282 | 1281 | |
1283 | 1282 | return; |
1284 | 1283 | } |
@@ -1287,39 +1286,39 @@ discard block |
||
1287 | 1286 | if ($insert === true) { |
1288 | 1287 | $properties = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1289 | 1288 | if (!mysqli_query($sqlParser->conn, |
1290 | - "INSERT INTO $dbase.`" . $table_prefix . "site_plugins` (name,description,plugincode,properties,moduleguid,disabled,category) VALUES('$name','$desc','$plugin','$properties','$guid','0',$category);")) { |
|
1291 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1289 | + "INSERT INTO $dbase.`".$table_prefix."site_plugins` (name,description,plugincode,properties,moduleguid,disabled,category) VALUES('$name','$desc','$plugin','$properties','$guid','0',$category);")) { |
|
1290 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1292 | 1291 | |
1293 | 1292 | return; |
1294 | 1293 | } |
1295 | 1294 | } |
1296 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1295 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1297 | 1296 | } else { |
1298 | 1297 | if ($properties != null) { |
1299 | 1298 | $properties = mysqli_real_escape_string($conn, parseProperties($properties, true)); |
1300 | 1299 | } |
1301 | 1300 | if (!mysqli_query($sqlParser->conn, |
1302 | - "INSERT INTO $dbase.`" . $table_prefix . "site_plugins` (name,description,plugincode,properties,moduleguid,category,disabled) VALUES('$name','$desc','$plugin','$properties','$guid',$category,$disabled);")) { |
|
1303 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1301 | + "INSERT INTO $dbase.`".$table_prefix."site_plugins` (name,description,plugincode,properties,moduleguid,category,disabled) VALUES('$name','$desc','$plugin','$properties','$guid',$category,$disabled);")) { |
|
1302 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1304 | 1303 | |
1305 | 1304 | return; |
1306 | 1305 | } |
1307 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1306 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1308 | 1307 | } |
1309 | 1308 | // add system events |
1310 | 1309 | if (count($events) > 0) { |
1311 | 1310 | $ds = mysqli_query($sqlParser->conn, |
1312 | - "SELECT id FROM $dbase.`" . $table_prefix . "site_plugins` WHERE name='$name' AND description='$desc';"); |
|
1311 | + "SELECT id FROM $dbase.`".$table_prefix."site_plugins` WHERE name='$name' AND description='$desc';"); |
|
1313 | 1312 | if ($ds) { |
1314 | 1313 | $row = mysqli_fetch_assoc($ds); |
1315 | 1314 | $id = $row["id"]; |
1316 | 1315 | // remove existing events |
1317 | 1316 | mysqli_query($sqlParser->conn, |
1318 | - 'DELETE FROM ' . $dbase . '.`' . $table_prefix . 'site_plugin_events` WHERE pluginid = \'' . $id . '\''); |
|
1317 | + 'DELETE FROM '.$dbase.'.`'.$table_prefix.'site_plugin_events` WHERE pluginid = \''.$id.'\''); |
|
1319 | 1318 | // add new events |
1320 | 1319 | mysqli_query($sqlParser->conn, |
1321 | - "INSERT INTO $dbase.`" . $table_prefix . "site_plugin_events` (pluginid, evtid) SELECT '$id' as 'pluginid',se.id as 'evtid' FROM $dbase.`" . $table_prefix . "system_eventnames` se WHERE name IN ('" . implode("','", |
|
1322 | - $events) . "')"); |
|
1320 | + "INSERT INTO $dbase.`".$table_prefix."site_plugin_events` (pluginid, evtid) SELECT '$id' as 'pluginid',se.id as 'evtid' FROM $dbase.`".$table_prefix."system_eventnames` se WHERE name IN ('".implode("','", |
|
1321 | + $events)."')"); |
|
1323 | 1322 | } |
1324 | 1323 | } |
1325 | 1324 | } |
@@ -1330,7 +1329,7 @@ discard block |
||
1330 | 1329 | // Install Snippets |
1331 | 1330 | $moduleSnippet = $ms; |
1332 | 1331 | if (is_array($moduleSnippet) || $installData) { |
1333 | - echo PHP_EOL . $_lang['snippets'] . ":" . PHP_EOL; |
|
1332 | + echo PHP_EOL.$_lang['snippets'].":".PHP_EOL; |
|
1334 | 1333 | //$selSnips = $_POST['snippet']; |
1335 | 1334 | foreach ($moduleSnippets as $k => $moduleSnippet) { |
1336 | 1335 | $installSample = in_array('sample', $moduleSnippet[5]) && $installData == 1; |
@@ -1341,7 +1340,7 @@ discard block |
||
1341 | 1340 | $properties = $moduleSnippet[3]; |
1342 | 1341 | $category = mysqli_real_escape_string($conn, $moduleSnippet[4]); |
1343 | 1342 | if (!file_exists($filecontent)) { |
1344 | - echo " $name: " . $_lang['unable_install_snippet'] . " '$filecontent' " . $_lang['not_found'] . PHP_EOL; |
|
1343 | + echo " $name: ".$_lang['unable_install_snippet']." '$filecontent' ".$_lang['not_found'].PHP_EOL; |
|
1345 | 1344 | } else { |
1346 | 1345 | |
1347 | 1346 | // Create the category if it does not already exist |
@@ -1351,28 +1350,28 @@ discard block |
||
1351 | 1350 | $snippet = removeDocblock($snippet, 'snippet'); |
1352 | 1351 | $snippet = mysqli_real_escape_string($conn, $snippet); |
1353 | 1352 | $rs = mysqli_query($sqlParser->conn, |
1354 | - "SELECT * FROM $dbase.`" . $table_prefix . "site_snippets` WHERE name='$name'"); |
|
1353 | + "SELECT * FROM $dbase.`".$table_prefix."site_snippets` WHERE name='$name'"); |
|
1355 | 1354 | if (mysqli_num_rows($rs)) { |
1356 | 1355 | $row = mysqli_fetch_assoc($rs); |
1357 | 1356 | $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties'])); |
1358 | 1357 | if (!mysqli_query($sqlParser->conn, |
1359 | - "UPDATE $dbase.`" . $table_prefix . "site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) { |
|
1360 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1358 | + "UPDATE $dbase.`".$table_prefix."site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) { |
|
1359 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1361 | 1360 | |
1362 | 1361 | return; |
1363 | 1362 | } |
1364 | - echo " $name: " . $_lang['upgraded'] . PHP_EOL; |
|
1363 | + echo " $name: ".$_lang['upgraded'].PHP_EOL; |
|
1365 | 1364 | } else { |
1366 | 1365 | if ($properties != null) { |
1367 | 1366 | $properties = mysqli_real_escape_string($conn, parseProperties($properties, true)); |
1368 | 1367 | } |
1369 | 1368 | if (!mysqli_query($sqlParser->conn, |
1370 | - "INSERT INTO $dbase.`" . $table_prefix . "site_snippets` (name,description,snippet,properties,category) VALUES('$name','$desc','$snippet','$properties',$category);")) { |
|
1371 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1369 | + "INSERT INTO $dbase.`".$table_prefix."site_snippets` (name,description,snippet,properties,category) VALUES('$name','$desc','$snippet','$properties',$category);")) { |
|
1370 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1372 | 1371 | |
1373 | 1372 | return; |
1374 | 1373 | } |
1375 | - echo " $name: " . $_lang['installed'] . PHP_EOL; |
|
1374 | + echo " $name: ".$_lang['installed'].PHP_EOL; |
|
1376 | 1375 | } |
1377 | 1376 | } |
1378 | 1377 | } |
@@ -1381,19 +1380,19 @@ discard block |
||
1381 | 1380 | |
1382 | 1381 | // Install demo-site |
1383 | 1382 | if ($installData && $moduleSQLDataFile) { |
1384 | - echo PHP_EOL . $_lang['installing_demo_site']; |
|
1383 | + echo PHP_EOL.$_lang['installing_demo_site']; |
|
1385 | 1384 | $sqlParser->process($moduleSQLDataFile); |
1386 | 1385 | // display database results |
1387 | 1386 | if ($sqlParser->installFailed == true) { |
1388 | 1387 | $errors += 1; |
1389 | - echo $_lang['database_alerts'] . PHP_EOL; |
|
1390 | - echo $_lang['setup_couldnt_install'] . PHP_EOL; |
|
1391 | - echo $_lang['installation_error_occured'] . PHP_EOL . PHP_EOL; |
|
1388 | + echo $_lang['database_alerts'].PHP_EOL; |
|
1389 | + echo $_lang['setup_couldnt_install'].PHP_EOL; |
|
1390 | + echo $_lang['installation_error_occured'].PHP_EOL.PHP_EOL; |
|
1392 | 1391 | for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) { |
1393 | - echo $sqlParser->mysqlErrors[$i]["error"] . " " . $_lang['during_execution_of_sql'] . " " . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . PHP_EOL; |
|
1392 | + echo $sqlParser->mysqlErrors[$i]["error"]." ".$_lang['during_execution_of_sql']." ".strip_tags($sqlParser->mysqlErrors[$i]["sql"]).PHP_EOL; |
|
1394 | 1393 | } |
1395 | 1394 | |
1396 | - echo $_lang['some_tables_not_updated'] . PHP_EOL; |
|
1395 | + echo $_lang['some_tables_not_updated'].PHP_EOL; |
|
1397 | 1396 | |
1398 | 1397 | return; |
1399 | 1398 | } else { |
@@ -1405,7 +1404,7 @@ discard block |
||
1405 | 1404 | $sql = sprintf('UPDATE `%ssite_content` SET template=%s WHERE template=4', $sqlParser->prefix, $row['id']); |
1406 | 1405 | mysqli_query($sqlParser->conn, $sql); |
1407 | 1406 | } |
1408 | - echo $_lang['ok'] . PHP_EOL; |
|
1407 | + echo $_lang['ok'].PHP_EOL; |
|
1409 | 1408 | } |
1410 | 1409 | } |
1411 | 1410 | |
@@ -1413,9 +1412,9 @@ discard block |
||
1413 | 1412 | $moduleDependencies = $mdp; |
1414 | 1413 | foreach ($moduleDependencies as $dependency) { |
1415 | 1414 | $ds = mysqli_query($sqlParser->conn, |
1416 | - 'SELECT id, guid FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_modules` WHERE name="' . $dependency['module'] . '"'); |
|
1415 | + 'SELECT id, guid FROM '.$dbase.'`'.$sqlParser->prefix.'site_modules` WHERE name="'.$dependency['module'].'"'); |
|
1417 | 1416 | if (!$ds) { |
1418 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1417 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1419 | 1418 | |
1420 | 1419 | return; |
1421 | 1420 | } else { |
@@ -1425,9 +1424,9 @@ discard block |
||
1425 | 1424 | } |
1426 | 1425 | // get extra id |
1427 | 1426 | $ds = mysqli_query($sqlParser->conn, |
1428 | - 'SELECT id FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` WHERE ' . $dependency['column'] . '="' . $dependency['name'] . '"'); |
|
1427 | + 'SELECT id FROM '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` WHERE '.$dependency['column'].'="'.$dependency['name'].'"'); |
|
1429 | 1428 | if (!$ds) { |
1430 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1429 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1431 | 1430 | |
1432 | 1431 | return; |
1433 | 1432 | } else { |
@@ -1436,34 +1435,34 @@ discard block |
||
1436 | 1435 | } |
1437 | 1436 | // setup extra as module dependency |
1438 | 1437 | $ds = mysqli_query($sqlParser->conn, |
1439 | - 'SELECT module FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` WHERE module=' . $moduleId . ' AND resource=' . $extraId . ' AND type=' . $dependency['type'] . ' LIMIT 1'); |
|
1438 | + 'SELECT module FROM '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` WHERE module='.$moduleId.' AND resource='.$extraId.' AND type='.$dependency['type'].' LIMIT 1'); |
|
1440 | 1439 | if (!$ds) { |
1441 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1440 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1442 | 1441 | |
1443 | 1442 | return; |
1444 | 1443 | } else { |
1445 | 1444 | if (mysqli_num_rows($ds) === 0) { |
1446 | 1445 | mysqli_query($sqlParser->conn, |
1447 | - 'INSERT INTO ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` (module, resource, type) VALUES(' . $moduleId . ',' . $extraId . ',' . $dependency['type'] . ')'); |
|
1448 | - echo $dependency['module'] . ' Module: ' . $_lang['depedency_create'] . PHP_EOL; |
|
1446 | + 'INSERT INTO '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` (module, resource, type) VALUES('.$moduleId.','.$extraId.','.$dependency['type'].')'); |
|
1447 | + echo $dependency['module'].' Module: '.$_lang['depedency_create'].PHP_EOL; |
|
1449 | 1448 | } else { |
1450 | 1449 | mysqli_query($sqlParser->conn, |
1451 | - 'UPDATE ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` SET module = ' . $moduleId . ', resource = ' . $extraId . ', type = ' . $dependency['type'] . ' WHERE module=' . $moduleId . ' AND resource=' . $extraId . ' AND type=' . $dependency['type']); |
|
1452 | - echo $dependency['module'] . ' Module: ' . $_lang['depedency_update'] . PHP_EOL; |
|
1450 | + 'UPDATE '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` SET module = '.$moduleId.', resource = '.$extraId.', type = '.$dependency['type'].' WHERE module='.$moduleId.' AND resource='.$extraId.' AND type='.$dependency['type']); |
|
1451 | + echo $dependency['module'].' Module: '.$_lang['depedency_update'].PHP_EOL; |
|
1453 | 1452 | } |
1454 | 1453 | if ($dependency['type'] == 30 || $dependency['type'] == 40) { |
1455 | 1454 | // set extra guid for plugins and snippets |
1456 | 1455 | $ds = mysqli_query($sqlParser->conn, |
1457 | - 'SELECT id FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` WHERE id=' . $extraId . ' LIMIT 1'); |
|
1456 | + 'SELECT id FROM '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` WHERE id='.$extraId.' LIMIT 1'); |
|
1458 | 1457 | if (!$ds) { |
1459 | - echo mysqli_error($sqlParser->conn) . PHP_EOL; |
|
1458 | + echo mysqli_error($sqlParser->conn).PHP_EOL; |
|
1460 | 1459 | |
1461 | 1460 | return; |
1462 | 1461 | } else { |
1463 | 1462 | if (mysqli_num_rows($ds) != 0) { |
1464 | 1463 | mysqli_query($sqlParser->conn, |
1465 | - 'UPDATE ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` SET moduleguid = ' . $moduleGuid . ' WHERE id=' . $extraId); |
|
1466 | - echo $dependency['name'] . ': ' . $_lang['guid_set'] . PHP_EOL; |
|
1464 | + 'UPDATE '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` SET moduleguid = '.$moduleGuid.' WHERE id='.$extraId); |
|
1465 | + echo $dependency['name'].': '.$_lang['guid_set'].PHP_EOL; |
|
1467 | 1466 | } |
1468 | 1467 | } |
1469 | 1468 | } |
@@ -1472,58 +1471,58 @@ discard block |
||
1472 | 1471 | |
1473 | 1472 | // call back function |
1474 | 1473 | if ($callBackFnc != "") { |
1475 | - $callBackFnc ($sqlParser); |
|
1474 | + $callBackFnc($sqlParser); |
|
1476 | 1475 | } |
1477 | 1476 | |
1478 | 1477 | // Setup the MODX API -- needed for the cache processor |
1479 | 1478 | if (!defined('MODX_MANAGER_PATH')) { |
1480 | - define('MODX_MANAGER_PATH', $base_path . MGR_DIR . '/'); |
|
1479 | + define('MODX_MANAGER_PATH', $base_path.MGR_DIR.'/'); |
|
1481 | 1480 | } |
1482 | 1481 | $database_type = 'mysqli'; |
1483 | 1482 | // initiate a new document parser |
1484 | -include_once($path . '../' . MGR_DIR . '/includes/document.parser.class.inc.php'); |
|
1483 | +include_once($path.'../'.MGR_DIR.'/includes/document.parser.class.inc.php'); |
|
1485 | 1484 | $modx = new DocumentParser; |
1486 | 1485 | $modx->db->connect(); |
1487 | 1486 | // always empty cache after install |
1488 | 1487 | $sync = new EvolutionCMS\Cache(); |
1489 | -$sync->setCachepath($path . "../assets/cache/"); |
|
1488 | +$sync->setCachepath($path."../assets/cache/"); |
|
1490 | 1489 | $sync->setReport(false); |
1491 | 1490 | $sync->emptyCache(); // first empty the cache |
1492 | 1491 | |
1493 | 1492 | // try to chmod the cache go-rwx (for suexeced php) |
1494 | -$chmodSuccess = @chmod($path . '../assets/cache/siteCache.idx.php', 0600); |
|
1495 | -$chmodSuccess = @chmod($path . '../assets/cache/sitePublishing.idx.php', 0600); |
|
1493 | +$chmodSuccess = @chmod($path.'../assets/cache/siteCache.idx.php', 0600); |
|
1494 | +$chmodSuccess = @chmod($path.'../assets/cache/sitePublishing.idx.php', 0600); |
|
1496 | 1495 | |
1497 | 1496 | // remove any locks on the manager functions so initial manager login is not blocked |
1498 | -mysqli_query($conn, "TRUNCATE TABLE `" . $table_prefix . "active_users`"); |
|
1497 | +mysqli_query($conn, "TRUNCATE TABLE `".$table_prefix."active_users`"); |
|
1499 | 1498 | |
1500 | 1499 | // close db connection |
1501 | 1500 | $sqlParser->close(); |
1502 | 1501 | |
1503 | 1502 | // andrazk 20070416 - release manager access |
1504 | -if (file_exists($path . '../assets/cache/installProc.inc.php')) { |
|
1505 | - @chmod($path . '../assets/cache/installProc.inc.php', 0755); |
|
1506 | - unlink($path . '../assets/cache/installProc.inc.php'); |
|
1503 | +if (file_exists($path.'../assets/cache/installProc.inc.php')) { |
|
1504 | + @chmod($path.'../assets/cache/installProc.inc.php', 0755); |
|
1505 | + unlink($path.'../assets/cache/installProc.inc.php'); |
|
1507 | 1506 | } |
1508 | 1507 | |
1509 | 1508 | // setup completed! |
1510 | -echo PHP_EOL . $_lang['installation_successful'] . PHP_EOL . PHP_EOL; |
|
1509 | +echo PHP_EOL.$_lang['installation_successful'].PHP_EOL.PHP_EOL; |
|
1511 | 1510 | //echo "<p>" . $_lang['to_log_into_content_manager'] . "</p>"; |
1512 | 1511 | if ($installMode == 0) { |
1513 | - echo strip_tags($_lang['installation_note']) . PHP_EOL; |
|
1512 | + echo strip_tags($_lang['installation_note']).PHP_EOL; |
|
1514 | 1513 | } else { |
1515 | - echo strip_tags($_lang['upgrade_note']) . PHP_EOL; |
|
1514 | + echo strip_tags($_lang['upgrade_note']).PHP_EOL; |
|
1516 | 1515 | } |
1517 | 1516 | |
1518 | 1517 | |
1519 | 1518 | if (empty($args)) { |
1520 | - echo PHP_EOL . 'Remove install folder?' . PHP_EOL; |
|
1519 | + echo PHP_EOL.'Remove install folder?'.PHP_EOL; |
|
1521 | 1520 | $removeInstall = readline("Type 'y' or 'n' to continue: "); |
1522 | 1521 | } |
1523 | 1522 | //remove installFolder |
1524 | 1523 | if ($removeInstall === 'y') { |
1525 | 1524 | removeFolder($path); |
1526 | - removeFolder($base_path . '.tx'); |
|
1527 | - unlink($base_path . 'README.md'); |
|
1528 | - echo 'Install folder deleted!' . PHP_EOL . PHP_EOL; |
|
1525 | + removeFolder($base_path.'.tx'); |
|
1526 | + unlink($base_path.'README.md'); |
|
1527 | + echo 'Install folder deleted!'.PHP_EOL.PHP_EOL; |
|
1529 | 1528 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (! function_exists('getLangOptions')) { |
|
2 | +if (!function_exists('getLangOptions')) { |
|
3 | 3 | /** |
4 | 4 | * @param string $install_language |
5 | 5 | * @return string |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | function getLangOptions($install_language = 'english') |
8 | 8 | { |
9 | 9 | $langs = array(); |
10 | - if ($handle = opendir(__DIR__ . '/lang/')) { |
|
10 | + if ($handle = opendir(__DIR__.'/lang/')) { |
|
11 | 11 | while (false !== ($file = readdir($handle))) { |
12 | 12 | if (strpos($file, '.')) { |
13 | 13 | $langs[] = str_replace('.inc.php', '', $file); |
@@ -21,14 +21,14 @@ discard block |
||
21 | 21 | $abrv_language = explode('-', $language); |
22 | 22 | $selected = ($language === $install_language) ? 'selected' : ''; |
23 | 23 | $_[] = sprintf('<option value="%s" %s>%s</option>', $language, $selected, |
24 | - ucwords($abrv_language[0])) . "\n"; |
|
24 | + ucwords($abrv_language[0]))."\n"; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | return implode("\n", $_); |
28 | 28 | } |
29 | 29 | } |
30 | 30 | |
31 | -if (! function_exists('install_sessionCheck')) { |
|
31 | +if (!function_exists('install_sessionCheck')) { |
|
32 | 32 | function install_sessionCheck() |
33 | 33 | { |
34 | 34 | global $_lang; |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | </head> |
51 | 51 | <body> |
52 | 52 | <div class="install"> |
53 | - <p>' . $_lang["session_problem"] . '</p> |
|
54 | - <p><a href="./">' . $_lang["session_problem_try_again"] . '</a></p> |
|
53 | + <p>' . $_lang["session_problem"].'</p> |
|
54 | + <p><a href="./">' . $_lang["session_problem_try_again"].'</a></p> |
|
55 | 55 | </div> |
56 | 56 | </body> |
57 | 57 | </html>'; |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | function parse($src, $ph, $left = '[+', $right = '+]') |
73 | 73 | { |
74 | 74 | foreach ($ph as $k => $v) { |
75 | - $k = $left . $k . $right; |
|
75 | + $k = $left.$k.$right; |
|
76 | 76 | $src = str_replace($k, $v, $src); |
77 | 77 | } |
78 | 78 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $ph['textdir'] = $modx_textdir ? ' id="rtl"' : ''; |
100 | 100 | $ph['help_link'] = $installmode == 0 ? $_lang['help_link_new'] : $_lang['help_link_upd']; |
101 | 101 | $ph['version'] = $moduleVersion; |
102 | - $ph['release_date'] = ($modx_textdir ? '‏' : '') . $modx_release_date; |
|
102 | + $ph['release_date'] = ($modx_textdir ? '‏' : '').$modx_release_date; |
|
103 | 103 | $ph['footer1'] = $_lang['modx_footer1']; |
104 | 104 | $ph['footer2'] = $_lang['modx_footer2']; |
105 | 105 | $ph['current_year'] = date('Y'); |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $manager_language = "english"; |
185 | 185 | } |
186 | 186 | $langs = array(); |
187 | - if ($handle = opendir(dirname(dirname(__DIR__)) . '/' . MGR_DIR . '/includes/lang')) { |
|
187 | + if ($handle = opendir(dirname(dirname(__DIR__)).'/'.MGR_DIR.'/includes/lang')) { |
|
188 | 188 | while (false !== ($file = readdir($handle))) { |
189 | 189 | if (strpos($file, '.inc.') !== false) { |
190 | 190 | $langs[] = $file; |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | $i++; |
251 | 251 | } |
252 | 252 | |
253 | - return (0 < count($_)) ? '<h3>[%templates%]</h3>' . implode("\n", $_) : ''; |
|
253 | + return (0 < count($_)) ? '<h3>[%templates%]</h3>'.implode("\n", $_) : ''; |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | $i++; |
281 | 281 | } |
282 | 282 | |
283 | - return (0 < count($_)) ? '<h3>[%tvs%]</h3>' . implode("\n", $_) : ''; |
|
283 | + return (0 < count($_)) ? '<h3>[%tvs%]</h3>'.implode("\n", $_) : ''; |
|
284 | 284 | } |
285 | 285 | } |
286 | 286 | |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | $i++; |
312 | 312 | } |
313 | 313 | |
314 | - return (0 < count($_)) ? '<h3>[%chunks%]</h3>' . implode("\n", $_) : ''; |
|
314 | + return (0 < count($_)) ? '<h3>[%chunks%]</h3>'.implode("\n", $_) : ''; |
|
315 | 315 | } |
316 | 316 | } |
317 | 317 | |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | $i++; |
343 | 343 | } |
344 | 344 | |
345 | - return (0 < count($_)) ? '<h3>[%modules%]</h3>' . implode("\n", $_) : ''; |
|
345 | + return (0 < count($_)) ? '<h3>[%modules%]</h3>'.implode("\n", $_) : ''; |
|
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | $i++; |
378 | 378 | } |
379 | 379 | |
380 | - return (0 < count($_)) ? '<h3>[%plugins%]</h3>' . implode("\n", $_) : ''; |
|
380 | + return (0 < count($_)) ? '<h3>[%plugins%]</h3>'.implode("\n", $_) : ''; |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | $i++; |
409 | 409 | } |
410 | 410 | |
411 | - return (0 < count($_)) ? '<h3>[%snippets%]</h3>' . implode("\n", $_) : ''; |
|
411 | + return (0 < count($_)) ? '<h3>[%snippets%]</h3>'.implode("\n", $_) : ''; |
|
412 | 412 | } |
413 | 413 | } |
414 | 414 | |
@@ -419,46 +419,46 @@ discard block |
||
419 | 419 | |
420 | 420 | // secure web documents - privateweb |
421 | 421 | mysqli_query($sqlParser->conn, |
422 | - "UPDATE `" . $sqlParser->prefix . "site_content` SET privateweb = 0 WHERE privateweb = 1"); |
|
422 | + "UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 0 WHERE privateweb = 1"); |
|
423 | 423 | $sql = "SELECT DISTINCT sc.id |
424 | - FROM `" . $sqlParser->prefix . "site_content` sc |
|
425 | - LEFT JOIN `" . $sqlParser->prefix . "document_groups` dg ON dg.document = sc.id |
|
426 | - LEFT JOIN `" . $sqlParser->prefix . "webgroup_access` wga ON wga.documentgroup = dg.document_group |
|
424 | + FROM `" . $sqlParser->prefix."site_content` sc |
|
425 | + LEFT JOIN `" . $sqlParser->prefix."document_groups` dg ON dg.document = sc.id |
|
426 | + LEFT JOIN `" . $sqlParser->prefix."webgroup_access` wga ON wga.documentgroup = dg.document_group |
|
427 | 427 | WHERE wga.id>0"; |
428 | 428 | $ds = mysqli_query($sqlParser->conn, $sql); |
429 | 429 | if (!$ds) { |
430 | - echo "An error occurred while executing a query: " . mysqli_error($sqlParser->conn); |
|
430 | + echo "An error occurred while executing a query: ".mysqli_error($sqlParser->conn); |
|
431 | 431 | } else { |
432 | 432 | while ($r = mysqli_fetch_assoc($ds)) { |
433 | 433 | $ids[] = $r["id"]; |
434 | 434 | } |
435 | 435 | if (count($ids) > 0) { |
436 | 436 | mysqli_query($sqlParser->conn, |
437 | - "UPDATE `" . $sqlParser->prefix . "site_content` SET privateweb = 1 WHERE id IN (" . implode(", ", |
|
438 | - $ids) . ")"); |
|
437 | + "UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 1 WHERE id IN (".implode(", ", |
|
438 | + $ids).")"); |
|
439 | 439 | unset($ids); |
440 | 440 | } |
441 | 441 | } |
442 | 442 | |
443 | 443 | // secure manager documents privatemgr |
444 | 444 | mysqli_query($sqlParser->conn, |
445 | - "UPDATE `" . $sqlParser->prefix . "site_content` SET privatemgr = 0 WHERE privatemgr = 1"); |
|
445 | + "UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 0 WHERE privatemgr = 1"); |
|
446 | 446 | $sql = "SELECT DISTINCT sc.id |
447 | - FROM `" . $sqlParser->prefix . "site_content` sc |
|
448 | - LEFT JOIN `" . $sqlParser->prefix . "document_groups` dg ON dg.document = sc.id |
|
449 | - LEFT JOIN `" . $sqlParser->prefix . "membergroup_access` mga ON mga.documentgroup = dg.document_group |
|
447 | + FROM `" . $sqlParser->prefix."site_content` sc |
|
448 | + LEFT JOIN `" . $sqlParser->prefix."document_groups` dg ON dg.document = sc.id |
|
449 | + LEFT JOIN `" . $sqlParser->prefix."membergroup_access` mga ON mga.documentgroup = dg.document_group |
|
450 | 450 | WHERE mga.id>0"; |
451 | 451 | $ds = mysqli_query($sqlParser->conn, $sql); |
452 | 452 | if (!$ds) { |
453 | - echo "An error occurred while executing a query: " . mysqli_error($sqlParser->conn); |
|
453 | + echo "An error occurred while executing a query: ".mysqli_error($sqlParser->conn); |
|
454 | 454 | } else { |
455 | 455 | while ($r = mysqli_fetch_assoc($ds)) { |
456 | 456 | $ids[] = $r["id"]; |
457 | 457 | } |
458 | 458 | if (count($ids) > 0) { |
459 | 459 | mysqli_query($sqlParser->conn, |
460 | - "UPDATE `" . $sqlParser->prefix . "site_content` SET privatemgr = 1 WHERE id IN (" . implode(", ", |
|
461 | - $ids) . ")"); |
|
460 | + "UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 1 WHERE id IN (".implode(", ", |
|
461 | + $ids).")"); |
|
462 | 462 | unset($ids); |
463 | 463 | } |
464 | 464 | } |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | function parse_docblock($element_dir, $filename) |
470 | 470 | { |
471 | 471 | $params = array(); |
472 | - $fullpath = $element_dir . '/' . $filename; |
|
472 | + $fullpath = $element_dir.'/'.$filename; |
|
473 | 473 | if (is_readable($fullpath)) { |
474 | 474 | $tpl = @fopen($fullpath, "r"); |
475 | 475 | if ($tpl) { |
@@ -688,17 +688,17 @@ discard block |
||
688 | 688 | function getCreateDbCategory($category, $sqlParser) |
689 | 689 | { |
690 | 690 | $dbase = $sqlParser->dbname; |
691 | - $dbase = '`' . trim($dbase, '`') . '`'; |
|
691 | + $dbase = '`'.trim($dbase, '`').'`'; |
|
692 | 692 | $table_prefix = $sqlParser->prefix; |
693 | 693 | $category_id = 0; |
694 | 694 | if (!empty($category)) { |
695 | 695 | $category = mysqli_real_escape_string($sqlParser->conn, $category); |
696 | 696 | $rs = mysqli_query($sqlParser->conn, |
697 | - "SELECT id FROM $dbase.`" . $table_prefix . "categories` WHERE category = '" . $category . "'"); |
|
697 | + "SELECT id FROM $dbase.`".$table_prefix."categories` WHERE category = '".$category."'"); |
|
698 | 698 | if (mysqli_num_rows($rs) && ($row = mysqli_fetch_assoc($rs))) { |
699 | 699 | $category_id = $row['id']; |
700 | 700 | } else { |
701 | - $q = "INSERT INTO $dbase.`" . $table_prefix . "categories` (`category`) VALUES ('{$category}');"; |
|
701 | + $q = "INSERT INTO $dbase.`".$table_prefix."categories` (`category`) VALUES ('{$category}');"; |
|
702 | 702 | $rs = mysqli_query($sqlParser->conn, $q); |
703 | 703 | if ($rs) { |
704 | 704 | $category_id = mysqli_insert_id($sqlParser->conn); |
@@ -740,7 +740,7 @@ discard block |
||
740 | 740 | default: |
741 | 741 | return $cleaned; |
742 | 742 | }; |
743 | - if (substr(trim($cleaned), 0, $count) == $include . ' MODX_BASE_PATH.\'assets/' . $elm_name . '/') { |
|
743 | + if (substr(trim($cleaned), 0, $count) == $include.' MODX_BASE_PATH.\'assets/'.$elm_name.'/') { |
|
744 | 744 | return $cleaned; |
745 | 745 | } |
746 | 746 |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // Determine upgradeability |
3 | 3 | $upgradeable = 0; |
4 | -if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { // Include the file so we can test its validity |
|
5 | - include_once $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
4 | +if (is_file($base_path.MGR_DIR.'/includes/config.inc.php')) { // Include the file so we can test its validity |
|
5 | + include_once $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
6 | 6 | // We need to have all connection settings - tho prefix may be empty so we have to ignore it |
7 | 7 | if (isset($dbase)) { |
8 | 8 | if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) |
@@ -17,16 +17,16 @@ discard block |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | $ph['moduleName'] = $moduleName; |
20 | -$ph['displayNew'] = ($upgradeable!=0) ? 'display:none;' : ''; |
|
21 | -$ph['displayUpg'] = ($upgradeable==0) ? 'display:none;' : ''; |
|
20 | +$ph['displayNew'] = ($upgradeable != 0) ? 'display:none;' : ''; |
|
21 | +$ph['displayUpg'] = ($upgradeable == 0) ? 'display:none;' : ''; |
|
22 | 22 | $ph['displayAdvUpg'] = $ph['displayUpg']; |
23 | -$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
24 | -$ph['checkedUpg'] = ($_POST['installmode']==1 || $upgradeable==1) ? 'checked' : ''; |
|
25 | -$ph['checkedAdvUpg'] = ($_POST['installmode']==2 || $upgradeable==2) ? 'checked' : ''; |
|
23 | +$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
24 | +$ph['checkedUpg'] = ($_POST['installmode'] == 1 || $upgradeable == 1) ? 'checked' : ''; |
|
25 | +$ph['checkedAdvUpg'] = ($_POST['installmode'] == 2 || $upgradeable == 2) ? 'checked' : ''; |
|
26 | 26 | $ph['install_language'] = $install_language; |
27 | -$ph['disabledUpg'] = ($upgradeable!=1) ? 'disabled' : ''; |
|
28 | -$ph['disabledAdvUpg'] = ($upgradeable==0) ? 'disabled' : ''; |
|
27 | +$ph['disabledUpg'] = ($upgradeable != 1) ? 'disabled' : ''; |
|
28 | +$ph['disabledAdvUpg'] = ($upgradeable == 0) ? 'disabled' : ''; |
|
29 | 29 | |
30 | -$tpl = file_get_contents(dirname(__DIR__) . '/template/actions/mode.tpl'); |
|
30 | +$tpl = file_get_contents(dirname(__DIR__).'/template/actions/mode.tpl'); |
|
31 | 31 | $content = parse($tpl, $ph); |
32 | -echo parse($content, $_lang,'[%','%]'); |
|
32 | +echo parse($content, $_lang, '[%', '%]'); |
@@ -1,20 +1,22 @@ |
||
1 | 1 | <?php |
2 | 2 | // Determine upgradeability |
3 | 3 | $upgradeable = 0; |
4 | -if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { // Include the file so we can test its validity |
|
4 | +if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { |
|
5 | +// Include the file so we can test its validity |
|
5 | 6 | include_once $base_path . MGR_DIR . '/includes/config.inc.php'; |
6 | 7 | // We need to have all connection settings - tho prefix may be empty so we have to ignore it |
7 | 8 | if (isset($dbase)) { |
8 | - if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) |
|
9 | - $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
10 | - elseif (!@mysqli_select_db($conn, trim($dbase, '`'))) |
|
11 | - $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
12 | - else |
|
13 | - $upgradeable = 1; |
|
9 | + if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) { |
|
10 | + $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
11 | + } elseif (!@mysqli_select_db($conn, trim($dbase, '`'))) { |
|
12 | + $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
13 | + } else { |
|
14 | + $upgradeable = 1; |
|
15 | + } |
|
16 | + } else { |
|
17 | + $upgradeable = 2; |
|
18 | + } |
|
14 | 19 | } |
15 | - else |
|
16 | - $upgradeable = 2; |
|
17 | -} |
|
18 | 20 | |
19 | 21 | $ph['moduleName'] = $moduleName; |
20 | 22 | $ph['displayNew'] = ($upgradeable!=0) ? 'display:none;' : ''; |
@@ -1,19 +1,19 @@ discard block |
||
1 | 1 | <?php |
2 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
2 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
3 | 3 | |
4 | -switch($installMode){ |
|
4 | +switch ($installMode) { |
|
5 | 5 | case 0: |
6 | 6 | case 2: |
7 | 7 | $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
8 | 8 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
9 | 9 | $_POST['database_connection_charset'] = $database_charset; |
10 | - if(empty($_SESSION['databaseloginpassword'])) |
|
10 | + if (empty($_SESSION['databaseloginpassword'])) |
|
11 | 11 | $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
12 | - if(empty($_SESSION['databaseloginname'])) |
|
12 | + if (empty($_SESSION['databaseloginname'])) |
|
13 | 13 | $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
14 | 14 | break; |
15 | 15 | case 1: |
16 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
16 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
17 | 17 | if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
18 | 18 | if (@ mysqli_query($conn, "USE {$dbase}")) { |
19 | 19 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $ph['checked'] = isset ($_POST['installdata']) && $_POST['installdata'] == "1" ? 'checked' : ''; |
69 | 69 | |
70 | 70 | # load setup information file |
71 | -include_once dirname(__DIR__) . '/processor/result.php'; |
|
71 | +include_once dirname(__DIR__).'/processor/result.php'; |
|
72 | 72 | $ph['templates'] = getTemplates($moduleTemplates); |
73 | 73 | $ph['tvs'] = getTVs($moduleTVs); |
74 | 74 | $ph['chunks'] = getChunks($moduleChunks); |
@@ -78,6 +78,6 @@ discard block |
||
78 | 78 | |
79 | 79 | $ph['action'] = ($installMode == 1) ? 'mode' : 'connection'; |
80 | 80 | |
81 | -$tpl = file_get_contents(dirname(__DIR__) . '/template/actions/options.tpl'); |
|
81 | +$tpl = file_get_contents(dirname(__DIR__).'/template/actions/options.tpl'); |
|
82 | 82 | $content = parse($tpl, $ph); |
83 | 83 | echo parse($content, $_lang, '[%', '%]'); |
@@ -1,16 +1,18 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | $installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
3 | 3 | |
4 | -switch($installMode){ |
|
4 | +switch($installMode) { |
|
5 | 5 | case 0: |
6 | 6 | case 2: |
7 | 7 | $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
8 | 8 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
9 | 9 | $_POST['database_connection_charset'] = $database_charset; |
10 | - if(empty($_SESSION['databaseloginpassword'])) |
|
11 | - $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
12 | - if(empty($_SESSION['databaseloginname'])) |
|
13 | - $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
10 | + if(empty($_SESSION['databaseloginpassword'])) { |
|
11 | + $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
12 | + } |
|
13 | + if(empty($_SESSION['databaseloginname'])) { |
|
14 | + $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
15 | + } |
|
14 | 16 | break; |
15 | 17 | case 1: |
16 | 18 | include $base_path . MGR_DIR . '/includes/config.inc.php'; |
@@ -24,7 +26,9 @@ discard block |
||
24 | 26 | } |
25 | 27 | } |
26 | 28 | } |
27 | - if (empty ($database_collation)) $database_collation = 'utf8_general_ci'; |
|
29 | + if (empty ($database_collation)) { |
|
30 | + $database_collation = 'utf8_general_ci'; |
|
31 | + } |
|
28 | 32 | |
29 | 33 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
30 | 34 | if (!isset ($database_connection_charset) || empty ($database_connection_charset)) { |
@@ -33,7 +37,9 @@ discard block |
||
33 | 37 | |
34 | 38 | if (!isset ($database_connection_method) || empty ($database_connection_method)) { |
35 | 39 | $database_connection_method = 'SET CHARACTER SET'; |
36 | - if (function_exists('mysqli_set_charset')) mysqli_set_charset($conn, $database_connection_charset); |
|
40 | + if (function_exists('mysqli_set_charset')) { |
|
41 | + mysqli_set_charset($conn, $database_connection_charset); |
|
42 | + } |
|
37 | 43 | } |
38 | 44 | if ($database_connection_method != 'SET NAMES' && $database_connection_charset != $database_charset) { |
39 | 45 | $database_connection_method = 'SET NAMES'; |
@@ -15,7 +15,7 @@ |
||
15 | 15 | case 1: |
16 | 16 | include $base_path . MGR_DIR . '/includes/config.inc.php'; |
17 | 17 | if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
18 | - if (@ mysqli_query($conn, "USE {$dbase}")) { |
|
18 | + if (@ mysqli_query($conn, "use {$dbase}")) { |
|
19 | 19 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
20 | 20 | $rs = mysqli_query($conn, "show session variables like 'collation_server'"); |
21 | 21 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | |
8 | 8 | $output = $_lang["status_checking_database"]; |
9 | 9 | if (!$conn = mysqli_connect($host, $uid, $pwd)) { |
10 | - $output .= '<span id="database_fail" style="color:#FF0000;">' . $_lang['status_failed'] . '</span>'; |
|
10 | + $output .= '<span id="database_fail" style="color:#FF0000;">'.$_lang['status_failed'].'</span>'; |
|
11 | 11 | } else { |
12 | 12 | $database_name = mysqli_real_escape_string($conn, $_POST['database_name']); |
13 | 13 | $database_name = str_replace("`", "", $database_name); |
@@ -18,22 +18,22 @@ discard block |
||
18 | 18 | if (!@ mysqli_select_db($conn, $database_name)) { |
19 | 19 | // create database |
20 | 20 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
21 | - $query = "CREATE DATABASE `" . $database_name . "` CHARACTER SET " . $database_charset . " COLLATE " . $database_collation . ";"; |
|
21 | + $query = "CREATE DATABASE `".$database_name."` CHARACTER SET ".$database_charset." COLLATE ".$database_collation.";"; |
|
22 | 22 | |
23 | 23 | if (!mysqli_query($conn, $query)) { |
24 | - $output .= '<span id="database_fail" style="color:#FF0000;">' . $_lang['status_failed_could_not_create_database'] . '</span>'; |
|
24 | + $output .= '<span id="database_fail" style="color:#FF0000;">'.$_lang['status_failed_could_not_create_database'].'</span>'; |
|
25 | 25 | } else { |
26 | - $output .= '<span id="database_pass" style="color:#80c000;">' . $_lang['status_passed_database_created'] . '</span>'; |
|
26 | + $output .= '<span id="database_pass" style="color:#80c000;">'.$_lang['status_passed_database_created'].'</span>'; |
|
27 | 27 | } |
28 | 28 | } elseif (($installMode == 0) && (mysqli_query($conn, |
29 | 29 | "SELECT COUNT(*) FROM {$database_name}.`{$tableprefix}site_content`"))) { |
30 | - $output .= '<span id="database_fail" style="color:#FF0000;">' . $_lang['status_failed_table_prefix_already_in_use'] . '</span>'; |
|
30 | + $output .= '<span id="database_fail" style="color:#FF0000;">'.$_lang['status_failed_table_prefix_already_in_use'].'</span>'; |
|
31 | 31 | } elseif (($database_connection_method != 'SET NAMES') && ($rs = mysqli_query($conn, |
32 | 32 | "show variables like 'collation_database'")) && ($row = mysqli_fetch_row($rs)) && ($row[1] != $database_collation)) { |
33 | - $output .= '<span id="database_fail" style="color:#FF0000;">' . sprintf($_lang['status_failed_database_collation_does_not_match'], |
|
34 | - $row[1]) . '</span>'; |
|
33 | + $output .= '<span id="database_fail" style="color:#FF0000;">'.sprintf($_lang['status_failed_database_collation_does_not_match'], |
|
34 | + $row[1]).'</span>'; |
|
35 | 35 | } else { |
36 | - $output .= '<span id="database_pass" style="color:#80c000;">' . $_lang['status_passed'] . '</span>'; |
|
36 | + $output .= '<span id="database_pass" style="color:#80c000;">'.$_lang['status_passed'].'</span>'; |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 |
@@ -7,13 +7,13 @@ discard block |
||
7 | 7 | $output = $_lang["status_connecting"]; |
8 | 8 | if (function_exists('mysqli_connect')) { |
9 | 9 | if (!$conn = @mysqli_connect($host, $uid, $pwd)) { |
10 | - $output .= '<span id="server_fail" style="color:#FF0000;"> ' . $_lang['status_failed'] . '</span>'; |
|
10 | + $output .= '<span id="server_fail" style="color:#FF0000;"> '.$_lang['status_failed'].'</span>'; |
|
11 | 11 | } else { |
12 | - $output .= '<span id="server_pass" style="color:#80c000;"> ' . $_lang['status_passed_server'] . '</span>'; |
|
12 | + $output .= '<span id="server_pass" style="color:#80c000;"> '.$_lang['status_passed_server'].'</span>'; |
|
13 | 13 | |
14 | 14 | // Mysql version check |
15 | 15 | if (version_compare(mysqli_get_server_info($conn), '5.0.51', '=')) { |
16 | - $output .= '<br /><span style="color:#FF0000;"> ' . $_lang['mysql_5051'] . '</span>'; |
|
16 | + $output .= '<br /><span style="color:#FF0000;"> '.$_lang['mysql_5051'].'</span>'; |
|
17 | 17 | } |
18 | 18 | // Mode check |
19 | 19 | $mysqlmode = mysqli_query($conn, "SELECT @@session.sql_mode"); |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | } |
27 | 27 | } |
28 | 28 | if ($strictMode) { |
29 | - $output .= '<br /><span style="color:#FF0000;"> ' . $_lang['strict_mode'] . '</span>'; |
|
29 | + $output .= '<br /><span style="color:#FF0000;"> '.$_lang['strict_mode'].'</span>'; |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | } |
33 | 33 | } else { |
34 | - $output .= '<span id="server_fail" style="color:#FF0000;"> ' . $_lang['status_failed_mysqli'] . '</span>'; |
|
34 | + $output .= '<span id="server_fail" style="color:#FF0000;"> '.$_lang['status_failed_mysqli'].'</span>'; |
|
35 | 35 | } |
36 | 36 | echo $output; |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -$content = file_get_contents(dirname(__DIR__) . '/template/actions/language.tpl'); |
|
3 | +$content = file_get_contents(dirname(__DIR__).'/template/actions/language.tpl'); |
|
4 | 4 | $content = parse($content, array( |
5 | 5 | 'langOptions' => getLangOptions($install_language)) |
6 | 6 | ); |
7 | -$content = parse($content, $_lang,'[%','%]'); |
|
7 | +$content = parse($content, $_lang, '[%', '%]'); |
|
8 | 8 | |
9 | 9 | echo $content; |
@@ -1,27 +1,27 @@ discard block |
||
1 | 1 | <?php |
2 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
2 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
3 | 3 | |
4 | 4 | // Determine upgradeability |
5 | 5 | $upgradeable = 0; |
6 | 6 | if ($installMode === 0) { |
7 | 7 | $database_name = ''; |
8 | 8 | $database_server = 'localhost'; |
9 | - $table_prefix = base_convert(mt_rand(10, 20), 10, 36) . |
|
10 | - substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyz'), mt_rand(0, 33), 3) . |
|
9 | + $table_prefix = base_convert(mt_rand(10, 20), 10, 36). |
|
10 | + substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyz'), mt_rand(0, 33), 3). |
|
11 | 11 | '_'; |
12 | 12 | } else { |
13 | 13 | $database_name = ''; |
14 | - if (! is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { |
|
14 | + if (!is_file($base_path.MGR_DIR.'/includes/config.inc.php')) { |
|
15 | 15 | $upgradeable = 0; |
16 | 16 | } else { |
17 | 17 | // Include the file so we can test its validity |
18 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
18 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
19 | 19 | // We need to have all connection settings - but prefix may be empty so we have to ignore it |
20 | 20 | if ($dbase) { |
21 | 21 | $database_name = trim($dbase, '`'); |
22 | 22 | if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) { |
23 | 23 | $upgradeable = (isset($_POST['installmode']) && $_POST['installmode'] === 'new') ? 0 : 2; |
24 | - } elseif (! mysqli_select_db($conn, trim($dbase, '`'))) { |
|
24 | + } elseif (!mysqli_select_db($conn, trim($dbase, '`'))) { |
|
25 | 25 | $upgradeable = (isset($_POST['installmode']) && $_POST['installmode'] === 'new') ? 0 : 2; |
26 | 26 | } else { |
27 | 27 | $upgradeable = 1; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | } |
34 | 34 | |
35 | 35 | // check the database collation if not specified in the configuration |
36 | -if ($upgradeable && (! isset($database_connection_charset) || empty($database_connection_charset))) { |
|
36 | +if ($upgradeable && (!isset($database_connection_charset) || empty($database_connection_charset))) { |
|
37 | 37 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
38 | 38 | $rs = mysqli_query($conn, "show session variables like 'collation_server'"); |
39 | 39 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $ph['databaseloginpassword'] = isset($_SESSION['databaseloginpassword']) ? $_SESSION['databaseloginpassword'] : ""; |
78 | 78 | $ph['MGR_DIR'] = MGR_DIR; |
79 | 79 | |
80 | -$content = file_get_contents(dirname(__DIR__) . '/template/actions/connection.tpl'); |
|
80 | +$content = file_get_contents(dirname(__DIR__).'/template/actions/connection.tpl'); |
|
81 | 81 | $content = parse($content, $_lang, '[%', '%]'); |
82 | 82 | $content = parse($content, $ph); |
83 | 83 |
@@ -248,9 +248,9 @@ |
||
248 | 248 | echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_not_exist'] . '</p>'; |
249 | 249 | $errors++; |
250 | 250 | echo '<p>' . $_lang['table_prefix_not_exist_note'] . '</p>'; |
251 | - } else { |
|
251 | + } else { |
|
252 | 252 | echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
253 | - } |
|
253 | + } |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | // check mysql version |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! function_exists('f_owc')){ |
|
2 | +if (!function_exists('f_owc')) { |
|
3 | 3 | /** |
4 | 4 | * @param $path |
5 | 5 | * @param $data |
@@ -12,30 +12,30 @@ discard block |
||
12 | 12 | fwrite($hnd, $data); |
13 | 13 | fclose($hnd); |
14 | 14 | |
15 | - if(null !== $mode) chmod($path, $mode); |
|
16 | - }catch(Exception $e){ |
|
15 | + if (null !== $mode) chmod($path, $mode); |
|
16 | + } catch (Exception $e) { |
|
17 | 17 | // Nothing, this is NOT normal |
18 | 18 | unset($e); |
19 | 19 | } |
20 | 20 | } |
21 | 21 | } |
22 | 22 | |
23 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
24 | -if( ! isset($_lang)) $_lang = array(); |
|
23 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
24 | +if (!isset($_lang)) $_lang = array(); |
|
25 | 25 | |
26 | 26 | echo '<div class="stepcontainer"> |
27 | 27 | <ul class="progressbar"> |
28 | - <li class="visited">' . $_lang['choose_language'] . '</li> |
|
29 | - <li class="visited">' . $_lang['installation_mode'] . '</li> |
|
30 | - <li class="visited">' . $_lang['optional_items'] . '</li> |
|
31 | - <li class="active">' . $_lang['preinstall_validation'] . '</li> |
|
32 | - <li>' . $_lang['install_results'] . '</li> |
|
28 | + <li class="visited">' . $_lang['choose_language'].'</li> |
|
29 | + <li class="visited">' . $_lang['installation_mode'].'</li> |
|
30 | + <li class="visited">' . $_lang['optional_items'].'</li> |
|
31 | + <li class="active">' . $_lang['preinstall_validation'].'</li> |
|
32 | + <li>' . $_lang['install_results'].'</li> |
|
33 | 33 | </ul> |
34 | 34 | <div class="clearleft"></div> |
35 | 35 | </div>'; |
36 | 36 | |
37 | -echo '<h2>' . $_lang['preinstall_validation'] . '</h2>'; |
|
38 | -echo '<h3>' . $_lang['summary_setup_check'] . '</h3>'; |
|
37 | +echo '<h2>'.$_lang['preinstall_validation'].'</h2>'; |
|
38 | +echo '<h3>'.$_lang['summary_setup_check'].'</h3>'; |
|
39 | 39 | |
40 | 40 | $errors = 0; |
41 | 41 | |
@@ -43,73 +43,73 @@ discard block |
||
43 | 43 | // check PHP version |
44 | 44 | define('PHP_MIN_VERSION', '5.4.0'); |
45 | 45 | $phpMinVersion = PHP_MIN_VERSION; // Maybe not necessary. For backward compatibility |
46 | -echo '<p>' . $_lang['checking_php_version']; |
|
46 | +echo '<p>'.$_lang['checking_php_version']; |
|
47 | 47 | // -1 if left is less, 0 if equal, +1 if left is higher |
48 | 48 | if (version_compare(phpversion(), PHP_MIN_VERSION) < 0) { |
49 | 49 | $errors++; |
50 | - $tmp = $_lang['you_running_php'] . phpversion() . str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
51 | - echo '<span class="notok">' . $_lang['failed'] . '</span>' . $tmp . '</p>'; |
|
50 | + $tmp = $_lang['you_running_php'].phpversion().str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
51 | + echo '<span class="notok">'.$_lang['failed'].'</span>'.$tmp.'</p>'; |
|
52 | 52 | } else { |
53 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
53 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
57 | 57 | // check if iconv is available |
58 | -echo '<p>' . $_lang['checking_iconv']; |
|
58 | +echo '<p>'.$_lang['checking_iconv']; |
|
59 | 59 | $iconv = (int) function_exists('iconv'); |
60 | -if ($iconv == '0'){ |
|
61 | - echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
60 | +if ($iconv == '0') { |
|
61 | + echo '<span class="notok">'.$_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
62 | 62 | $errors++; |
63 | 63 | } else { |
64 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
64 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
65 | 65 | } |
66 | 66 | // check sessions |
67 | -echo '<p>' . $_lang['checking_sessions']; |
|
67 | +echo '<p>'.$_lang['checking_sessions']; |
|
68 | 68 | if ($_SESSION['test'] != 1) { |
69 | - echo '<span class="notok">' . $_lang['failed']. '</span></p>'; |
|
69 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
70 | 70 | $errors++; |
71 | 71 | } else { |
72 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
72 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | |
76 | 76 | // check directories |
77 | 77 | // cache exists? |
78 | -echo '<p>' . $_lang['checking_if_cache_exist']; |
|
78 | +echo '<p>'.$_lang['checking_if_cache_exist']; |
|
79 | 79 | if (!file_exists("../assets/cache") || !file_exists("../assets/cache/rss")) { |
80 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
80 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
81 | 81 | $errors++; |
82 | 82 | } else { |
83 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
83 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | |
87 | 87 | // cache writable? |
88 | -echo '<p>' . $_lang['checking_if_cache_writable']; |
|
88 | +echo '<p>'.$_lang['checking_if_cache_writable']; |
|
89 | 89 | if (!is_writable("../assets/cache")) { |
90 | 90 | $errors++; |
91 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
91 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
92 | 92 | } else { |
93 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
93 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | |
97 | 97 | // cache files writable? |
98 | -echo '<p>' . $_lang['checking_if_cache_file_writable']; |
|
98 | +echo '<p>'.$_lang['checking_if_cache_file_writable']; |
|
99 | 99 | $tmp = "../assets/cache/siteCache.idx.php"; |
100 | -if ( ! file_exists($tmp)) { |
|
100 | +if (!file_exists($tmp)) { |
|
101 | 101 | f_owc($tmp, "<?php //EVO site cache file ?>"); |
102 | 102 | } |
103 | -if ( ! is_writable($tmp)) { |
|
103 | +if (!is_writable($tmp)) { |
|
104 | 104 | $errors++; |
105 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
105 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
106 | 106 | } else { |
107 | 107 | echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
108 | 108 | } |
109 | 109 | |
110 | 110 | |
111 | 111 | echo '<p>'.$_lang['checking_if_cache_file2_writable']; |
112 | -if ( ! is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
112 | +if (!is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
113 | 113 | $errors++; |
114 | 114 | echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
115 | 115 | } else { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | // File Browser directories exists? |
121 | 121 | echo '<p>'.$_lang['checking_if_images_exist']; |
122 | -switch(true){ |
|
122 | +switch (true) { |
|
123 | 123 | case !file_exists("../assets/images"): |
124 | 124 | case !file_exists("../assets/files"): |
125 | 125 | case !file_exists("../assets/backup"): |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | // File Browser directories writable? |
136 | 136 | echo '<p>'.$_lang['checking_if_images_writable']; |
137 | -switch(true){ |
|
137 | +switch (true) { |
|
138 | 138 | case !is_writable("../assets/images"): |
139 | 139 | case !is_writable("../assets/files"): |
140 | 140 | case !is_writable("../assets/backup"): |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_') - 1); |
195 | 195 | $database_connection_charset = $_POST['database_connection_charset']; |
196 | 196 | $database_connection_method = $_POST['database_connection_method']; |
197 | - $dbase = '`' . $_POST['database_name'] . '`'; |
|
197 | + $dbase = '`'.$_POST['database_name'].'`'; |
|
198 | 198 | $table_prefix = $_POST['tableprefix']; |
199 | 199 | } |
200 | 200 | echo '<p>'.$_lang['creating_database_connection']; |
@@ -234,54 +234,54 @@ discard block |
||
234 | 234 | |
235 | 235 | // check table prefix |
236 | 236 | if ($conn && $installMode == 0) { |
237 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
238 | - if ($rs= mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
239 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_already_inuse'] . '</p>'; |
|
237 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
238 | + if ($rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
239 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_already_inuse'].'</p>'; |
|
240 | 240 | $errors++; |
241 | - echo "<p>" . $_lang['table_prefix_already_inuse_note'] . '</p>'; |
|
241 | + echo "<p>".$_lang['table_prefix_already_inuse_note'].'</p>'; |
|
242 | 242 | } else { |
243 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
243 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
244 | 244 | } |
245 | 245 | } elseif ($conn && $installMode == 2) { |
246 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
247 | - if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
248 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_not_exist'] . '</p>'; |
|
246 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
247 | + if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
248 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_not_exist'].'</p>'; |
|
249 | 249 | $errors++; |
250 | - echo '<p>' . $_lang['table_prefix_not_exist_note'] . '</p>'; |
|
250 | + echo '<p>'.$_lang['table_prefix_not_exist_note'].'</p>'; |
|
251 | 251 | } else { |
252 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
252 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
253 | 253 | } |
254 | 254 | } |
255 | 255 | |
256 | 256 | // check mysql version |
257 | 257 | if ($conn) { |
258 | - echo '<p>' . $_lang['checking_mysql_version']; |
|
259 | - if ( version_compare(mysqli_get_server_info($conn), '5.0.51', '=') ) { |
|
260 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong>' . $_lang['mysql_5051'] . '</strong></p>'; |
|
261 | - echo '<p><span class="notok">' . $_lang['mysql_5051_warning'] . '</span></p>'; |
|
258 | + echo '<p>'.$_lang['checking_mysql_version']; |
|
259 | + if (version_compare(mysqli_get_server_info($conn), '5.0.51', '=')) { |
|
260 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong>'.$_lang['mysql_5051'].'</strong></p>'; |
|
261 | + echo '<p><span class="notok">'.$_lang['mysql_5051_warning'].'</span></p>'; |
|
262 | 262 | } else { |
263 | - echo '<span class="ok">' . $_lang['ok'] . '</span> <strong>' . $_lang['mysql_version_is'] . mysqli_get_server_info($conn) . '</strong></p>'; |
|
263 | + echo '<span class="ok">'.$_lang['ok'].'</span> <strong>'.$_lang['mysql_version_is'].mysqli_get_server_info($conn).'</strong></p>'; |
|
264 | 264 | } |
265 | 265 | } |
266 | 266 | |
267 | 267 | // check for strict mode |
268 | 268 | if ($conn) { |
269 | - echo '<p>'. $_lang['checking_mysql_strict_mode']; |
|
269 | + echo '<p>'.$_lang['checking_mysql_strict_mode']; |
|
270 | 270 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
271 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
272 | 272 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
273 | 273 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
274 | 274 | // print_r($modes); |
275 | 275 | foreach ($modes as $mode) { |
276 | 276 | if (stristr($mode, "STRICT_TRANS_TABLES") !== false || stristr($mode, "STRICT_ALL_TABLES") !== false) { |
277 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong> ' . $_lang['strict_mode'] . '</strong></p>'; |
|
278 | - echo '<p><span class="notok">' . $_lang['strict_mode_error'] . '</span></p>'; |
|
277 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong> '.$_lang['strict_mode'].'</strong></p>'; |
|
278 | + echo '<p><span class="notok">'.$_lang['strict_mode_error'].'</span></p>'; |
|
279 | 279 | } else { |
280 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
280 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
281 | 281 | } |
282 | 282 | } |
283 | 283 | } else { |
284 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
284 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
285 | 285 | } |
286 | 286 | } |
287 | 287 | // Version and strict mode check end |
@@ -297,18 +297,18 @@ discard block |
||
297 | 297 | f_owc("../assets/cache/installProc.inc.php", '<?php $installStartTime = '.time().'; ?>'); |
298 | 298 | } |
299 | 299 | |
300 | -if($installMode > 0 && $_POST['installdata'] == "1") { |
|
301 | - echo '<p class="notes"><strong>' . $_lang['sample_web_site'] . ':</strong> ' . $_lang['sample_web_site_note'] . '</p>'; |
|
300 | +if ($installMode > 0 && $_POST['installdata'] == "1") { |
|
301 | + echo '<p class="notes"><strong>'.$_lang['sample_web_site'].':</strong> '.$_lang['sample_web_site_note'].'</p>'; |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | if ($errors > 0) { |
305 | 305 | echo '<p>'; |
306 | - echo $_lang['setup_cannot_continue'] . ' '; |
|
306 | + echo $_lang['setup_cannot_continue'].' '; |
|
307 | 307 | |
308 | - if($errors > 1){ |
|
309 | - echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
|
310 | - }else{ |
|
311 | - echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
|
308 | + if ($errors > 1) { |
|
309 | + echo $errors." ".$_lang['errors'].$_lang['please_correct_errors'].$_lang['and_try_again_plural']; |
|
310 | + } else { |
|
311 | + echo $_lang['error'].$_lang['please_correct_error'].$_lang['and_try_again']; |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | echo $_lang['visit_forum']; |
@@ -317,10 +317,10 @@ discard block |
||
317 | 317 | |
318 | 318 | echo '<p> </p>'; |
319 | 319 | |
320 | -$nextAction= $errors > 0 ? 'summary' : 'install'; |
|
321 | -$nextButton= $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
322 | -$nextVisibility= $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
323 | -$agreeToggle= $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
320 | +$nextAction = $errors > 0 ? 'summary' : 'install'; |
|
321 | +$nextButton = $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
322 | +$nextVisibility = $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
323 | +$agreeToggle = $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
324 | 324 | ?> |
325 | 325 | <form name="install" id="install_form" action="index.php?action=<?php echo $nextAction ?>" method="post"> |
326 | 326 | <div> |
@@ -342,32 +342,32 @@ discard block |
||
342 | 342 | |
343 | 343 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
344 | 344 | <?php |
345 | - $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
|
345 | + $templates = isset ($_POST['template']) ? $_POST['template'] : array(); |
|
346 | 346 | foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
347 | 347 | |
348 | - $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
|
348 | + $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array(); |
|
349 | 349 | foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
350 | 350 | |
351 | - $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
|
351 | + $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array(); |
|
352 | 352 | foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
353 | 353 | |
354 | - $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
|
354 | + $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array(); |
|
355 | 355 | foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
356 | 356 | |
357 | - $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
|
357 | + $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array(); |
|
358 | 358 | foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
359 | 359 | |
360 | - $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
|
360 | + $modules = isset ($_POST['module']) ? $_POST['module'] : array(); |
|
361 | 361 | foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
362 | 362 | ?> |
363 | 363 | </div> |
364 | 364 | |
365 | -<h2><?php echo $_lang['agree_to_terms'];?></h2> |
|
365 | +<h2><?php echo $_lang['agree_to_terms']; ?></h2> |
|
366 | 366 | <p> |
367 | -<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ':""; ?><?php echo $agreeToggle;?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
367 | +<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ' : ""; ?><?php echo $agreeToggle; ?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
368 | 368 | </p> |
369 | 369 | <p class="buttonlinks"> |
370 | 370 | <a href="javascript:document.getElementById('install_form').action='index.php?action=options&language=<?php echo $install_language?>';document.getElementById('install_form').submit();" class="prev" title="<?php echo $_lang['btnback_value']?>"><span><?php echo $_lang['btnback_value']?></span></a> |
371 | - <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility;?>"><span><?php echo $nextButton ?></span></a> |
|
371 | + <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility; ?>"><span><?php echo $nextButton ?></span></a> |
|
372 | 372 | </p> |
373 | 373 | </form> |
@@ -1,19 +1,22 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! function_exists('f_owc')){ |
|
2 | +if( ! function_exists('f_owc')) { |
|
3 | 3 | /** |
4 | 4 | * @param $path |
5 | 5 | * @param $data |
6 | 6 | * @param null|int $mode |
7 | 7 | */ |
8 | - function f_owc($path, $data, $mode = null){ |
|
8 | + function f_owc($path, $data, $mode = null) |
|
9 | + { |
|
9 | 10 | try { |
10 | 11 | // make an attempt to create the file |
11 | 12 | $hnd = fopen($path, 'w'); |
12 | 13 | fwrite($hnd, $data); |
13 | 14 | fclose($hnd); |
14 | 15 | |
15 | - if(null !== $mode) chmod($path, $mode); |
|
16 | - }catch(Exception $e){ |
|
16 | + if(null !== $mode) { |
|
17 | + chmod($path, $mode); |
|
18 | + } |
|
19 | + } catch(Exception $e) { |
|
17 | 20 | // Nothing, this is NOT normal |
18 | 21 | unset($e); |
19 | 22 | } |
@@ -21,7 +24,9 @@ discard block |
||
21 | 24 | } |
22 | 25 | |
23 | 26 | $installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
24 | -if( ! isset($_lang)) $_lang = array(); |
|
27 | +if( ! isset($_lang)) { |
|
28 | + $_lang = array(); |
|
29 | +} |
|
25 | 30 | |
26 | 31 | echo '<div class="stepcontainer"> |
27 | 32 | <ul class="progressbar"> |
@@ -57,7 +62,7 @@ discard block |
||
57 | 62 | // check if iconv is available |
58 | 63 | echo '<p>' . $_lang['checking_iconv']; |
59 | 64 | $iconv = (int) function_exists('iconv'); |
60 | -if ($iconv == '0'){ |
|
65 | +if ($iconv == '0') { |
|
61 | 66 | echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
62 | 67 | $errors++; |
63 | 68 | } else { |
@@ -119,7 +124,7 @@ discard block |
||
119 | 124 | |
120 | 125 | // File Browser directories exists? |
121 | 126 | echo '<p>'.$_lang['checking_if_images_exist']; |
122 | -switch(true){ |
|
127 | +switch(true) { |
|
123 | 128 | case !file_exists("../assets/images"): |
124 | 129 | case !file_exists("../assets/files"): |
125 | 130 | case !file_exists("../assets/backup"): |
@@ -134,7 +139,7 @@ discard block |
||
134 | 139 | |
135 | 140 | // File Browser directories writable? |
136 | 141 | echo '<p>'.$_lang['checking_if_images_writable']; |
137 | -switch(true){ |
|
142 | +switch(true) { |
|
138 | 143 | case !is_writable("../assets/images"): |
139 | 144 | case !is_writable("../assets/files"): |
140 | 145 | case !is_writable("../assets/backup"): |
@@ -268,7 +273,7 @@ discard block |
||
268 | 273 | if ($conn) { |
269 | 274 | echo '<p>'. $_lang['checking_mysql_strict_mode']; |
270 | 275 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
276 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
272 | 277 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
273 | 278 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
274 | 279 | // print_r($modes); |
@@ -305,9 +310,9 @@ discard block |
||
305 | 310 | echo '<p>'; |
306 | 311 | echo $_lang['setup_cannot_continue'] . ' '; |
307 | 312 | |
308 | - if($errors > 1){ |
|
313 | + if($errors > 1) { |
|
309 | 314 | echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
310 | - }else{ |
|
315 | + } else { |
|
311 | 316 | echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
312 | 317 | } |
313 | 318 | |
@@ -343,23 +348,35 @@ discard block |
||
343 | 348 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
344 | 349 | <?php |
345 | 350 | $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
346 | - foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
351 | + foreach ($templates as $i => $template) { |
|
352 | + echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
353 | + } |
|
347 | 354 | |
348 | 355 | $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
349 | - foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
356 | + foreach ($tvs as $i => $tv) { |
|
357 | + echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
358 | + } |
|
350 | 359 | |
351 | 360 | $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
352 | - foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
361 | + foreach ($chunks as $i => $chunk) { |
|
362 | + echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
363 | + } |
|
353 | 364 | |
354 | 365 | $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
355 | - foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
366 | + foreach ($snippets as $i => $snippet) { |
|
367 | + echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
368 | + } |
|
356 | 369 | |
357 | 370 | $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
358 | - foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
371 | + foreach ($plugins as $i => $plugin) { |
|
372 | + echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
373 | + } |
|
359 | 374 | |
360 | 375 | $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
361 | - foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
362 | -?> |
|
376 | + foreach ($modules as $i => $module) { |
|
377 | + echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
378 | + } |
|
379 | + ?> |
|
363 | 380 | </div> |
364 | 381 | |
365 | 382 | <h2><?php echo $_lang['agree_to_terms'];?></h2> |
@@ -207,7 +207,7 @@ |
||
207 | 207 | |
208 | 208 | |
209 | 209 | // make sure we can use the database |
210 | -if ($installMode > 0 && !mysqli_query($conn, "USE {$dbase}")) { |
|
210 | +if ($installMode > 0 && !mysqli_query($conn, "use {$dbase}")) { |
|
211 | 211 | $errors++; |
212 | 212 | echo '<span class="notok">'.$_lang['database_use_failed'].'</span><p />'.$_lang["database_use_failed_note"].'</p>'; |
213 | 213 | } |