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>';
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>' :
'';
55 $sErrors = implode(
" <br /> ",
$aErrors);
57 if (!defined(
'CH_INSTALL_DO_NOT_EXIT_ON_ERROR')) {
61 <
a href=
"https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</
a> <br />
62 and solve the problem.
68 error_reporting(E_ALL & ~E_NOTICE);
74 require_once(
'../inc/version.inc.php');
79 $aConf[
'dolFile'] =
'../inc/header.inc.php';
84 \$site[
'url'] =
"%site_url%";
85 \$admin_dir =
"administration";
87 \$site[
'url_admin'] =
"{\$site['url']}\$admin_dir/";
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/";
97 \$site[
'bugReportMail'] =
"%bug_report_email%";
98 \$site[
'logError'] =
true;
99 \$site[
'fullError'] =
false;
100 \$site[
'emailError'] =
true;
102 \$dir[
'root'] =
"%dir_root%";
103 \$dir[
'inc'] =
"{\$dir['root']}inc/";
104 \$dir[
'profileImage'] =
"{\$dir['root']}media/images/profile/";
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/";
116 \$PHPBIN =
"%dir_php%";
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;
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/');
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']);
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/' );
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']);
156 define(
'CH_WSB_SPLASH_VIS_DISABLE',
'disable');
157 define(
'CH_WSB_SPLASH_VIS_INDEX',
'index');
158 define(
'CH_WSB_SPLASH_VIS_ALL',
'all');
161 define(
'CHECK_CHEETAH_REQUIREMENTS', 1);
162 if (defined(
'CHECK_CHEETAH_REQUIREMENTS')) {
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>';
171 \$aErrors = array_diff(\
$aErrors, array(
''));
173 \$sErrors = implode(
" <br /> ", \
$aErrors);
177 <
a href=
"https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</
a> <br />
178 and solve the problem.
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 );
196 if ( !defined (
'CH_SKIP_INSTALL_CHECK') && file_exists( \
$dir[
'root'] .
'install' ) ) {
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" />
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"> </div>
213 <div
class=
"clear_both"> </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.
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>.
235 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING);
238 mb_internal_encoding(
'UTF-8');
239 mb_regex_encoding(
'UTF-8');
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');
256 MAILTO=%site_email%<br />
257 * * * * * cd %dir_root%periodic; %dir_php% -q cron.php<br />
262 'name' =>
"Site URL",
263 'ex' =>
"http://www.mydomain.com/path/",
264 'desc' =>
"Your site URL (slash at the end is required)",
266 'def_exp' =>
function () {
268 $sProtocol =
"https://";
270 $sProtocol =
"http://";
272 $str = $sProtocol . $_SERVER[
'HTTP_HOST'] . $_SERVER[
'PHP_SELF'];
273 return preg_replace(
"/install\/(index\.php$)/",
"", $str);
275 'check' =>
function ($arg0) {
return strlen($arg0) >= 10 ?
true :
false; }
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);
285 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
288 $sPleskPath =
'/opt/plesk/php/' . PHP_MAJOR_VERSION .
'.' . PHP_MINOR_VERSION .
'/bin/php';
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";
299 $fp = popen (
"whereis php",
"r");
302 $s = sscanf(
$s,
"php: %s");
303 if ( file_exists(
"$s[0]") )
return "$s[0]";
307 'check' =>
function ($arg0) {
return strlen($arg0) >= 7 ?
true :
false; }
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/" ) ) )
318 while (
false !== ($file = readdir(
$dir))) {
319 if ( substr($file,-3) !=
'sql' )
continue;
321 return "./sql/$file";
326 'check' =>
function ($arg0) {
return strlen($arg0) >= 4 ?
true :
false; }
329 'name' =>
"Database host name",
331 'desc' =>
"MySQL database host name",
332 'def' =>
"localhost",
333 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
336 'name' =>
"Database host port number",
338 'desc' =>
"Leave blank for default value or specify MySQL database host port number",
343 'name' =>
"Database socket path",
344 'ex' =>
"/tmp/mysql50.sock",
345 'desc' =>
"Leave blank for default value or specify MySQL database socket path",
350 'name' =>
"Database name",
351 'ex' =>
"user_cheetah",
352 'desc' =>
"MySQL database name",
353 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
356 'name' =>
"Database user",
358 'desc' =>
"MySQL database user name with read/write access",
359 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
362 'name' =>
"Database password",
363 'ex' =>
"MySuperSecretWord",
364 'desc' =>
"MySQL database password",
365 'check' =>
function ($arg0) {
return strlen($arg0) >= 0 ?
true :
false; }
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; }
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; }
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; }
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; }
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; }
400 'name' =>
"Admin Username",
402 'desc' =>
"Username to login to the administration area of the site",
403 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
406 'name' =>
"Admin Password",
407 'ex' =>
"MySuperSecretWord",
408 'desc' =>
"Secure admin password",
409 'check' =>
function ($arg0) {
return strlen($arg0) >= 1 ?
true :
false; }
413 'cheetah/shared_photo/',
427 define(
'CH_SKIP_INSTALL_CHECK',
true);
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');
435 require_once(
'../inc/classes/ChWsbIO.php');
440 mb_internal_encoding(
'UTF-8');
450 (!
empty($_SERVER[
'HTTPS']) && $_SERVER[
'HTTPS'] !==
'off')
451 || $_SERVER[
'SERVER_PORT'] == 443;
461 case 'compile_languages':
463 $sRet .=
'Default Cheetah language was recompiled';
518 db_res(
"TRUNCATE TABLE `sys_localization_languages`");
519 db_res(
"TRUNCATE TABLE `sys_localization_keys`");
520 db_res(
"TRUNCATE TABLE `sys_localization_strings`");
522 if (!($sLangsDir = opendir(CH_DIRECTORY_PATH_ROOT .
'install/langs/'))) {
525 while (
false !== ($sFilename = readdir($sLangsDir))) {
526 if (substr($sFilename, -3) ==
'php') {
529 require_once(CH_DIRECTORY_PATH_ROOT .
'install/langs/' . $sFilename);
533 closedir($sLangsDir);
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);
548 foreach ($aLanguage
as $sKey => $sValue) {
549 $sDqKey = str_replace(
"'",
"''", $sKey);
550 $sDqValue = str_replace(
"'",
"''", $sValue);
552 $iExistedKey = (int)
db_value(
"SELECT `ID` FROM `sys_localization_keys` WHERE `Key`='{$sDqKey}'");
553 if ($iExistedKey > 0) {
555 $sInsertKeySQL =
"INSERT INTO `sys_localization_keys` VALUES(NULL, 1, '{$sDqKey}')";
560 $sInsertValueSQL =
"INSERT INTO `sys_localization_strings` VALUES({$iExistedKey}, {$iLangKey}, '{$sDqValue}');";
570 $sAdminName =
$_REQUEST[
'admin_username'];
576 if (
'done' == $resRunSQL) {
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" />
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 .
'" />';
591 $sForm .=
'<input type="hidden" name="action" value="step2" />
598 $aConf[
'headerTempl'] = str_replace(
"%$key%", $_POST[$key],
$aConf[
'headerTempl']);
601 $aConf[
'headerTempl'] = str_replace(
"%$key%", $_POST[$key],
$aConf[
'headerTempl']);
604 $aConf[
'headerTempl'] = str_replace(
"%$key%", $_POST[$key],
$aConf[
'headerTempl']);
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']);
611 $sInnerCode .=
"<div class=\"ch-install-debug ch-def-border ch-def-padding-sec\">{$aConf['periodicTempl']}</div>";
614 $fp = fopen(
$aConf[
'dolFile'],
'w');
616 fputs($fp,
$aConf[
'headerTempl']);
618 chmod(
$aConf[
'dolFile'], 0666);
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">';
625 $sInnerCode .=
'<textarea cols="20" rows="10" class="headerTextarea ch-def-font ch-def-round-corners-with-border">' .
$aConf[
'headerTempl'] .
'</textarea>';
626 $sInnerCode .=
'</div>';
630 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
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>.
641 <div
class=
"ch-install-buttons ch-def-margin-top">
659 $sFoldersErr = $sFilesErr = $sErrorMessage =
'';
661 require_once(
'../inc/classes/ChWsbAdminTools.php');
667 if ($oChWsbIO->isWritable(
$sFolder)) {
668 $sFoldersErr .=
' ' .
$sFolder .
';<br />';
671 if (strlen($sFoldersErr)) {
673 $sErrorMessage .=
'<strong>The following directories have inappropriate permissions</strong>:<br />' . $sFoldersErr;
676 if ($oChWsbIO->isWritable(
$sFile)) {
677 $sFilesErr .=
' ' .
$sFile .
';<br /> ';
681 if (strlen($sFilesErr)) {
683 $sErrorMessage .=
'<strong>The following files have inappropriate permissions</strong>:<br />' . $sFilesErr;
686 return $sErrorMessage;
694 $sCurPage = $_SERVER[
'PHP_SELF'];
695 $sPostFolders = $sPostFiles =
'';
699 require_once(
'../inc/classes/ChWsbAdminTools.php');
706 $sStyleAdd = (($i % 2) == 0) ?
'background-color:#ede9e9;' :
'background-color:#fff;';
708 $sEachFolder = ($oChWsbIO->isWritable(
$sFolder))
709 ?
'<span class="unwritable">Writable</span>' :
'<span class="writable">Non-writable</span>';
711 $sPostFolders .= <<<EOF
712 <tr style=
"{$sStyleAdd}" class=
"cont">
718 <span
class=
"desired">Non-writable</span>
727 $str = $_SERVER[
'DOCUMENT_ROOT'] . $_SERVER[
'PHP_SELF'];
728 $sFolder = preg_replace(
"/install\/(index\.php$)/",
"", $str);
731 $sStyleAdd = (($i % 2) == 0) ?
'background-color:#ede9e9;' :
'background-color:#fff;';
733 $sEachFile = ($oChWsbIO->isWritable(
$sFile))
734 ?
'<span class="unwritable">Writable</span>'
735 :
'<span class="writable">Non-writable</span>';
737 $sPostFiles .= <<<EOF
738 <tr style=
"{$sStyleAdd}" class=
"cont">
744 <span
class=
"desired">Non-writable</span>
753 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
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>.
764 <
table cellpadding=
"0" cellspacing=
"1" width=
"100%" border=
"0" class=
"install_table">
767 <td>Current Level</td>
768 <td>Desired Level</td>
773 <td>Current Level</td>
774 <td>Desired Level</td>
780 <
form id=
"ch-install-form-postInstallPerm-check" action=
"{$sCurPage}" method=
"post">
784 <
form id=
"ch-install-form-postInstallPerm-next" action=
"{$sCurPage}" method=
"post">
788 <
form id=
"ch-install-form-postInstallPerm-skip" action=
"{$sCurPage}" method=
"post">
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>
805 $sCurPage = $_SERVER[
'PHP_SELF'];
809 if (strlen($sErrorMessage)) {
811 unset($_POST[
'site_title']);
812 unset($_POST[
'site_email']);
813 unset($_POST[
'notify_email']);
814 unset($_POST[
'bug_report_email']);
817 $sOldDataParams =
'';
818 foreach ($_POST
as $postKey => $postValue) {
819 $sOldDataParams .= (
'action' == $postKey || isset(
$aGeneral[$postKey])) ?
'' :
'<input type="hidden" name="' . $postKey .
'" value="' . $postValue .
'" />';
823 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
830 <
table cellpadding=
"0" cellspacing=
"1" width=
"100%" border=
"0" class=
"install_table">
834 <div
class=
"ch-install-buttons ch-def-margin-top">
835 <input
id=
"button" type=
"submit" value=
"Next" class=
"ch-btn ch-btn-primary" />
851 foreach ($aCheckedArray
as $sKey => $sValue) {
852 if (!is_callable($sValue[
'check'])) {
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]);
862 $error_arr[$sKey] = 0;
868 if (strlen($sErrorMessage)) {
872 return $sErrorMessage;
879 $sCurPage = $_SERVER[
'PHP_SELF'];
883 if (!
empty($sErrorMessage)) {
885 unset($_POST[
'db_name']);
886 unset($_POST[
'db_user']);
887 unset($_POST[
'db_password']);
890 $sOldDataParams =
'';
891 foreach ($_POST
as $postKey => $postValue) {
892 $sOldDataParams .= (
'action' == $postKey || isset(
$aDbConf[$postKey])) ?
'' :
'<input type="hidden" name="' . $postKey .
'" value="' . $postValue .
'" />';
896 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
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.
907 <
table cellpadding=
"0" cellspacing=
"1" width=
"100%" border=
"0" class=
"install_table">
912 <div
class=
"ch-install-buttons ch-def-margin-top">
913 <input
id=
"button" type=
"submit" value=
"Next" class=
"ch-btn ch-btn-primary" />
928 $sCurPage = $_SERVER[
'PHP_SELF'];
930 $sGDRes = (extension_loaded(
'gd')) ?
'<span class="writable">Installed</span>'
931 :
'<span class="unwritable">NOT installed</span>';
937 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
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.
949 <
table cellpadding=
"0" cellspacing=
"1" width=
"100%" border=
"0" class=
"install_table">
951 <tr
class=
"cont" style=
"background-color:#ede9e9;">
961 <div
class=
"ch-install-buttons ch-def-margin-top">
962 <input
id=
"button" type=
"submit" value=
"Next" class=
"ch-btn ch-btn-primary" />
975 $sFoldersErr = $sFilesErr = $sErrorMessage =
'';
979 require_once(
'../inc/classes/ChWsbAdminTools.php');
984 if (!$oChWsbIO->isWritable(
$sFolder)) {
985 $sFoldersErr .=
' ' .
$sFolder .
';<br />';
990 if (!$oChWsbIO->isWritable(
$sFolder)) {
991 $sFoldersErr .=
' ' .
$sFolder .
';<br />';
995 if (strlen($sFoldersErr)) {
997 $sErrorMessage .=
'<strong>The following directories have inappropriate permissions</strong>:<br />' . $sFoldersErr;
1006 if (strpos(
$sFile,
'ffmpeg') ===
false) {
1007 if (!$oChWsbIO->isWritable(
$sFile)) {
1008 $sFilesErr .=
' ' .
$sFile .
';<br /> ';
1011 if (!$oChWsbIO->isExecutable(
$sFile)) {
1012 $sFilesErr .=
' ' .
$sFile .
';<br /> ';
1018 if (strpos(
$sFile,
'ffmpeg') ===
false) {
1019 if (!$oChWsbIO->isWritable(
$sFile)) {
1020 $sFilesErr .=
' ' .
$sFile .
';<br /> ';
1023 if (!$oChWsbIO->isExecutable(
$sFile)) {
1024 $sFilesErr .=
' ' .
$sFile .
';<br /> ';
1029 if (strlen($sFilesErr)) {
1031 $sErrorMessage .=
'<strong>The following files have inappropriate permissions</strong>:<br />' . $sFilesErr;
1034 return $sErrorMessage;
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" :
'';
1046 require_once(
'../inc/classes/ChWsbAdminTools.php');
1053 <div
class=
"ch-install-header-caption ch-def-font-h1 ch-def-margin-bottom">
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>.
1066 <
form id=
"ch-install-form-preInstall-check" action=
"{$sCurPage}" method=
"post">
1070 <
form id=
"ch-install-form-preInstall-next" action=
"{$sCurPage}" method=
"post">
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>
1087 <div
class=
"ch-install-step-startInstall-cheetah-pic">
1088 <img
src=
"../administration/templates/base/images/cheetah.svg" />
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" />
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>
1109 $sExistedAdminPass =
db_value(
"SELECT `Password` FROM `Profiles` WHERE `ID`='1'");
1111 $aUrl = parse_url(
$GLOBALS[
'site'][
'url']);
1112 $sPath = isset($aUrl[
'path']) && !
empty($aUrl[
'path']) ? $aUrl[
'path'] :
'/';
1116 setcookie(
"memberID", 1, $iCookieTime, $sPath, $sHost);
1117 $_COOKIE[
'memberID'] = 1;
1118 setcookie(
"memberPassword", $sExistedAdminPass, $iCookieTime, $sPath, $sHost,
false,
true );
1119 $_COOKIE[
'memberPassword'] = $sExistedAdminPass;
1122 <script
type=
"text/javascript">
1123 window.location =
"../index.php";
1133 "startInstall" =>
"Cheetah Installation",
1134 "preInstall" =>
"Permissions",
1136 "step2" =>
"Database",
1137 "step3" =>
"Config",
1138 "step4" =>
"Cron Jobs",
1139 "step5" =>
"Permissions Reversal",
1140 "step6" =>
"Modules"
1147 $iCounterCurrent = 1;
1148 $iCounterActive = 1;
1150 foreach ($aActions
as $sActionKey => $sActionValue) {
1163 foreach ($aActions
as $sActionKey => $sActionValue) {
1164 if ($sActionKey ==
"startInstall" || $sActionKey ==
"step6") {
1166 } elseif ($iCounterActive == $iCounterCurrent) {
1167 $sSubActions .=
'<div class="ch-install-top-menu-div">›</div><div class="ch-install-top-menu-active">' . $sActionValue .
'</div>';
1169 $sSubActions .=
'<div class="ch-install-top-menu-div">›</div><div class="ch-install-top-menu-inactive">' . $sActionValue .
'</div>';
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>
1184 <body
class=
"ch-def-font">
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"> </div>
1193 <div
id=
"ch-install-top-menu" class=
"ch-def-font-large">
1196 <div
class=
"clear_both"> </div>
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">
1222 $sRet = (strlen($sText)) ?
'<div class="ch-install-error ch-def-padding ch-def-margin-bottom ch-def-font-large">' . $sText .
'</div>' :
'';
1231 foreach ($arr
as $key => $value) {
1232 $sStyleAdd = (($i % 2) == 0) ?
'background-color:#ede9e9;' :
'background-color:#fff;';
1235 if (is_callable($value[
'def_exp'])) {
1236 $def_exp = $value[
'def_exp']();
1237 if (strlen($def_exp)) {
1238 $def_exp_text =
" <font color=green>found</font>";
1239 $value[
'def'] = $def_exp;
1241 $def_exp_text =
" <font color=red>not found</font>";
1245 $st_err = ($error_arr[$key] == 1) ?
' style="background-color:#FFDDDD;" ' :
'';
1248 <tr
class=
"cont" style=
"{$sStyleAdd}">
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>
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>
1271 $fp = fopen(
$sFile,
'r');
1273 $fcontent = fread($fp, $fs);
1274 $fcontent = str_replace(
$sCode, $sReplace, $fcontent);
1276 $fp = fopen(
$sFile,
'w');
1278 if (fputs($fp, $fcontent)) {
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'];
1307 $filename = $_POST[
'sql_file'];
1312 $sSocketOrHost = (
$aDbConf[
'sock']) ?
"unix_socket={$aDbConf['sock']}" :
"host={$aDbConf['host']};port={$aDbConf['port']}";
1314 "mysql:{$sSocketOrHost};dbname={$aDbConf['db']};charset=utf8",
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
1324 }
catch (PDOException $e) {
1328 if (!(
$f = fopen($filename,
"r"))) {
1329 return printInstallError(
'Could not open file with sql instructions:' . $filename);
1334 while (
$s = fgets(
$f, 10240)) {
1340 if (mb_substr(
$s, 0, 1) ==
'#') {
1343 if (mb_substr(
$s, 0, 2) ==
'--') {
1346 if (substr(
$s, 0, 5) ==
"\xEF\xBB\xBF\x2D\x2D") {
1352 if (mb_substr(
$s, -1) !=
';') {
1357 $vLink->exec($s_sql);
1358 }
catch (PDOException $e) {
1359 $errorMes .=
'Error while executing: ' . $s_sql .
'<br />' . $e->getMessage() .
'<hr />';
1365 $sAdminNameDB = $sAdminName;
1366 $sSiteEmail = $_POST[
'site_email'];
1367 $sSaltDB = base64_encode(substr(md5(microtime()), 2, 6));
1370 INSERT INTO `Profiles`
1371 (`NickName`, `Email`, `Password`, `Salt`, `Status`, `Role`, `DateReg`)
1373 (?, ?, ?, ?, ?, ?, NOW())
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 />';
1385 $enable_gd_value = extension_loaded(
'gd') ?
'on' :
'';
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>";
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`= ?");
1402 $stmt->execute([$sSiteEmail,
'site_email']);
1403 }
catch (PDOException $e) {
1404 $ret .=
"<font color=red><i><b>Error</b>:</i> " . $e->getMessage() .
"</font><hr>";
1408 $stmt->execute([$sSiteTitle,
'site_title']);
1409 }
catch (PDOException $e) {
1410 $ret .=
"<font color=red><i><b>Error</b>:</i> " . $e->getMessage() .
"</font><hr>";
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>";
1420 $stmt->execute([$sSiteDesc,
'MetaDescription']);
1421 }
catch (PDOException $e) {
1422 $ret .=
"<font color=red><i><b>Error</b>:</i> " . $e->getMessage() .
"</font><hr>";
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>";
1432 if (strlen($errorMes)) {
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'];
1449 $sSocketOrHost = (
$aDbConf[
'sock']) ?
"unix_socket={$aDbConf['sock']}" :
"host={$aDbConf['host']};port={$aDbConf['port']}";
1451 "mysql:{$sSocketOrHost};dbname={$aDbConf['db']};charset=utf8",
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
1461 }
catch (PDOException $e) {
1469 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);