Cheetah
index.php
Go to the documentation of this file.
1 <?php
2 
9  'curl',
10  'gd',
11  'mbstring',
12  'xsl',
13  'json',
14  'fileinfo',
15  'openssl',
16  'zip',
17  'ftp',
18  'calendar',
19  'exif',
20  'pdo',
21  'pdo_mysql'
22 );
23 
24 $iMemoryLimitBytes = ini_get('memory_limit');
25 $last = strtolower($iMemoryLimitBytes{strlen($iMemoryLimitBytes) - 1});
27 switch ($last) {
28  case 'k':
29  $iMemoryLimitBytes *= 1024;
30  break;
31  case 'm':
32  $iMemoryLimitBytes *= 1024 * 1024;
33  break;
34  case 'g':
35  $iMemoryLimitBytes *= 1024 * 1024 * 1024;
36  break;
37 }
38 
39 $aErrors = array();
40 $aErrors[] = (ini_get('register_globals') == 0) ? '' : '<font color="red">register_globals is On (warning, you should have this param in the Off state, or your site will be unsafe)</font>';
41 $aErrors[] = (ini_get('safe_mode') == 0) ? '' : '<font color="red">safe_mode is On, disable it</font>';
42 $aErrors[] = (ini_get('max_execution_time') >= 300) ? '' : '<font color="red">max_execution_time is to low for backup functions. Set to 300 or higher.</font>';
43 $aErrors[] = (version_compare(PHP_VERSION, '5.4.0', '<')) ? '<font color="red">PHP version too old, please update to PHP 5.4.0 at least</font>' : '';
44 $aErrors[] = (ini_get('short_open_tag') == 0 && version_compare(phpversion(), "5.4",
45  "<") == 1) ? '<font color="red">short_open_tag is Off (must be On!)<b>Warning!</b> Cheetah cannot work without <b>short_open_tag</b>.</font>' : '';
46 $aErrors[] = (ini_get('allow_url_include') == 0) ? '' : '<font color="red">allow_url_include is On (warning, you should have this param in the Off state, or your site will be unsafe)</font>';
47 $aErrors[] = ($iMemoryLimitBytes == -1 || $iMemoryLimitBytes >= 256 * 1024 * 1024) ? '' : '<font color="red"><b>memory_limit</b> must be at least 256M</font>';
48 
49 foreach ($aPhpExtensions as $sExtension) {
50  $aErrors[] = !extension_loaded($sExtension) ? '<font color="red"><b>' . $sExtension . '</b> extension isn\'t installed. <b>Warning!</b> Cheetah won\'t work properly without it.</font>' : '';
51 }
52 
53 $aErrors = array_diff($aErrors, array('')); //delete empty
54 if (count($aErrors)) {
55  $sErrors = implode(" <br /> ", $aErrors);
56 
57  if (!defined('CH_INSTALL_DO_NOT_EXIT_ON_ERROR')) {
58  echo <<<EOF
59 {$sErrors} <br />
60 Please go to the <br />
61 <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</a> <br />
62 and solve the problem.
63 EOF;
64  exit;
65  }
66 }
67 
68 error_reporting(E_ALL & ~E_NOTICE);
69 
70 
71 /*------------------------------*/
72 /*----------Vars----------------*/
73 
74 require_once('../inc/version.inc.php');
75 
76 $aConf = array();
77 $aConf['iVersion'] = $site['ver'];
78 $aConf['iPatch'] = $site['build'];
79 $aConf['dolFile'] = '../inc/header.inc.php';
80 $aConf['confDir'] = '../inc/';
81 $aConf['headerTempl'] = <<<EOS
82 <?php
83 
84 \$site['url'] = "%site_url%";
85 \$admin_dir = "administration";
86 \$iAdminPage = 0;
87 \$site['url_admin'] = "{\$site['url']}\$admin_dir/";
88 
89 \$site['mediaImages'] = "{\$site['url']}media/images/";
90 \$site['gallery'] = "{\$site['url']}media/images/gallery/";
91 \$site['flags'] = "{\$site['url']}media/images/flags/";
92 \$site['banners'] = "{\$site['url']}media/images/banners/";
93 \$site['tmp'] = "{\$site['url']}tmp/";
94 \$site['plugins'] = "{\$site['url']}plugins/";
95 \$site['base'] = "{\$site['url']}templates/base/";
96 
97 \$site['bugReportMail'] = "%bug_report_email%";
98 \$site['logError'] = true;
99 \$site['fullError'] = false;
100 \$site['emailError'] = true;
101 
102 \$dir['root'] = "%dir_root%";
103 \$dir['inc'] = "{\$dir['root']}inc/";
104 \$dir['profileImage'] = "{\$dir['root']}media/images/profile/";
105 
106 \$dir['mediaImages'] = "{\$dir['root']}media/images/";
107 \$dir['gallery'] = "{\$dir['root']}media/images/gallery/";
108 \$dir['flags'] = "{\$dir['root']}media/images/flags/";
109 \$dir['banners'] = "{\$dir['root']}media/images/banners/";
110 \$dir['tmp'] = "{\$dir['root']}tmp/";
111 \$dir['cache'] = "{\$dir['root']}cache/";
112 \$dir['plugins'] = "{\$dir['root']}plugins/";
113 \$dir['base'] = "{\$dir['root']}templates/base/";
114 \$dir['classes'] = "{\$dir['inc']}classes/";
115 
116 \$PHPBIN = "%dir_php%";
117 
118 \$db['host'] = '%db_host%';
119 \$db['sock'] = '%db_sock%';
120 \$db['port'] = '%db_port%';
121 \$db['user'] = '%db_user%';
122 \$db['passwd'] = '%db_password%';
123 \$db['db'] = '%db_name%';
124 \$db['persistent'] = true;
125 
126 define('CH_WSB_URL_ROOT', \$site['url']);
127 define('CH_WSB_URL_ADMIN', \$site['url_admin']);
128 define('CH_WSB_URL_PLUGINS', \$site['plugins']);
129 define('CH_WSB_URL_MODULES', \$site['url'] . 'modules/' );
130 define('CH_WSB_URL_CACHE_PUBLIC', \$site['url'] . 'cache_public/');
131 
132 define('CH_WSB_LOG_ERROR', \$site['logError']);
133 define('CH_WSB_FULL_ERROR', \$site['fullError']);
134 define('CH_WSB_EMAIL_ERROR', \$site['emailError']);
135 define('CH_WSB_REPORT_EMAIL', \$site['bugReportMail']);
136 
137 define('CH_DIRECTORY_PATH_INC', \$dir['inc']);
138 define('CH_DIRECTORY_PATH_TMP', \$dir['tmp']);
139 define('CH_DIRECTORY_PATH_ROOT', \$dir['root']);
140 define('CH_DIRECTORY_PATH_BASE', \$dir['base']);
141 define('CH_DIRECTORY_PATH_CACHE', \$dir['cache']);
142 define('CH_DIRECTORY_PATH_CLASSES', \$dir['classes']);
143 define('CH_DIRECTORY_PATH_PLUGINS', \$dir['plugins']);
144 define('CH_DIRECTORY_PATH_DBCACHE', \$dir['cache']);
145 define('CH_DIRECTORY_PATH_MODULES', \$dir['root'] . 'modules/' );
146 define('CH_DIRECTORY_PATH_CACHE_PUBLIC', \$dir['root'] . 'cache_public/' );
147 
148 define('DATABASE_HOST', \$db['host']);
149 define('DATABASE_SOCK', \$db['sock']);
150 define('DATABASE_PORT', \$db['port']);
151 define('DATABASE_USER', \$db['user']);
152 define('DATABASE_PASS', \$db['passwd']);
153 define('DATABASE_NAME', \$db['db']);
154 define('DATABASE_PERSISTENT', \$db['persistent']);
155 
156 define('CH_WSB_SPLASH_VIS_DISABLE', 'disable');
157 define('CH_WSB_SPLASH_VIS_INDEX', 'index');
158 define('CH_WSB_SPLASH_VIS_ALL', 'all');
159 
160 
161 define('CHECK_CHEETAH_REQUIREMENTS', 1);
162 if (defined('CHECK_CHEETAH_REQUIREMENTS')) {
163  \$aErrors = array();
164  \$aErrors[] = (ini_get('register_globals') == 0) ? '' : '<font color="red">register_globals is On (warning, you should have this param in the Off state, or your site will be unsafe)</font>';
165  \$aErrors[] = (ini_get('safe_mode') == 0) ? '' : '<font color="red">safe_mode is On, disable it</font>';
166  \$aErrors[] = (version_compare(PHP_VERSION, '5.4.0', '<')) ? '<font color="red">PHP version too old, please update to PHP 5.4.0 at least</font>' : '';
167  \$aErrors[] = (!extension_loaded( 'mbstring')) ? '<font color="red">mbstring extension not installed. <b>Warning!</b> Cheetah cannot work without <b>mbstring</b> extension.</font>' : '';
168  \$aErrors[] = (ini_get('short_open_tag') == 0 && version_compare(phpversion(), "5.4", "<") == 1) ? '<font color="red">short_open_tag is Off (must be On!)<b>Warning!</b> Cheetah cannot work without <b>short_open_tag</b>.</font>' : '';
169  \$aErrors[] = (ini_get('allow_url_include') == 0) ? '' : '<font color="red">allow_url_include is On (warning, you should have this param in the Off state, or your site will be unsafe)</font>';
170 
171  \$aErrors = array_diff(\$aErrors, array('')); //delete empty
172  if (count(\$aErrors)) {
173  \$sErrors = implode(" <br /> ", \$aErrors);
174  echo <<<EOF
175 {\$sErrors} <br />
176 Please go to the <br />
177 <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</a> <br />
178 and solve the problem.
179 EOF;
180  exit;
181  }
182 }
183 
184 
185 //check correct hostname
186 \$aUrl = parse_url( \$site['url'] );
187 \$iPortDefault = 'https' == \$aUrl['scheme'] ? '443' : '80';
188 if ( isset(\$_SERVER['HTTP_HOST']) and 0 != strcasecmp(\$_SERVER['HTTP_HOST'], \$aUrl['host']) and 0 != strcasecmp(\$_SERVER['HTTP_HOST'], \$aUrl['host'] . ':' . (!empty(\$aUrl['port']) ? \$aUrl['port'] : \$iPortDefault)) ) {
189  \$sPort = empty(\$aUrl['port']) || 80 == \$aUrl['port'] || 443 == \$aUrl['port'] ? '' : ':' . \$aUrl['port'];
190  header( "Location:{\$aUrl['scheme']}://{\$aUrl['host']}{\$sPort}{\$_SERVER['REQUEST_URI']}", true, 301 );
191  exit;
192 }
193 
194 
195 // check if install folder exists
196 if ( !defined ('CH_SKIP_INSTALL_CHECK') && file_exists( \$dir['root'] . 'install' ) ) {
197  \$ret = <<<EOJ
198 <!DOCTYPE html>
199 <html>
200 <head>
201  <title>Cheetah Installed</title>
202  <link href="{\$site['url']}install/general.css" rel="stylesheet" type="text/css" />
203  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
204 </head>
205 <body class="ch-def-font">
206  <div class="adm-header">
207  <div class="adm-header-content">
208  <div class="adm-header-title ch-def-margin-sec-left">
209  <div class="adm-header-logo"><img src="{\$site['url']}install/images/cheetah-white.svg" /></div>
210  <div class="adm-header-text ch-def-font-h1">CHEETAH</div>
211  <div class="clear_both">&nbsp;</div>
212  </div>
213  <div class="clear_both">&nbsp;</div>
214  </div>
215  </div>
216  <div id="ch-install-main" class="ch-def-border ch-def-round-corners ch-def-margin-top ch-def-margin-bottom">
217  <div id="ch-install-content" class="ch-def-padding">
218  <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
219  The installation was successful. Cheetah is now installed.
220  </div>
221  <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed">
222  Remove directory called <b>"install"</b> from your server and <a href="{\$site['url']}administration/modules.php">proceed to Admin Panel to install modules</a>.
223  </div>
224  </div>
225  </div>
226 </body>
227 </html>
228 EOJ;
229  echo \$ret;
230  exit();
231 }
232 
233 // set error reporting level
234 // only show errors, hide notices, deprecated and strict warnings
235 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING);
236 
237 // set default encoding for multibyte functions
238 mb_internal_encoding('UTF-8');
239 mb_regex_encoding('UTF-8');
240 
241 require_once(CH_DIRECTORY_PATH_INC . "version.inc.php");
242 require_once(CH_DIRECTORY_PATH_ROOT . "flash/modules/global/inc/header.inc.php");
243 require_once(CH_DIRECTORY_PATH_ROOT . "flash/modules/global/inc/content.inc.php");
244 require_once(CH_DIRECTORY_PATH_CLASSES . "ChWsbService.php");
245 require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
246 require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbExceptionHandler.php');
247 
248 set_exception_handler([new ChWsbExceptionHandler(), 'handle']);
249 
250 \$oZ = new ChWsbAlerts('system', 'begin', 0);
251 \$oZ->alert();
252 
253 EOS;
254 
255 $aConf['periodicTempl'] = <<<EOS
256 MAILTO=%site_email%<br />
257 * * * * * cd %dir_root%periodic; %dir_php% -q cron.php<br />
258 EOS;
259 
260 $confFirst = array();
261 $confFirst['site_url'] = array(
262  'name' => "Site URL",
263  'ex' => "http://www.mydomain.com/path/",
264  'desc' => "Your site URL (slash at the end is required)",
265  'def' => "http://",
266  'def_exp' => function () {
267  if(isSecure()) {
268  $sProtocol = "https://";
269  } else {
270  $sProtocol = "http://";
271  }
272  $str = $sProtocol . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
273  return preg_replace("/install\/(index\.php$)/", "", $str);
274  },
275  'check' => function ($arg0) { return strlen($arg0) >= 10 ? true : false; }
276 );
277 $confFirst['dir_root'] = array(
278  'name' => "Directory root",
279  'ex' => "/path/to/your/script/files/",
280  'desc' => "Path to the directory where your Cheetah files are located (slash at the end is required)",
281  'def_exp' => function () {
282  $str = rtrim($_SERVER['DOCUMENT_ROOT'], '/') . $_SERVER['PHP_SELF'];
283  return preg_replace("/install\/(index\.php$)/", "", $str);
284  },
285  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
286 );
287 
288 $sPleskPath = '/opt/plesk/php/' . PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '/bin/php';
289 
290 $confFirst['dir_php'] = array(
291  'name' => "Path to php binary",
292  'ex' => "/usr/local/bin/php",
293  'desc' => "Full path to your PHP interpreter",
294  'def' => "/usr/local/bin/php",
295  'def_exp' => function () {
296  if ( file_exists("/usr/local/bin/php") ) return "/usr/local/bin/php";
297  if ( file_exists("/usr/bin/php") ) return "/usr/bin/php";
298  if ( file_exists($sPleskPath) ) return $sPleskPath;
299  $fp = popen ( "whereis php", "r");
300  if ( $fp ) {
301  $s = fgets($fp);
302  $s = sscanf($s, "php: %s");
303  if ( file_exists("$s[0]") ) return "$s[0]";
304  }
305  return '';
306  },
307  'check' => function ($arg0) { return strlen($arg0) >= 7 ? true : false; }
308 );
309 $aDbConf = array();
310 $aDbConf['sql_file'] = array(
311  'name' => "SQL file",
312  'ex' => "/home/cheetah/public_html/install/sql/vXX.sql",
313  'desc' => "SQL file location",
314  'def' => "./sql/vXX.sql",
315  'def_exp' => function () {
316  if ( !( $dir = opendir( "sql/" ) ) )
317  return "";
318  while (false !== ($file = readdir($dir))) {
319  if ( substr($file,-3) != 'sql' ) continue;
320  closedir( $dir );
321  return "./sql/$file";
322  }
323  closedir( $dir );
324  return "";
325  },
326  'check' => function ($arg0) { return strlen($arg0) >= 4 ? true : false; }
327 );
328 $aDbConf['db_host'] = array(
329  'name' => "Database host name",
330  'ex' => "localhost",
331  'desc' => "MySQL database host name",
332  'def' => "localhost",
333  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
334 );
335 $aDbConf['db_port'] = array(
336  'name' => "Database host port number",
337  'ex' => "5506",
338  'desc' => "Leave blank for default value or specify MySQL database host port number",
339  'def' => "",
340  'check' => ''
341 );
342 $aDbConf['db_sock'] = array(
343  'name' => "Database socket path",
344  'ex' => "/tmp/mysql50.sock",
345  'desc' => "Leave blank for default value or specify MySQL database socket path",
346  'def' => "",
347  'check' => ''
348 );
349 $aDbConf['db_name'] = array(
350  'name' => "Database name",
351  'ex' => "user_cheetah",
352  'desc' => "MySQL database name",
353  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
354 );
355 $aDbConf['db_user'] = array(
356  'name' => "Database user",
357  'ex' => "YourName",
358  'desc' => "MySQL database user name with read/write access",
359  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
360 );
361 $aDbConf['db_password'] = array(
362  'name' => "Database password",
363  'ex' => "MySuperSecretWord",
364  'desc' => "MySQL database password",
365  'check' => function ($arg0) { return strlen($arg0) >= 0 ? true : false; }
366 );
367 
368 $aGeneral = array();
369 $aGeneral['site_title'] = array(
370  'name' => "Site Title",
371  'ex' => "The Best Community",
372  'desc' => "The name of your site",
373  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
374 );
375 $aGeneral['site_desc'] = array(
376  'name' => "Site Description",
377  'ex' => "The place to find new friends, communicate and have fun.",
378  'desc' => "Meta description of your site",
379  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
380 );
381 $aGeneral['site_email'] = array(
382  'name' => "Site e-mail",
383  'ex' => "admin@your.site",
384  'desc' => "Site e-mail",
385  'check' => function ($arg0) { return strlen($arg0) > 0 AND strstr($arg0,"@") ? true : false; }
386 );
387 $aGeneral['notify_email'] = array(
388  'name' => "Notify e-mail",
389  'ex' => "no-reply@your.site",
390  'desc' => "Email to send site notifications from",
391  'check' => function ($arg0) { return strlen($arg0) > 0 AND strstr($arg0,"@") ? true : false; }
392 );
393 $aGeneral['bug_report_email'] = array(
394  'name' => "Bug report email",
395  'ex' => "admin@your.site",
396  'desc' => "Email for receiving bug reports",
397  'check' => function ($arg0) { return strlen($arg0) > 0 AND strstr($arg0,"@") ? true : false; }
398 );
399 $aGeneral['admin_username'] = array(
400  'name' => "Admin Username",
401  'ex' => "admin",
402  'desc' => "Username to login to the administration area of the site",
403  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
404 );
405 $aGeneral['admin_password'] = array(
406  'name' => "Admin Password",
407  'ex' => "MySuperSecretWord",
408  'desc' => "Secure admin password",
409  'check' => function ($arg0) { return strlen($arg0) >= 1 ? true : false; }
410 );
411 
413  'cheetah/shared_photo/',
414 );
415 
417  'inc',
418 );
419 
420 /*----------Vars----------------*/
421 /*------------------------------*/
422 
423 
424 $sAction = $_REQUEST['action'];
425 $sError = '';
426 
427 define('CH_SKIP_INSTALL_CHECK', true);
428 // --------------------------------------------
429 if ($sAction == 'step6' || $sAction == 'step7' || $sAction == 'compile_languages') {
430  require_once('../inc/header.inc.php');
431  require_once(CH_DIRECTORY_PATH_INC . 'db.inc.php');
432  require_once(CH_DIRECTORY_PATH_INC . 'design.inc.php');
433 }
434 // --------------------------------------------
435 require_once('../inc/classes/ChWsbIO.php');
436 
437 
439 
440 mb_internal_encoding('UTF-8');
441 
443  echo PageHeader($sAction, $sError);
445  echo PageFooter($sAction);
446 }
447 
448 function isSecure() {
449  return
450  (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off')
451  || $_SERVER['SERVER_PORT'] == 443;
452 }
453 
455 {
457 
458  $sRet = '';
459 
460  switch ($_REQUEST['action']) {
461  case 'compile_languages':
463  $sRet .= 'Default Cheetah language was recompiled';
464  break;
465 
466  case 'step7':
467  $sRet .= genMainCheetahPage();
468  break;
469 
470  case 'step6':
471  $sErrorMessage = checkPostInstallPermissions($sError);
472  $sRet .= (strlen($sErrorMessage)) ? genPostInstallPermissionTable($sErrorMessage) : genMainCheetahPage();
473  break;
474 
475  case 'step5':
477  break;
478 
479  case 'step4':
480  $sErrorMessage = checkConfigArray($aGeneral, $sError);
481  $sRet .= (strlen($sErrorMessage)) ? genSiteGeneralConfig($sErrorMessage) : genInstallationProcessPage();
482  break;
483 
484  case 'step3':
485  $sErrorMessage = checkConfigArray($aDbConf, $sError);
486  $sErrorMessage .= CheckSQLParams();
487 
488  $sRet .= (strlen($sErrorMessage)) ? genDatabaseConfig($sErrorMessage) : genSiteGeneralConfig();
489  break;
490 
491  case 'step2':
492  $sErrorMessage = checkConfigArray($confFirst, $sError);
493  $sRet .= (strlen($sErrorMessage)) ? genPathCheckingConfig($sErrorMessage) : genDatabaseConfig();
494  break;
495 
496  case 'step1':
497  $sErrorMessage = checkPreInstallPermission($sError);
498  $sRet .= (strlen($sErrorMessage)) ? genPreInstallPermissionTable($sErrorMessage) : genPathCheckingConfig();
499  break;
500 
501  case 'preInstall':
502  $sRet .= genPreInstallPermissionTable();
503  break;
504 
505  case 'empty':
506  break;
507 
508  default:
509  $sRet .= StartInstall();
510  break;
511  }
512 
513  return $sRet;
514 }
515 
517 {
518  db_res("TRUNCATE TABLE `sys_localization_languages`");
519  db_res("TRUNCATE TABLE `sys_localization_keys`");
520  db_res("TRUNCATE TABLE `sys_localization_strings`");
521 
522  if (!($sLangsDir = opendir(CH_DIRECTORY_PATH_ROOT . 'install/langs/'))) {
523  return;
524  }
525  while (false !== ($sFilename = readdir($sLangsDir))) {
526  if (substr($sFilename, -3) == 'php') {
527  unset($LANG);
528  unset($LANG_INFO);
529  require_once(CH_DIRECTORY_PATH_ROOT . 'install/langs/' . $sFilename);
531  }
532  }
533  closedir($sLangsDir);
534  compileLanguage();
535 }
536 
537 function walkThroughLanguage($aLanguage, $aLangInfo)
538 {
539  $sLangName = $aLangInfo['Name'];
540  $sLangFlag = $aLangInfo['Flag'];
541  $sLangTitle = $aLangInfo['Title'];
542  $sLangDir = isset($aLangInfo['Direction']) && $aLangInfo['Direction'] ? $aLangInfo['Direction'] : 'LTR';
543  $sLangCountryCode = isset($aLangInfo['LanguageCountry']) && $aLangInfo['LanguageCountry'] ? $aLangInfo['LanguageCountry'] : $aLangInfo['Name'] . '_' . strtoupper($aLangInfo['Flag']);
544  $sInsertLanguageSQL = "INSERT INTO `sys_localization_languages` VALUES (NULL, '{$sLangName}', '{$sLangFlag}', '{$sLangTitle}', '{$sLangDir}', '{$sLangCountryCode}')";
545  db_res($sInsertLanguageSQL);
546  $iLangKey = db_last_id();
547 
548  foreach ($aLanguage as $sKey => $sValue) {
549  $sDqKey = str_replace("'", "''", $sKey);
550  $sDqValue = str_replace("'", "''", $sValue);
551 
552  $iExistedKey = (int)db_value("SELECT `ID` FROM `sys_localization_keys` WHERE `Key`='{$sDqKey}'");
553  if ($iExistedKey > 0) { // Key exists, no need insert key
554  } else {
555  $sInsertKeySQL = "INSERT INTO `sys_localization_keys` VALUES(NULL, 1, '{$sDqKey}')";
556  db_res($sInsertKeySQL);
557  $iExistedKey = db_last_id();
558  }
559 
560  $sInsertValueSQL = "INSERT INTO `sys_localization_strings` VALUES({$iExistedKey}, {$iLangKey}, '{$sDqValue}');";
561  db_res($sInsertValueSQL);
562  }
563 }
564 
565 
566 function genInstallationProcessPage($sErrorMessage = '')
567 {
569 
570  $sAdminName = $_REQUEST['admin_username'];
571  $sAdminPassword = $_REQUEST['admin_password'];
572  $resRunSQL = RunSQL($sAdminName, $sAdminPassword);
573 
574  $sForm = '';
575 
576  if ('done' == $resRunSQL) {
577  $sForm = '
578  <form action="' . $_SERVER['PHP_SELF'] . '" method="post">
579  <input type="submit" value="Next" class="ch-btn ch-btn-primary" />
580  <input type="hidden" name="action" value="step5" />
581  </form>';
582  } else {
583  $sForm = $resRunSQL . '
584  <form action="' . $_SERVER['PHP_SELF'] . '" method="post">
585  <input type="submit" value="Back" class="ch-btn" />';
586  foreach ($_POST as $sKey => $sValue) {
587  if ($sKey != "action") {
588  $sForm .= '<input type="hidden" name="' . $sKey . '" value="' . $sValue . '" />';
589  }
590  }
591  $sForm .= '<input type="hidden" name="action" value="step2" />
592  </form>';
593 
594  return $sForm;
595  }
596 
597  foreach ($confFirst as $key => $val) {
598  $aConf['headerTempl'] = str_replace("%$key%", $_POST[$key], $aConf['headerTempl']);
599  }
600  foreach ($aDbConf as $key => $val) {
601  $aConf['headerTempl'] = str_replace("%$key%", $_POST[$key], $aConf['headerTempl']);
602  }
603  foreach ($aGeneral as $key => $val) {
604  $aConf['headerTempl'] = str_replace("%$key%", $_POST[$key], $aConf['headerTempl']);
605  }
606 
607  $aConf['periodicTempl'] = str_replace("%site_email%", $_POST['site_email'], $aConf['periodicTempl']);
608  $aConf['periodicTempl'] = str_replace("%dir_root%", $_POST['dir_root'], $aConf['periodicTempl']);
609  $aConf['periodicTempl'] = str_replace("%dir_php%", $_POST['dir_php'], $aConf['periodicTempl']);
610 
611  $sInnerCode .= "<div class=\"ch-install-debug ch-def-border ch-def-padding-sec\">{$aConf['periodicTempl']}</div>";
612 
613 
614  $fp = fopen($aConf['dolFile'], 'w');
615  if ($fp) {
616  fputs($fp, $aConf['headerTempl']);
617  fclose($fp);
618  chmod($aConf['dolFile'], 0666);
619  } else {
620  $trans = get_html_translation_table(HTML_ENTITIES);
621  $templ = strtr($aConf['headerTempl'], $trans);
622  $text = 'Warning!!! can not get write access to config file ' . $aConf['dolFile'] . '. Please save config file below manually:</font><br>';
623  $sInnerCode .= '<div class="ch-def-margin-top">';
624  $sInnerCode .= printInstallError($text);
625  $sInnerCode .= '<textarea cols="20" rows="10" class="headerTextarea ch-def-font ch-def-round-corners-with-border">' . $aConf['headerTempl'] . '</textarea>';
626  $sInnerCode .= '</div>';
627  }
628 
629  return <<<EOF
630 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
631  Cron Jobs
632 </div>
633 
634 <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed ch-def-margin-bottom">
635  Setup Cron Jobs as specified below. Helpful info about Cron Jobs is <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-detailed-install-guide#InstallScript-Step5-CronJobs" target="_blank">available here</a>.
636 </div>
637 
638 {$sInnerCode}
639 
640 
641 <div class="ch-install-buttons ch-def-margin-top">
642  {$sForm}
643 </div>
644 
645 EOF;
646 
647 }
648 
649 function isAdmin()
650 {
651  return false;
652 }
653 
654 // check of step 5
656 {
658 
659  $sFoldersErr = $sFilesErr = $sErrorMessage = '';
660 
661  require_once('../inc/classes/ChWsbAdminTools.php');
662  $oAdmTools = new ChWsbAdminTools();
663  $oChWsbIO = new ChWsbIO();
664 
665  $aInstallDirsMerged = array_merge($aTemporalityWritableFolders, $oAdmTools->aPostInstallPermDirs);
666  foreach ($aInstallDirsMerged as $sFolder) {
667  if ($oChWsbIO->isWritable($sFolder)) {
668  $sFoldersErr .= '&nbsp;&nbsp;&nbsp;' . $sFolder . ';<br />';
669  }
670  }
671  if (strlen($sFoldersErr)) {
672  $sError = 'error';
673  $sErrorMessage .= '<strong>The following directories have inappropriate permissions</strong>:<br />' . $sFoldersErr;
674  }
675  foreach ($oAdmTools->aPostInstallPermFiles as $sFile) {
676  if ($oChWsbIO->isWritable($sFile)) {
677  $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
678  }
679  }
680 
681  if (strlen($sFilesErr)) {
682  $sError = 'error';
683  $sErrorMessage .= '<strong>The following files have inappropriate permissions</strong>:<br />' . $sFilesErr;
684  }
685 
686  return $sErrorMessage;
687 }
688 
689 // step 5
690 function genPostInstallPermissionTable($sErrorMessage = '')
691 {
693 
694  $sCurPage = $_SERVER['PHP_SELF'];
695  $sPostFolders = $sPostFiles = '';
696 
697  $sErrors = printInstallError($sErrorMessage);
698 
699  require_once('../inc/classes/ChWsbAdminTools.php');
700  $oAdmTools = new ChWsbAdminTools();
701  $oChWsbIO = new ChWsbIO();
702 
703  $aInstallDirsMerged = array_merge($aTemporalityWritableFolders, $oAdmTools->aPostInstallPermDirs);
704  $i = 0;
705  foreach ($aInstallDirsMerged as $sFolder) {
706  $sStyleAdd = (($i % 2) == 0) ? 'background-color:#ede9e9;' : 'background-color:#fff;';
707 
708  $sEachFolder = ($oChWsbIO->isWritable($sFolder))
709  ? '<span class="unwritable">Writable</span>' : '<span class="writable">Non-writable</span>';
710 
711  $sPostFolders .= <<<EOF
712 <tr style="{$sStyleAdd}" class="cont">
713  <td>{$sFolder}</td>
714  <td class="span">
715  {$sEachFolder}
716  </td>
717  <td class="span">
718  <span class="desired">Non-writable</span>
719  </td>
720 </tr>
721 EOF;
722  $i++;
723  }
724 
725  $i = 0;
726  foreach ($oAdmTools->aPostInstallPermFiles as $sFile) {
727  $str = $_SERVER['DOCUMENT_ROOT'] . $_SERVER['PHP_SELF'];
728  $sFolder = preg_replace("/install\/(index\.php$)/", "", $str);
729 
730  if (file_exists($sFolder . $sFile)) {
731  $sStyleAdd = (($i % 2) == 0) ? 'background-color:#ede9e9;' : 'background-color:#fff;';
732 
733  $sEachFile = ($oChWsbIO->isWritable($sFile))
734  ? '<span class="unwritable">Writable</span>'
735  : '<span class="writable">Non-writable</span>';
736 
737  $sPostFiles .= <<<EOF
738 <tr style="{$sStyleAdd}" class="cont">
739  <td>{$sFile}</td>
740  <td class="span">
741  {$sEachFile}
742  </td>
743  <td class="span">
744  <span class="desired">Non-writable</span>
745  </td>
746 </tr>
747 EOF;
748  $i++;
749  }
750  }
751 
752  return <<<EOF
753 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
754  Permissions Reversal
755 </div>
756 
757 <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed ch-def-margin-bottom">
758  Reverse permissions for the files indicated below to keep your site secure. Helpful info about permissions is <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-detailed-install-guide#InstallScript-Step1-Permissions" target="_blank">available here</a>.
759 </div>
760 
761 {$sErrors}
762 
763 
764 <table cellpadding="0" cellspacing="1" width="100%" border="0" class="install_table">
765  <tr class="head">
766  <td>Directories</td>
767  <td>Current Level</td>
768  <td>Desired Level</td>
769  </tr>
770  {$sPostFolders}
771  <tr class="head">
772  <td>Files</td>
773  <td>Current Level</td>
774  <td>Desired Level</td>
775  </tr>
776  {$sPostFiles}
777 </table>
778 
779 
780 <form id="ch-install-form-postInstallPerm-check" action="{$sCurPage}" method="post">
781  <input type="hidden" name="action" value="step5" />
782 </form>
783 
784 <form id="ch-install-form-postInstallPerm-next" action="{$sCurPage}" method="post">
785  <input type="hidden" name="action" value="step6" />
786 </form>
787 
788 <form id="ch-install-form-postInstallPerm-skip" action="{$sCurPage}" method="post">
789  <input type="hidden" name="action" value="step7" />
790 </form>
791 
792 <div class="ch-install-buttons ch-def-margin-top">
793  <button class="ch-btn" onclick="$('#ch-install-form-postInstallPerm-check').submit()">Reload</button>
794  <button class="ch-btn" onclick="$('#ch-install-form-postInstallPerm-skip').submit()">Skip</button>
795  <button class="ch-btn ch-btn-primary" onclick="$('#ch-install-form-postInstallPerm-next').submit()">Next</button>
796 </div>
797 
798 EOF;
799 }
800 
801 function genSiteGeneralConfig($sErrorMessage = '')
802 {
804 
805  $sCurPage = $_SERVER['PHP_SELF'];
806  $sSGParamsTable = createTable($aGeneral);
807 
808  $sErrors = '';
809  if (strlen($sErrorMessage)) {
810  $sErrors = printInstallError($sErrorMessage);
811  unset($_POST['site_title']);
812  unset($_POST['site_email']);
813  unset($_POST['notify_email']);
814  unset($_POST['bug_report_email']);
815  }
816 
817  $sOldDataParams = '';
818  foreach ($_POST as $postKey => $postValue) {
819  $sOldDataParams .= ('action' == $postKey || isset($aGeneral[$postKey])) ? '' : '<input type="hidden" name="' . $postKey . '" value="' . $postValue . '" />';
820  }
821 
822  return <<<EOF
823 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
824  Site Configuration
825 </div>
826 
827 {$sErrors}
828 
829 <form action="{$sCurPage}" method="post">
830  <table cellpadding="0" cellspacing="1" width="100%" border="0" class="install_table">
831  {$sSGParamsTable}
832  </table>
833 
834  <div class="ch-install-buttons ch-def-margin-top">
835  <input id="button" type="submit" value="Next" class="ch-btn ch-btn-primary" />
836  </div>
837 
838  <input type="hidden" name="action" value="step4" />
839 
840  {$sOldDataParams}
841 
842 </form>
843 EOF;
844 }
845 
846 // check of config pages steps
847 function checkConfigArray($aCheckedArray, &$sError)
848 {
849  $sErrorMessage = '';
850 
851  foreach ($aCheckedArray as $sKey => $sValue) {
852  if (!is_callable($sValue['check'])) {
853  continue;
854  }
855 
856  if (!$sValue['check']($_POST[$sKey])) {
857  $sFieldErr = $sValue['name'];
858  $sErrorMessage .= "Please, input valid data to <b>{$sFieldErr}</b> field<br />";
859  $error_arr[$sKey] = 1;
860  unset($_POST[$sKey]);
861  } else {
862  $error_arr[$sKey] = 0;
863  }
864 
865  //$config_arr[$sKey]['def'] = $_POST[$sKey];
866  }
867 
868  if (strlen($sErrorMessage)) {
869  $sError = 'error';
870  }
871 
872  return $sErrorMessage;
873 }
874 
875 function genDatabaseConfig($sErrorMessage = '')
876 {
878 
879  $sCurPage = $_SERVER['PHP_SELF'];
880  $sDbParamsTable = createTable($aDbConf);
881 
882  $sErrors = '';
883  if (!empty($sErrorMessage)) {
884  $sErrors = printInstallError($sErrorMessage);
885  unset($_POST['db_name']);
886  unset($_POST['db_user']);
887  unset($_POST['db_password']);
888  }
889 
890  $sOldDataParams = '';
891  foreach ($_POST as $postKey => $postValue) {
892  $sOldDataParams .= ('action' == $postKey || isset($aDbConf[$postKey])) ? '' : '<input type="hidden" name="' . $postKey . '" value="' . $postValue . '" />';
893  }
894 
895  return <<<EOF
896 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
897  Database
898 </div>
899 
900 <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed ch-def-margin-bottom">
901  Please <a target="_blank" href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-detailed-install-guide#Part2:CreateaDatabaseandaUser">create a database</a> and tell Cheetah about it.
902 </div>
903 
904 {$sErrors}
905 
906 <form action="{$sCurPage}" method="post">
907  <table cellpadding="0" cellspacing="1" width="100%" border="0" class="install_table">
908  {$sDbParamsTable}
909  </table>
910 
911 
912  <div class="ch-install-buttons ch-def-margin-top">
913  <input id="button" type="submit" value="Next" class="ch-btn ch-btn-primary" />
914  </div>
915 
916  <input type="hidden" name="action" value="step3" />
917 
918  {$sOldDataParams}
919 
920 </form>
921 EOF;
922 }
923 
924 function genPathCheckingConfig($sErrorMessage = '')
925 {
927 
928  $sCurPage = $_SERVER['PHP_SELF'];
929 
930  $sGDRes = (extension_loaded('gd')) ? '<span class="writable">Installed</span>'
931  : '<span class="unwritable">NOT installed</span>';
932 
933  $sError = printInstallError($sErrorMessage);
934  $sPathsTable = createTable($confFirst);
935 
936  return <<<EOF
937 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
938  Paths Check
939 </div>
940 
941 <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed ch-def-margin-bottom">
942  Cheetah checks general script paths.
943 </div>
944 
945 {$sError}
946 
947 <form action="{$sCurPage}" method="post">
948 
949  <table cellpadding="0" cellspacing="1" width="100%" border="0" class="install_table">
950  {$sPathsTable}
951  <tr class="cont" style="background-color:#ede9e9;">
952  <td>
953  GD Library
954  </td>
955  <td>
956  {$sGDRes}
957  </td>
958  </tr>
959  </table>
960 
961  <div class="ch-install-buttons ch-def-margin-top">
962  <input id="button" type="submit" value="Next" class="ch-btn ch-btn-primary" />
963  </div>
964 
965  <input type="hidden" name="action" value="step2" />
966 
967 </form>
968 EOF;
969 }
970 
972 {
974 
975  $sFoldersErr = $sFilesErr = $sErrorMessage = '';
976 
977  $oChWsbIO = new ChWsbIO();
978 
979  require_once('../inc/classes/ChWsbAdminTools.php');
980  $oAdmTools = new ChWsbAdminTools();
981 
982  $aInstallDirsMerged = array_merge($aTemporalityWritableFolders, $oAdmTools->aInstallDirs);
983  foreach ($aInstallDirsMerged as $sFolder) {
984  if (!$oChWsbIO->isWritable($sFolder)) {
985  $sFoldersErr .= '&nbsp;&nbsp;&nbsp;' . $sFolder . ';<br />';
986  }
987  }
988 
989  foreach ($oAdmTools->aFlashDirs as $sFolder) {
990  if (!$oChWsbIO->isWritable($sFolder)) {
991  $sFoldersErr .= '&nbsp;&nbsp;&nbsp;' . $sFolder . ';<br />';
992  }
993  }
994 
995  if (strlen($sFoldersErr)) {
996  $sError = 'error';
997  $sErrorMessage .= '<strong>The following directories have inappropriate permissions</strong>:<br />' . $sFoldersErr;
998  }
999 
1000  //foreach ($oAdmTools->aInstallFiles as $sFile) {
1001  // if (!$oChWsbIO->isWritable($sFile)) {
1002  // $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
1003  // }
1004  //}
1005  foreach ($oAdmTools->aInstallFiles as $sFile) {
1006  if (strpos($sFile, 'ffmpeg') === false) {
1007  if (!$oChWsbIO->isWritable($sFile)) {
1008  $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
1009  }
1010  } else {
1011  if (!$oChWsbIO->isExecutable($sFile)) {
1012  $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
1013  }
1014  }
1015  }
1016 
1017  foreach ($oAdmTools->aFlashFiles as $sFile) {
1018  if (strpos($sFile, 'ffmpeg') === false) {
1019  if (!$oChWsbIO->isWritable($sFile)) {
1020  $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
1021  }
1022  } else {
1023  if (!$oChWsbIO->isExecutable($sFile)) {
1024  $sFilesErr .= '&nbsp;&nbsp;&nbsp;' . $sFile . ';<br /> ';
1025  }
1026  }
1027  }
1028 
1029  if (strlen($sFilesErr)) {
1030  $sError = 'error';
1031  $sErrorMessage .= '<strong>The following files have inappropriate permissions</strong>:<br />' . $sFilesErr;
1032  }
1033 
1034  return $sErrorMessage;
1035 }
1036 
1037 // pre install
1038 function genPreInstallPermissionTable($sErrorMessage = '')
1039 {
1041 
1042  $sCurPage = $_SERVER['PHP_SELF'];
1043  $sErrorMessage .= (ini_get('safe_mode') == 1 || ini_get('safe_mode') == 'On') ? "Please turn off <b>safe_mode</b> in your php.ini file configuration" : '';
1044  $sError = printInstallError($sErrorMessage);
1045 
1046  require_once('../inc/classes/ChWsbAdminTools.php');
1047  $oAdmTools = new ChWsbAdminTools();
1048  $oAdmTools->aInstallDirs = array_merge($aTemporalityWritableFolders, $oAdmTools->aInstallDirs);
1049  $sPermTable = $oAdmTools->GenCommonCode();
1050  $sPermTable .= $oAdmTools->GenPermTable();
1051 
1052  return <<<EOF
1053 <div class="ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
1054  Permissions
1055 </div>
1056 
1057 <div class="ch-install-header-text ch-def-font-large ch-def-font-grayed ch-def-margin-bottom">
1058  Change permissions of files and directories as specified in the chart below. Helpful info about permissions is <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-detailed-install-guide#InstallScript-Step1-Permissions" target="_blank">available here</a>.
1059 </div>
1060 
1061 {$sError}
1062 
1063 {$sPermTable}
1064 
1065 
1066 <form id="ch-install-form-preInstall-check" action="{$sCurPage}" method="post">
1067  <input type="hidden" name="action" value="preInstall" />
1068 </form>
1069 
1070 <form id="ch-install-form-preInstall-next" action="{$sCurPage}" method="post">
1071  <input type="hidden" name="action" value="step1" />
1072 </form>
1073 
1074 <div class="ch-install-buttons ch-def-margin-top">
1075  <button class="ch-btn" onclick="$('#ch-install-form-preInstall-check').submit()">Reload</button>
1076  <button class="ch-btn ch-btn-primary" onclick="$('#ch-install-form-preInstall-next').submit()">Next</button>
1077 </div>
1078 
1079 EOF;
1080 }
1081 
1082 function StartInstall()
1083 {
1084  global $aConf;
1085 
1086  return <<<EOF
1087 <div class="ch-install-step-startInstall-cheetah-pic">
1088  <img src="../administration/templates/base/images/cheetah.svg" />
1089 </div>
1090 
1091 <div class="ch-install-buttons">
1092  <form action="{$_SERVER['PHP_SELF']}" method="post">
1093  <input id="button" type="submit" value="INSTALL" class="ch-btn ch-btn-primary" />
1094  <input type="hidden" name="action" value="preInstall" />
1095  </form>
1096 </div>
1097 
1098 <div class="ch-install-step-startInstall-text ch-def-font-large ch-def-margin-top">
1099  Cheetah {$aConf['iVersion']}.{$aConf['iPatch']} by <a href="https://www.cheetahwsb.com" target="_blank">Cheetah</a>
1100 </div>
1101 
1102 EOF;
1103 }
1104 
1106 {
1108 
1109  $sExistedAdminPass = db_value("SELECT `Password` FROM `Profiles` WHERE `ID`='1'");
1110 
1111  $aUrl = parse_url($GLOBALS['site']['url']);
1112  $sPath = isset($aUrl['path']) && !empty($aUrl['path']) ? $aUrl['path'] : '/';
1113  $sHost = '';
1114 
1115  $iCookieTime = 0;
1116  setcookie("memberID", 1, $iCookieTime, $sPath, $sHost);
1117  $_COOKIE['memberID'] = 1;
1118  setcookie("memberPassword", $sExistedAdminPass, $iCookieTime, $sPath, $sHost, false, true /* http only */);
1119  $_COOKIE['memberPassword'] = $sExistedAdminPass;
1120 
1121  return <<<EOF
1122 <script type="text/javascript">
1123  window.location = "../index.php";
1124 </script>
1125 EOF;
1126 }
1127 
1128 function PageHeader($sAction = '', $sError = '')
1129 {
1130  global $aConf;
1131 
1132  $aActions = array(
1133  "startInstall" => "Cheetah Installation",
1134  "preInstall" => "Permissions",
1135  "step1" => "Paths",
1136  "step2" => "Database",
1137  "step3" => "Config",
1138  "step4" => "Cron Jobs",
1139  "step5" => "Permissions Reversal",
1140  "step6" => "Modules"
1141  );
1142 
1143  if (!strlen($sAction)) {
1144  $sAction = "startInstall";
1145  }
1146 
1147  $iCounterCurrent = 1;
1148  $iCounterActive = 1;
1149 
1150  foreach ($aActions as $sActionKey => $sActionValue) {
1151  if ($sAction != $sActionKey) {
1152  $iCounterActive++;
1153  } else {
1154  break;
1155  }
1156  }
1157 
1158  if ($sError) {
1159  $iCounterActive--;
1160  }
1161 
1162  $sSubActions = '';
1163  foreach ($aActions as $sActionKey => $sActionValue) {
1164  if ($sActionKey == "startInstall" || $sActionKey == "step6") {
1165  $sSubActions .= '';
1166  } elseif ($iCounterActive == $iCounterCurrent) {
1167  $sSubActions .= '<div class="ch-install-top-menu-div">&#8250;</div><div class="ch-install-top-menu-active">' . $sActionValue . '</div>';
1168  } else {
1169  $sSubActions .= '<div class="ch-install-top-menu-div">&#8250;</div><div class="ch-install-top-menu-inactive">' . $sActionValue . '</div>';
1170  }
1171  $iCounterCurrent++;
1172  }
1173 
1174  return <<<EOF
1175 <!DOCTYPE html>
1176 <html>
1177 <head>
1178  <title>Cheetah Smart Community Builder Installation Script</title>
1179  <link href="general.css" rel="stylesheet" type="text/css" />
1180  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
1181  <script src="../plugins/jquery/jquery.js" type="text/javascript" language="javascript"></script>
1182  <script src="../inc/js/functions.js" type="text/javascript" language="javascript"></script>
1183 </head>
1184 <body class="ch-def-font">
1185 
1186  <div class="adm-header">
1187  <div class="adm-header-content">
1188  <div class="adm-header-title ch-def-margin-sec-left">
1189  <div class="adm-header-logo"><img src="images/cheetah-white.svg" /></div>
1190  <div class="adm-header-text ch-def-font-h1">CHEETAH</div>
1191  <div class="clear_both">&nbsp;</div>
1192  </div>
1193  <div id="ch-install-top-menu" class="ch-def-font-large">
1194  {$sSubActions}
1195  </div>
1196  <div class="clear_both">&nbsp;</div>
1197  </div>
1198  </div>
1199 
1200  <div id="ch-install-main" class="ch-def-border ch-def-round-corners ch-def-margin-top ch-def-margin-bottom">
1201  <div id="ch-install-content">
1202 
1203 
1204 
1205 EOF;
1206 }
1207 
1209 {
1210  return <<<EOF
1211 
1212 
1213  </div>
1214  </div>
1215 </body>
1216 </html>
1217 EOF;
1218 }
1219 
1220 function printInstallError($sText)
1221 {
1222  $sRet = (strlen($sText)) ? '<div class="ch-install-error ch-def-padding ch-def-margin-bottom ch-def-font-large">' . $sText . '</div>' : '';
1223 
1224  return $sRet;
1225 }
1226 
1227 function createTable($arr)
1228 {
1229  $ret = '';
1230  $i = 0;
1231  foreach ($arr as $key => $value) {
1232  $sStyleAdd = (($i % 2) == 0) ? 'background-color:#ede9e9;' : 'background-color:#fff;';
1233 
1234  $def_exp_text = "";
1235  if (is_callable($value['def_exp'])) {
1236  $def_exp = $value['def_exp']();
1237  if (strlen($def_exp)) {
1238  $def_exp_text = "&nbsp;<font color=green>found</font>";
1239  $value['def'] = $def_exp;
1240  } else {
1241  $def_exp_text = "&nbsp;<font color=red>not found</font>";
1242  }
1243  }
1244 
1245  $st_err = ($error_arr[$key] == 1) ? ' style="background-color:#FFDDDD;" ' : '';
1246 
1247  $ret .= <<<EOF
1248  <tr class="cont" style="{$sStyleAdd}">
1249  <td>
1250  <div><b>{$value['name']}</b></div>
1251  <div class="ch-def-font-grayed">Description:</div>
1252  <div class="ch-def-font-grayed">Example:</div>
1253  </td>
1254  <td>
1255  <div><input {$st_err} size="30" name="{$key}" value="{$value['def']}" class="ch-def-font ch-def-round-corners-with-border" /> {$def_exp_text}</div>
1256  <div class="ch-def-font-grayed">{$value['desc']}</div>
1257  <div class="ch-def-font-grayed" style="font-style:italic;">{$value['ex']}</div>
1258  </td>
1259  </tr>
1260 EOF;
1261  $i++;
1262  }
1263 
1264  return $ret;
1265 }
1266 
1267 function rewriteFile($sCode, $sReplace, $sFile)
1268 {
1269  $ret = '';
1270  $fs = filesize($sFile);
1271  $fp = fopen($sFile, 'r');
1272  if ($fp) {
1273  $fcontent = fread($fp, $fs);
1274  $fcontent = str_replace($sCode, $sReplace, $fcontent);
1275  fclose($fp);
1276  $fp = fopen($sFile, 'w');
1277  if ($fp) {
1278  if (fputs($fp, $fcontent)) {
1279  $ret .= true;
1280  } else {
1281  $ret .= false;
1282  }
1283  fclose($fp);
1284  } else {
1285  $ret .= false;
1286  }
1287  } else {
1288  $ret .= false;
1289  }
1290 
1291  return $ret;
1292 }
1293 
1294 function RunSQL($sAdminName, $sAdminPassword)
1295 {
1296  $aDbConf['host'] = $_POST['db_host'];
1297  $aDbConf['sock'] = $_POST['db_sock'];
1298  $aDbConf['port'] = $_POST['db_port'];
1299  $aDbConf['user'] = $_POST['db_user'];
1300  $aDbConf['passwd'] = $_POST['db_password'];
1301  $aDbConf['db'] = $_POST['db_name'];
1302 
1303 // $aDbConf['host'] .= ($aDbConf['port'] ? ":{$aDbConf['port']}" : '') . ($aDbConf['sock'] ? ":{$aDbConf['sock']}" : '');
1304 //
1305 // $pass = true;
1306  $errorMes = '';
1307  $filename = $_POST['sql_file'];
1308 
1309 // $vLink = @mysql_connect($aDbConf['host'], $aDbConf['user'], $aDbConf['passwd']);
1310 
1311  try {
1312  $sSocketOrHost = ($aDbConf['sock']) ? "unix_socket={$aDbConf['sock']}" : "host={$aDbConf['host']};port={$aDbConf['port']}";
1313  $vLink = new PDO(
1314  "mysql:{$sSocketOrHost};dbname={$aDbConf['db']};charset=utf8",
1315  $aDbConf['user'],
1316  $aDbConf['passwd'],
1317  [
1318  PDO::MYSQL_ATTR_INIT_COMMAND => 'SET sql_mode=""',
1319  PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
1320  PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
1321  PDO::ATTR_EMULATE_PREPARES => false
1322  ]
1323  );
1324  } catch (PDOException $e) {
1325  return printInstallError($e->getMessage());
1326  }
1327 
1328  if (!($f = fopen($filename, "r"))) {
1329  return printInstallError('Could not open file with sql instructions:' . $filename);
1330  }
1331 
1332  //Begin SQL script executing
1333  $s_sql = "";
1334  while ($s = fgets($f, 10240)) {
1335  $s = trim($s); //Utf with BOM only
1336 
1337  if (!strlen($s)) {
1338  continue;
1339  }
1340  if (mb_substr($s, 0, 1) == '#') {
1341  continue;
1342  } //pass comments
1343  if (mb_substr($s, 0, 2) == '--') {
1344  continue;
1345  }
1346  if (substr($s, 0, 5) == "\xEF\xBB\xBF\x2D\x2D") {
1347  continue;
1348  }
1349 
1350  $s_sql .= $s;
1351 
1352  if (mb_substr($s, -1) != ';') {
1353  continue;
1354  }
1355 
1356  try {
1357  $vLink->exec($s_sql);
1358  } catch (PDOException $e) {
1359  $errorMes .= 'Error while executing: ' . $s_sql . '<br />' . $e->getMessage() . '<hr />';
1360  }
1361 
1362  $s_sql = '';
1363  }
1364 
1365  $sAdminNameDB = $sAdminName;
1366  $sSiteEmail = $_POST['site_email'];
1367  $sSaltDB = base64_encode(substr(md5(microtime()), 2, 6));
1368  $sAdminPasswordDB = sha1(md5($sAdminPassword) . $sSaltDB); // encryptUserPwd
1369  $sAdminQuery = "
1370  INSERT INTO `Profiles`
1371  (`NickName`, `Email`, `Password`, `Salt`, `Status`, `Role`, `DateReg`)
1372  VALUES
1373  (?, ?, ?, ?, ?, ?, NOW())
1374  ";
1375 
1376  try {
1377  $stmt = $vLink->prepare($sAdminQuery);
1378  $stmt->execute([$sAdminNameDB, $sSiteEmail, $sAdminPasswordDB, $sSaltDB, 'Active', 3]);
1379  } catch (PDOException $e) {
1380  $errorMes .= 'Error while executing: ' . $s_sql . '<br />' . $e->getMessage() . '<hr />';
1381  }
1382 
1383  fclose($f);
1384 
1385  $enable_gd_value = extension_loaded('gd') ? 'on' : '';
1386  $ret = '';
1387 
1388  try {
1389  $stmt = $vLink->prepare("UPDATE `sys_options` SET `VALUE`= ? WHERE `Name`= ?");
1390  $stmt->execute([$enable_gd_value, 'enable_gd']);
1391  } catch (PDOException $e) {
1392  $ret .= "<font color=red><i><b>Error</b>:</i> " . $e->getMessage() . "</font><hr>";
1393  }
1394 
1395  $sSiteTitle = $_POST['site_title'];
1396  $sSiteDesc = $_POST['site_desc'];
1397  $sSiteEmailNotify = $_POST['notify_email'];
1398  if ($sSiteEmail != '' && $sSiteTitle != '' && $sSiteEmailNotify != '') {
1399  $stmt = $vLink->prepare("UPDATE `sys_options` SET `VALUE`= ? WHERE `Name`= ?");
1400 
1401  try {
1402  $stmt->execute([$sSiteEmail, 'site_email']);
1403  } catch (PDOException $e) {
1404  $ret .= "<font color=red><i><b>Error</b>:</i> " . $e->getMessage() . "</font><hr>";
1405  }
1406 
1407  try {
1408  $stmt->execute([$sSiteTitle, 'site_title']);
1409  } catch (PDOException $e) {
1410  $ret .= "<font color=red><i><b>Error</b>:</i> " . $e->getMessage() . "</font><hr>";
1411  }
1412 
1413  try {
1414  $stmt->execute([$sSiteEmailNotify, 'site_email_notify']);
1415  } catch (PDOException $e) {
1416  $ret .= "<font color=red><i><b>Error</b>:</i> " . $e->getMessage() . "</font><hr>";
1417  }
1418 
1419  try {
1420  $stmt->execute([$sSiteDesc, 'MetaDescription']);
1421  } catch (PDOException $e) {
1422  $ret .= "<font color=red><i><b>Error</b>:</i> " . $e->getMessage() . "</font><hr>";
1423  }
1424  } else {
1425  $ret .= "<font color=red><i><b>Error</b>:</i> Didn't received POSTed site_email or site_title or site_email_notify</font><hr>";
1426  }
1427 
1428  $vLink = null;
1429 
1430  $errorMes .= $ret;
1431 
1432  if (strlen($errorMes)) {
1433  return printInstallError($errorMes);
1434  } else {
1435  return 'done';
1436  }
1437 }
1438 
1439 function CheckSQLParams()
1440 {
1441  $aDbConf['host'] = $_POST['db_host'];
1442  $aDbConf['sock'] = $_POST['db_sock'];
1443  $aDbConf['port'] = $_POST['db_port'];
1444  $aDbConf['user'] = $_POST['db_user'];
1445  $aDbConf['passwd'] = $_POST['db_password'];
1446  $aDbConf['db'] = $_POST['db_name'];
1447 
1448  try {
1449  $sSocketOrHost = ($aDbConf['sock']) ? "unix_socket={$aDbConf['sock']}" : "host={$aDbConf['host']};port={$aDbConf['port']}";
1450  $vLink = new PDO(
1451  "mysql:{$sSocketOrHost};dbname={$aDbConf['db']};charset=utf8",
1452  $aDbConf['user'],
1453  $aDbConf['passwd'],
1454  [
1455  PDO::MYSQL_ATTR_INIT_COMMAND => 'SET sql_mode=""',
1456  PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
1457  PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
1458  PDO::ATTR_EMULATE_PREPARES => false
1459  ]
1460  );
1461  } catch (PDOException $e) {
1462  return printInstallError('MySQL error: ' . $e->getMessage());
1463  }
1464 
1465  $vLink = null;
1466 }
1467 
1468 // set error reporting level
1469 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);
Example
HTML DefinitionID introducing changes that the configuration object does not you must specify this variable If you change your custom you should change this or clear your cache Example
Definition: HTML.DefinitionID.txt:15
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
ChWsbIO
Definition: ChWsbIO.php:9
rewriteFile
rewriteFile($sCode, $sReplace, $sFile)
Definition: index.php:1267
$aGeneral
$aGeneral
Definition: index.php:368
$sPleskPath
$sPleskPath
Definition: index.php:288
installed
if(!defined("WIDGET_STATUS_NOT_INSTALLED")) define("WIDGET_STATUS_NOT_INSTALLED" not installed
Definition: constants.inc.php:19
Library
and distribute a copy of this License along with the Library You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Library or any portion of thus forming a work based on the Library
Definition: license.txt:163
true
if(!defined("TRUE_VAL")) define("TRUE_VAL" true
Definition: constants.inc.php:8
it
HTML AllowedModules you can quickly activate or disable these modules by specifying which modules you wish to allow with this directive This is most useful for unit testing specific although end users may find it useful for their own ends</p >< p > If you specify a module that does not the manager will silently fail to use it
Definition: HTML.AllowedModules.txt:16
createTable
createTable($arr)
Definition: index.php:1227
$f
global $f
Definition: callback.php:13
to
if the NMTOKENS definition is forced To get behavior of HTML Purifier prior to
Definition: Attr.ClassUseCDATA.txt:10
site
HTML ForbiddenElements the most requested feature ever in HTML Purifier Please don t abuse it ! This is the logical inverse of HTML and it will override that or any other directive</p >< p > If HTML Allowed is recommended over this because it can sometimes be difficult to tell whether or not you ve forbidden all of the behavior you would like to disallow If you forbid< code > img</code > with the expectation of preventing images on your site
Definition: HTML.ForbiddenElements.txt:16
compileLanguage
compileLanguage($langID=0)
Definition: languages.inc.php:301
name
Core AllowHostnameUnderscore underscores are not permitted in host most browsers do the right thing when faced with an underscore in the host name
Definition: Core.AllowHostnameUnderscore.txt:11
$db
if(!defined("DB_HOST")) define("DB_HOST" $db['host']
Definition: header.inc.php:18
$sCode
$sCode
Definition: explanation.php:19
$aNonDeletableModules
$aNonDeletableModules
Definition: index.php:412
$ret
$ret
Definition: index.php:39
checkConfigArray
checkConfigArray($aCheckedArray, &$sError)
Definition: index.php:847
$sAdminPassword
$sAdminPassword
Definition: header.inc.php:33
genSiteGeneralConfig
genSiteGeneralConfig($sErrorMessage='')
Definition: index.php:801
php
Admin
Definition: Admin.php:11
$sInstallPageContent
$sInstallPageContent
Definition: index.php:438
$oAdmTools
$oAdmTools
Definition: admin_tools.php:16
isAdmin
isAdmin()
Definition: index.php:649
genPreInstallPermissionTable
genPreInstallPermissionTable($sErrorMessage='')
Definition: index.php:1038
isSecure
if($sInstallPageContent) isSecure()
Definition: index.php:448
performInstallLanguages
performInstallLanguages()
Definition: index.php:516
a
Filter ExtractStyleBlocks Scope FilterParam ExtractStyleBlocksScope DESCRIPTION< p > If you would like users to be able to define external but only allow them to specify CSS declarations for a specific node and prevent them from fiddling with other use this directive It accepts any valid CSS and will prepend this to any CSS declaration extracted from the document For if this directive is set to< code > selector< code > a
Definition: Filter.ExtractStyleBlocks.Scope.txt:15
CheckSQLParams
CheckSQLParams()
Definition: index.php:1439
checkPreInstallPermission
checkPreInstallPermission(&$sError)
Definition: index.php:971
ChWsbAlerts
Definition: ChWsbAlerts.php:39
genInstallationProcessPage
genInstallationProcessPage($sErrorMessage='')
Definition: index.php:566
$sFile
$sFile
Definition: index.php:20
and
and
Definition: license.txt:18
ChWsbExceptionHandler
Definition: ChWsbExceptionHandler.php:9
$aErrors
switch($last) $aErrors
Definition: index.php:39
table
and distribute a copy of this License along with the Library You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Library or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these other than as an argument passed when the facility is then you must make a good faith effort to ensure in the event an application does not supply such function or table
Definition: license.txt:180
content
AutoFormat RemoveEmpty HTML Purifier will attempt to remove empty elements that contribute no semantic information to the document The following types of nodes will be and that are not empty and</li >< li > Tags with no content
Definition: AutoFormat.RemoveEmpty.txt:17
$GLOBALS
$GLOBALS['aRequest']
Definition: index.php:10
$aTemporalityWritableFolders
$aTemporalityWritableFolders
Definition: index.php:416
of
however that any such election will not serve to withdraw this and this License will continue in full force and effect unless terminated as stated above Miscellaneous Each time You Distribute or Publicly Perform the Work or a the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License Each time You Distribute or Publicly Perform an Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License If any provision of this License is invalid or unenforceable under applicable it shall not affect the validity or enforceability of the remainder of the terms of this and without further action by the parties to this such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent This License constitutes the entire agreement between the parties with respect to the Work licensed here There are no agreements or representations with respect to the Work not specified here Licensor shall not be bound by any additional provisions that may appear in any communication from You This License may not be modified without the mutual written agreement of the Licensor and You The rights granted and the subject matter in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic the Rome Convention of
Definition: license.txt:65
ChWsbAdminTools
Definition: ChWsbAdminTools.php:11
in
and in and other persons who play in
Definition: license.txt:18
exit
if(secureCheckWidgetName($sModule) &&file_exists($sRayHeaderPath) &&!empty($sModule) &&!empty($sApp) &&secureCheckWidgetName($sApp)) else exit
Definition: index.php:20
$site
$site['ver']
Definition: version.inc.php:8
db_last_id
db_last_id()
Definition: db.inc.php:47
$sFolder
$sFolder
Definition: index.php:15
$_REQUEST
$_REQUEST['action']
Definition: cmd.php:11
StartInstall
StartInstall()
Definition: index.php:1082
type
if(!defined("USER_STATUS_TYPE")) define("USER_STATUS_TYPE" type
Definition: constants.inc.php:13
src
img src
Definition: URI.MungeResources.txt:8
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
$last
$last
Definition: index.php:25
value
URI Base such as when URI MakeAbsolute is on You may use a non absolute URI for this value
Definition: URI.Base.txt:11
$s
$s
Definition: index.php:29
method
and that you are informed that you can do these things To protect your we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it For if you distribute copies of the whether gratis or for a you must give the recipients all the rights that we gave you You must make sure that receive or can get the source code If you link other code with the you must provide complete object files to the so that they can relink them with the library after making changes to the library and recompiling it And you must show them these terms so they know their rights We protect your rights with a two step method
Definition: license.txt:49
$aDbConf
$aDbConf
Definition: index.php:309
PageFooter
PageFooter($sAction)
Definition: index.php:1208
checkPostInstallPermissions
checkPostInstallPermissions(&$sError)
Definition: index.php:655
available
Core EscapeNonASCIICharacters which can be a real downer for encodings like Big5 It also assumes that the ASCII repetoire is available
Definition: Core.EscapeNonASCIICharacters.txt:11
$aPhpExtensions
$aPhpExtensions
Definition: index.php:8
genPathCheckingConfig
genPathCheckingConfig($sErrorMessage='')
Definition: index.php:924
$sAction
$sAction
Definition: index.php:424
InstallPageContent
InstallPageContent(&$sError)
Definition: index.php:454
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
about
see also HTML Allowed which lets you set allowed elements and attributes at the same time</p >< p > If you attempt to allow an element that HTML Purifier does not know about
Definition: HTML.AllowedElements.txt:15
modules
HTML AllowedModules you can quickly activate or disable these modules by specifying which modules you wish to allow with this directive This is most useful for unit testing specific modules
Definition: HTML.AllowedModules.txt:12
printInstallError
printInstallError($sText)
Definition: index.php:1220
walkThroughLanguage
walkThroughLanguage($aLanguage, $aLangInfo)
Definition: index.php:537
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
$LANG_INFO
$LANG_INFO
Definition: lang-en.php:8
genPostInstallPermissionTable
genPostInstallPermissionTable($sErrorMessage='')
Definition: index.php:690
genMainCheetahPage
genMainCheetahPage()
Definition: index.php:1105
$confFirst
$confFirst
Definition: index.php:260
PageHeader
PageHeader($sAction='', $sError='')
Definition: index.php:1128
RunSQL
RunSQL($sAdminName, $sAdminPassword)
Definition: index.php:1294
Please
Please
Definition: install.txt:1
$sForm
$sForm
Definition: forgot.php:118
$aConf
$aConf
Definition: index.php:76
b
el b
Definition: Output.SortAttr.txt:8
$sError
$sError
Definition: index.php:425
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
genDatabaseConfig
genDatabaseConfig($sErrorMessage='')
Definition: index.php:875
$iMemoryLimitBytes
$iMemoryLimitBytes
Definition: index.php:24
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
http
AutoFormat Linkify auto linking http
Definition: AutoFormat.Linkify.txt:8
general
this License is not intended to restrict the license of any rights under applicable law Creative Commons Notice Creative Commons is not a party to this and makes no warranty whatsoever in connection with the Work Creative Commons will not be liable to You or any party on any legal theory for any damages including without limitation any general
Definition: license.txt:69
form
iii in the case of the organization that transmits the broadcast Work means the literary and or artistic work offered under the terms of this License including without limitation any production in the scientific and artistic whatever may be the mode or form of its expression including digital form
Definition: license.txt:19
$LANG
$LANG
Definition: lang-en.php:12
$dir
$dir
Definition: config.php:10