8 require_once(
'ChWsbIO.php' );
24 parent::__construct();
26 $this->sTroubledElements =
'';
28 $this->aInstallDirs = array(
34 'media/images/banners',
36 'media/images/classifieds',
37 'media/images/membership',
38 'media/images/profile',
40 'media/moxie/storage',
44 $this->aInstallFiles = array(
46 'plugins/ffmpeg/ffmpeg',
47 'plugins/ffmpeg/ffmpeg.exe',
48 'plugins/ffmpeg/ffprobe',
49 'plugins/ffmpeg/ffprobe.exe',
52 $this->aFlashDirs = array(
53 'flash/modules/board/files',
54 'flash/modules/chat/files',
55 'flash/modules/photo/files',
56 'flash/modules/im/files',
57 'flash/modules/mp3/files',
58 'flash/modules/video/files',
59 'flash/modules/video_comments/files'
62 $this->aFlashFiles = array(
63 'flash/modules/global/data/integration.dat',
64 'flash/modules/board/xml/config.xml',
65 'flash/modules/board/xml/langs.xml',
66 'flash/modules/board/xml/main.xml',
67 'flash/modules/board/xml/skins.xml',
68 'flash/modules/chat/xml/config.xml',
69 'flash/modules/chat/xml/langs.xml',
70 'flash/modules/chat/xml/main.xml',
71 'flash/modules/chat/xml/skins.xml',
72 'flash/modules/desktop/xml/config.xml',
73 'flash/modules/desktop/xml/langs.xml',
74 'flash/modules/desktop/xml/main.xml',
75 'flash/modules/desktop/xml/skins.xml',
77 'flash/modules/global/xml/config.xml',
78 'flash/modules/global/xml/main.xml',
79 'flash/modules/im/xml/config.xml',
80 'flash/modules/im/xml/langs.xml',
81 'flash/modules/im/xml/main.xml',
82 'flash/modules/im/xml/skins.xml',
83 'flash/modules/mp3/xml/config.xml',
84 'flash/modules/mp3/xml/langs.xml',
85 'flash/modules/mp3/xml/main.xml',
86 'flash/modules/mp3/xml/skins.xml',
87 'flash/modules/photo/xml/config.xml',
88 'flash/modules/photo/xml/langs.xml',
89 'flash/modules/photo/xml/main.xml',
90 'flash/modules/photo/xml/skins.xml',
91 'flash/modules/video/xml/config.xml',
92 'flash/modules/video/xml/langs.xml',
93 'flash/modules/video/xml/main.xml',
94 'flash/modules/video/xml/skins.xml',
95 'flash/modules/video_comments/xml/config.xml',
96 'flash/modules/video_comments/xml/langs.xml',
97 'flash/modules/video_comments/xml/main.xml',
98 'flash/modules/video_comments/xml/skins.xml'
101 $this->aPostInstallPermDirs = array(
104 $this->aPostInstallPermFiles = array(
110 $sAdditionDir = (
isAdmin()==
true) ? CH_WSB_URL_ROOT :
'../';
113 <style
type=
"text/css">
119 .left_side_sw_caption {
125 .right_side_sw_caption {
132 background-
color: rgba(255, 255, 255, 0.2);
139 border-
color: silver;
173 tr.head td.left_aligned {
194 if (
empty($a[
'path']) || !include(CH_DIRECTORY_PATH_MODULES . $a[
'path'] .
'install/config.php'))
196 if (
empty(
$aConfig[
'install_permissions']) || !is_array(
$aConfig[
'install_permissions'][
'writable']))
198 foreach (
$aConfig[
'install_permissions'][
'writable']
as $sPath) {
199 if (1 == $iType && is_dir(CH_DIRECTORY_PATH_MODULES . $a[
'path'] . $sPath))
200 $aList[] = basename(CH_DIRECTORY_PATH_MODULES) .
'/' . $a[
'path'] . $sPath;
201 elseif (2 == $iType && is_file(CH_DIRECTORY_PATH_MODULES . $a[
'path'] . $sPath))
202 $aList[] = basename(CH_DIRECTORY_PATH_MODULES) .
'/' . $a[
'path'] . $sPath;
210 $sModulesDirsC = function_exists(
'_t') ?
_t(
'_adm_admtools_modules_dirs') :
'Modules Directories';
211 $sModulesFilesC = function_exists(
'_t') ?
_t(
'_adm_admtools_modules_files') :
'Modules Files';
212 $sDirsC = function_exists(
'_t') ?
_t(
'_adm_admtools_Directories') :
'Directories';
213 $sFilesC = function_exists(
'_t') ?
_t(
'_adm_admtools_Files') :
'Files';
214 $sElementsC = function_exists(
'_t') ?
_t(
'_adm_admtools_Elements') :
'Elements';
215 $sFlashC = function_exists(
'_t') ?
_t(
'_adm_admtools_Flash') :
'Flash';
216 $sCurrentLevelC = function_exists(
'_t') ?
_t(
'_adm_admtools_Current_level') :
'Current level';
217 $sDesiredLevelC = function_exists(
'_t') ?
_t(
'_adm_admtools_Desired_level') :
'Desired level';
218 $sBadFilesC = function_exists(
'_t') ?
_t(
'_adm_admtools_Bad_files') :
'The following files and directories have inappropriate permissions';
219 $sShowOnlyBadC = function_exists(
'_t') ?
_t(
'_adm_admtools_Only_bad_files') :
'Show only files and directories with inappropriate permissions';
220 $sDescriptionC = function_exists(
'_t') ?
_t(
'_adm_admtools_Perm_description') :
'Cheetah needs special access for certain files and directories. Please, change permissions 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>.';
222 $this->sTroubledElements =
'';
228 if ($isShowModules) {
234 <td>{$sModulesDirsC}</td>
235 <td>{$sCurrentLevelC}</td>
236 <td>{$sDesiredLevelC}</td>
237 </tr>" . $sModulesDirs;
241 <td>{$sModulesFilesC}</td>
242 <td>{$sCurrentLevelC}</td>
243 <td>{$sDesiredLevelC}</td>
244 </tr>" . $sModulesFiles;
246 $sAdditionDir = (
isAdmin()==
true) ? CH_WSB_URL_ROOT :
'../';
247 $sLeftAddEl = (
isAdmin()==
true) ?
'<div class="left_side_sw_caption">'.$sDescriptionC.
'</div>' :
'';
250 <script
type=
"text/javascript">
252 function callSwitcher()
254 $(
'table.install_table tr:not(.troubled)').toggle();
257 function switchToTroubled(e)
260 $(
'table.install_table tr:not(.troubled)').
show();
262 $(
'table.install_table tr:not(.troubled)').hide();
269 <
table width=
"100%" cellspacing=
"1" cellpadding=
"0" class=
"install_table">
270 <tr
class=
"head troubled">
271 <td colspan=
"3" style=
"text-align:center;">
273 <div
class=
"right_side_sw_caption">
274 <input
type=
"checkbox" id=
"ch-install-permissions-show-erros-only" onclick=
"switchToTroubled(this)" /> <
label for=
"ch-install-permissions-show-erros-only">$sShowOnlyBadC</
label>
276 <div
class=
"clear_both"></div>
280 <td colspan=
"3" style=
"text-align:center;" class=
"normal_td">{$sDirsC}</td>
284 <td>{$sCurrentLevelC}</td>
285 <td>{$sDesiredLevelC}</td>
289 <td>{$sFlashC} {$sDirsC}</td>
290 <td>{$sCurrentLevelC}</td>
291 <td>{$sDesiredLevelC}</td>
296 <td colspan=
"3" style=
"text-align:center;">{$sFilesC}</td>
300 <td>{$sCurrentLevelC}</td>
301 <td>{$sDesiredLevelC}</td>
305 <td>{$sFlashC} {$sFilesC}</td>
306 <td>{$sCurrentLevelC}</td>
307 <td>{$sDesiredLevelC}</td>
311 <tr
class=
"head troubled">
312 <td colspan=
"3" style=
"text-align:center;">{$sBadFilesC}</td>
314 <tr
class=
"head troubled">
315 <td>{$sElementsC}</td>
316 <td>{$sCurrentLevelC}</td>
317 <td>{$sDesiredLevelC}</td>
319 {$this->sTroubledElements}
326 if (!is_array($aElements) ||
empty($aElements))
328 $sWritableC = function_exists(
'_t') ?
_t(
'_adm_admtools_Writable') :
'Writable';
329 $sNonWritableC = function_exists(
'_t') ?
_t(
'_adm_admtools_Non_Writable') :
'Non-Writable';
330 $sNotExistsC = function_exists(
'_t') ?
_t(
'_adm_admtools_Not_Exists') :
'Not Exists';
331 $sExecutableC = function_exists(
'_t') ?
_t(
'_adm_admtools_Executable') :
'Executable';
332 $sNonExecutableC = function_exists(
'_t') ?
_t(
'_adm_admtools_Non_Executable') :
'Non-Executable';
334 $iType = ($iType==1) ? 1 : 2;
338 foreach ($aElements
as $sCurElement) {
341 $sAwaitedPerm = ($iCurType==1) ? $sWritableC : $sWritableC;
343 $sElemCntStyle = ($i%2==0) ?
'even' :
'odd' ;
344 $bAccessible = ($iCurType==1) ? $this->
isWritable($sCurElement) : $this->
isWritable($sCurElement);
347 if (strpos($sCurElement,
'ffmpeg') !==
false) {
348 $sAwaitedPerm = $sExecutableC;
353 $sResultPerm = ($iCurType==1) ? $sWritableC : $sWritableC;
356 if (strpos($sCurElement,
'ffmpeg') !==
false) {
357 $sResultPerm = $sExecutableC;
361 <tr
class=
"cont {$sElemCntStyle}">
362 <td>{$sCurElement}</td>
364 <span
class=
"writable">{$sResultPerm}</span>
367 <span
class=
"desired">{$sAwaitedPerm}</span>
375 $sResultPerm = $sNotExistsC;
377 $sResultPerm = ($iCurType==1) ? $sNonWritableC : $sNonWritableC;
381 if (strpos($sCurElement,
'ffmpeg') !==
false) {
382 $sResultPerm = $sNonExecutableC;
388 <tr
class=
"cont {$sElemCntStyle}">
389 <td>{$sCurElement}</td>
391 <span
class=
"unwritable">{$sPerm} {$sResultPerm}</span>
394 <span
class=
"desired">{$sAwaitedPerm}</span>
399 $this->sTroubledElements .= <<<EOF
400 <tr
class=
"cont {$sElemCntStyle} troubled">
401 <td>{$sCurElement}</td>
403 <span
class=
"unwritable">{$sPerm} {$sResultPerm}</span>
406 <span
class=
"desired">{$sAwaitedPerm}</span>
420 $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>';
421 $aErrors[] = (ini_get(
'safe_mode') == 0) ?
'' :
'<font color="red">safe_mode is On, disable it</font>';
422 $aErrors[] = (((int)phpversion()) < 4) ?
'<font color="red">PHP version too old, update server please</font>' :
'';
423 $aErrors[] = (!extension_loaded(
'mbstring')) ?
'<font color="red">mbstring extension not installed. <b>Warning!</b> Cheetah cannot work without <b>mbstring</b> extension.</font>' :
'';
424 $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>' :
'';
425 $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>';
429 $sErrors = implode(
" <br /> ",
$aErrors);
433 <
a href=
"https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</
a> <br />
434 and solve the problem.
442 $sRet =
'<table width="100%" cellspacing="1" cellpadding="0" class="install_table">';
444 <tr class="head troubled">
446 <td class="center_aligned">' .
_t(
'_sys_adm_installed') .
'</td>
447 <td class="center_aligned">' .
_t(
'_sys_adm_cache_support') .
'</td>
450 $aEngines = array (
'File',
'Memcache');
451 foreach ($aEngines
as $sEngine) {
452 $oCacheObject = @
ch_instance (
'ChWsbCache' . $sEngine);
454 <tr class="head troubled">
455 <td class="left_aligned">' . $sEngine .
'</td>
456 <td class="center_aligned">' . (@$oCacheObject->isInstalled() ?
'<font color="#0b0">' .
_t(
'_Yes') .
'</font>' :
'<font color="#d00">' .
_t(
'_No') .
'</font>') .
'</td>
457 <td class="center_aligned">' . (@$oCacheObject->isAvailable() ?
'<font color="#0b0">' .
_t(
'_Yes') .
'</font>' :
'<font color="#d00">' .
_t(
'_No') .
'</font>') .
'</td>
467 $sTitleC =
_t(
'_adm_admtools_title');
469 $sPermissionsC =
_t(
'');
470 $sCacheEnginesC =
_t(
'');
477 <script
type=
"text/javascript">
479 function switchAdmPage(oLink)
481 var sType = $(oLink).attr(
'id').replace(
'main_menu',
'');
482 var sName =
'#page' + sType;
484 $(oLink).parent(
'.notActive').hide().siblings(
'.notActive:hidden').show().siblings(
'.active').hide().siblings(
'#' + $(oLink).attr(
'id') +
'-act').
show();
485 $(sName).siblings(
'div:visible').ch_anim(
'hide',
'fade',
'slow',
function(){
486 $(sName).ch_anim(
'show',
'fade',
'slow');
494 <div
class=
"boxContent" id=
"adm_pages">
495 <div
id=
"page0" class=
"visible">{$sAuditTab}</div>
496 <div
id=
"page1" class=
"hidden">{$sPermissionsTab}</div>
497 <div
id=
"page2" class=
"hidden">
498 <iframe frameborder=
"0" width=
"100%" height=
"800" scrolling=
"auto" src=
"host_tools.php?get_phpinfo=true"></iframe>
500 <div
id=
"page3" class=
"hidden">{$sCacheEnginesTab}</div>
505 'main_menu0' => array(
'href' =>
'javascript:void(0)',
'onclick' =>
'javascript:switchAdmPage(this)',
'title' =>
_t(
'_adm_admtools_Audit'),
'active' => 1),
506 'main_menu1' => array(
'href' =>
'javascript:void(0)',
'onclick' =>
'javascript:switchAdmPage(this)',
'title' =>
_t(
'_adm_admtools_Permissions'),
'active' => 0),
507 'main_menu2' => array(
'href' =>
'javascript:void(0)',
'onclick' =>
'javascript:switchAdmPage(this)',
'title' =>
_t(
'_adm_admtools_phpinfo'),
'active' => 0),
519 $filename =
$aPathInfo[
'dirname'] .
'/../../' . $filename;
521 return (@file_exists($filename .
'/.') && is_readable( $filename ) && is_writable( $filename ) ) ?
true :
false;
529 $filename =
$aPathInfo[
'dirname'] .
'/../../' . $filename;
531 return (is_file($filename) && is_readable( $filename ) && is_writable( $filename ) ) ?
true :
false;
539 $filename =
$aPathInfo[
'dirname'] .
'/../../' . $filename;
541 return (is_file($filename) && is_executable( $filename ) ) ?
true :
false;
548 $sAllowUrlInclude = ini_get(
'allow_url_include');
549 return !($sAllowUrlInclude == 0);
554 $sCheetahPath = CH_DIRECTORY_PATH_ROOT;
557 $sEmailToCkeckMailSending =
getParam(
'site_email');
559 $sLatestCheetahVer = file_get_contents(
"https://www.cheetahwsb.com/version.rss");
560 if (preg_match (
'#<cheetah>([\.0-9]+)</cheetah>#', $sLatestCheetahVer, $m))
561 $sLatestCheetahVer = $m[1];
563 $sLatestCheetahVer =
'undefined';
565 $sMinPhpVer =
'5.3.0';
566 $sMinMysqlVer =
'4.1.2';
568 $a = unserialize(file_get_contents(
"http://www.php.net/releases/index.php?serialize=1"));
569 $sLatestPhpVersion = $a[5][
'version'];
571 $aPhpSettings = array (
572 'allow_url_fopen' => array(
'op' =>
'=',
'val' =>
true,
'type' =>
'bool'),
573 'allow_url_include' => array(
'op' =>
'=',
'val' =>
false,
'type' =>
'bool'),
574 'magic_quotes_gpc' => array(
'op' =>
'=',
'val' =>
false,
'type' =>
'bool',
'warn' => 1),
575 'memory_limit' => array(
'op' =>
'>=',
'val' => 128*1024*1024,
'type' =>
'bytes',
'unlimited' => -1),
576 'post_max_size' => array(
'op' =>
'>=',
'val' => 50*1024*1024,
'type' =>
'bytes',
'warn' => 1),
577 'upload_max_filesize' => array(
'op' =>
'>=',
'val' => 50*1024*1024,
'type' =>
'bytes',
'warn' => 1),
578 'register_globals' => array(
'op' =>
'=',
'val' =>
false,
'type' =>
'bool'),
579 'safe_mode' => array(
'op' =>
'=',
'val' =>
false,
'type' =>
'bool'),
580 'short_open_tag' => array(
'op' =>
'=',
'val' =>
true,
'type' =>
'bool'),
581 'disable_functions' => array(
'op' =>
'without',
'val' =>
'exec,shell_exec,popen,eval,assert,create_function,phpinfo,getenv,ini_set,mail,fsockopen,chmod,parse_ini_file,readfile'),
582 'php module: curl' => array(
'op' =>
'module',
'val' =>
'curl'),
583 'php module: gd' => array(
'op' =>
'module',
'val' =>
'gd'),
584 'php module: mbstring' => array(
'op' =>
'module',
'val' =>
'mbstring'),
585 'php module: xsl' => array(
'op' =>
'module',
'val' =>
'xsl',
'warn' => 1),
586 'php module: json' => array(
'op' =>
'module',
'val' =>
'json'),
587 'php module: fileinfo' => array(
'op' =>
'module',
'val' =>
'fileinfo'),
588 'php module: openssl' => array(
'op' =>
'module',
'val' =>
'openssl',
'warn' => 1),
589 'php module: zip' => array(
'op' =>
'module',
'val' =>
'zip',
'warn' => 1),
590 'php module: ftp' => array(
'op' =>
'module',
'val' =>
'ftp',
'warn' => 1),
591 'php module: calendar' => array(
'op' =>
'module',
'val' =>
'calendar',
'warn' => 1),
592 'php module: exif' => array(
'op' =>
'module',
'val' =>
'exif'),
594 if (version_compare(phpversion(),
"5.4",
">=") == 1)
595 unset($aPhpSettings[
'short_open_tag']);
597 $aMysqlSettings = array (
598 'key_buffer_size' => array(
'op' =>
'>=',
'val' => 128*1024,
'type' =>
'bytes'),
599 'query_cache_limit' => array(
'op' =>
'>=',
'val' => 1000000,
'type' =>
'bytes'),
600 'query_cache_size' => array(
'op' =>
'>=',
'val' => 16*1024*1024,
'type' =>
'bytes'),
601 'max_heap_table_size' => array(
'op' =>
'>=',
'val' => 16*1024*1024,
'type' =>
'bytes'),
602 'tmp_table_size' => array(
'op' =>
'>=',
'val' => 16*1024*1024,
'type' =>
'bytes'),
603 'thread_cache_size ' => array(
'op' =>
'>',
'val' => 0),
606 $aRequiredApacheModules = array (
607 'rewrite_module' =>
'mod_rewrite',
610 $aCheetahOptimizationSettings = array (
612 'DB cache' => array(
'enabled' =>
'sys_db_cache_enable',
'cache_engine' =>
'sys_db_cache_engine',
'check_accel' =>
true),
614 'Page blocks cache' => array(
'enabled' =>
'sys_pb_cache_enable',
'cache_engine' =>
'sys_pb_cache_engine',
'check_accel' =>
true),
616 'Member menu cache' => array(
'enabled' =>
'always_on',
'cache_engine' =>
'sys_mm_cache_engine',
'check_accel' =>
true),
618 'Templates Cache' => array(
'enabled' =>
'sys_template_cache_enable',
'cache_engine' =>
'sys_template_cache_engine',
'check_accel' =>
true),
620 'CSS files cache' => array(
'enabled' =>
'sys_template_cache_css_enable',
'cache_engine' =>
'',
'check_accel' =>
false),
622 'JS files cache' => array(
'enabled' =>
'sys_template_cache_js_enable',
'cache_engine' =>
'',
'check_accel' =>
false),
624 'Compression for CSS/JS cache' => array(
'enabled' =>
'sys_template_cache_compress_enable',
'cache_engine' =>
'',
'check_accel' =>
false),
643 <h2>Software requirements</h2>
647 $sPhpVer = PHP_VERSION;
648 $sIniPath = php_ini_loaded_file();
649 echo $sPhpVer .
' - ';
650 if (version_compare($sPhpVer, $sMinPhpVer,
'<'))
651 echo
'<b class="fail">FAIL</b> (your version is incompatible with Cheetah, must be at least ' . $sMinPhpVer .
')';
652 elseif (version_compare($sPhpVer,
'5.3.0',
'>=') && version_compare($sPhpVer,
'5.4.0',
'<'))
653 echo
'<b class="warn">WARNING</b> (your PHP version is outdated, upgrade to the latest ' . $sLatestPhpVersion .
' maybe required)';
655 echo
'<b class="ok">OK</b>';
660 echo
'<li>php.ini file in use = ' . $sIniPath .
'</li>';
661 echo
'<ul><li>Make sure when you change php settings, they are done for the version of php and ini file thats being used by this site.</li></ul>';
662 foreach ($aPhpSettings
as $sName => $r) {
664 echo
"<li>$sName = " . $this->
format_output($a[
'real_val'], $r) .
" - ";
666 echo
'<b class="ok">OK</b>';
668 echo
"<b class='warn'>WARNING</b> (should be {$r['op']} " . $this->
format_output($r[
'val'], $r) .
")";
670 echo
"<b class='fail'>FAIL</b> (must be {$r['op']} " . $this->
format_output($r[
'val'], $r) .
")";
679 $sMysqlVer =
$oDb->res(
'select version()')->fetchColumn();
680 echo $sMysqlVer .
' - ';
681 if (preg_match (
'/^(\d+)\.(\d+)\.(\d+)/', $sMysqlVer, $m)) {
682 $sMysqlVer =
"{$m[1]}.{$m[2]}.{$m[3]}";
683 if (version_compare($sMysqlVer, $sMinMysqlVer,
'<'))
684 echo
'<b class="fail">FAIL</b> (your version is incompatible with Cheetah, must be at least ' . $sMinMysqlVer .
')';
686 echo
'<b class="ok">OK</b>';
688 echo
'<b class="undef">UNDEFINED</b>';
692 <li><
b>Web-server</
b>:
694 echo $_SERVER[
'SERVER_SOFTWARE'];
698 $bIsNginx = (stripos($_SERVER[
'SERVER_SOFTWARE'],
'nginx') !==
false);
701 foreach ($aRequiredApacheModules
as $sName => $sNameCompiledName)
714 <h2>Hardware requirements</h2>
716 Hardware requirements can
not be determined automatically - <
a href=
"#manual_audit">manual server audit</
a> may be reqired.
725 if(
$GLOBALS[
'site'][
'pre-release'] !=
'') {
726 echo $sCheetahVer .
'.' .
$GLOBALS[
'site'][
'pre-release'] .
' - ';
728 echo $sCheetahVer .
' - ';
730 if (!version_compare($sCheetahVer, $sLatestCheetahVer,
'>=')) {
731 echo
'<b class="warn">WARNING</b> (your Cheetah version is outdated please upgrade to the latest ' . $sLatestCheetahVer .
' version)';
733 if(
$GLOBALS[
'site'][
'pre-release'] !=
'') {
734 echo
'<b class="warn">Pre-Release</b>';
736 echo
'<b class="ok">OK</b>';
742 <
b>files
and folders permissions</
b>
744 Please <
a href=
"javascript:void(0);" onclick=
"switchAdmPage($('#main_menu1'));">click here</
a>
to find out
if cheetah permissions
are correct.
748 <!-- <pre
class=
"code"><?
php echo `{$sCheetahPath}flash/
modules/
global/app/ffmpeg.exe 2>&1`;?></pre> -->
749 <pre
class=
"code"><?
php echo `{$sffmpegpath} 2>&1`;?></pre>
750 if you don
't know if output is correct then <a href="#manual_audit">manual server audit</a> may be reqired.
753 <script language="javascript">
754 function ch_sys_adm_audit_test_email()
756 $('#ch-sys-adm-audit-test-email
').html('Sending...
');
757 $.post('<?
php echo
$GLOBALS[
'site'][
'url_admin']; ?>host_tools.php?action=audit_send_test_email
', function(data) {
758 $('#ch-sys-adm-audit-test-email
').html(data);
762 <b>mail sending - </b>
763 <span id="ch-sys-adm-audit-test-email"><a href="javascript:void(0);" onclick="ch_sys_adm_audit_test_email()">click here</a> to send test email to <?php echo $sEmailToCkeckMailSending; ?></span>
767 <pre class="code"><?php echo `crontab -l 2>&1`;?></pre>
768 if you are unsure if output is correct then <a href="#manual_audit">manual server audit</a> may be reqired.
771 <b>last cronjob execution time - </b>
772 <span><?php $iCronTime = (int)getParam('sys_cron_time
'); echo !empty($iCronTime) ? getLocaleDate($iCronTime, CH_WSB_LOCALE_DATE) : (function_exists('_t') ? _t('_None
') : 'None
'); ?></span>
777 Please follow <a href="<?php echo $GLOBALS['site']['url_admin
']; ?>flash.php">this link</a> to check media server settings. Also you can try video chat - if video chat is working then most probably that flash media server is working correctly, however it doesn't guarantee
that all
other flash media server application will
work.
782 Please follow <
a href=
"<?php echo CH_WSB_URL_ROOT; ?>forum/">
this link</
a>
to check
if forum is functioning properly.
If it is working but
'[L[' signs are displayed everywhere,
then you need
to <
a href=
"<?php echo CH_WSB_URL_ROOT; ?>forum/?action=goto&manage_forum=1">compile language file</
a> (
you maybe be need
to compile language file separately
for every language
and template you have).
786 <h2>Site optimization</h2>
790 <li><
b>PHP accelerator</b> =
794 echo
'NO - <b class="warn">WARNING</b> (Cheetah can be much faster if you install some PHP accelerator))';
796 echo
$sAccel .
' - <b class="ok">OK</b>';
799 <li><
b>PHP setup</
b> =
801 $sSapi = php_sapi_name();
803 if (0 === strcasecmp(
'cgi', $sSapi))
804 echo
'<b class="warn">WARNING</b> (your PHP setup maybe very inefficient, <a href="?action=phpinfo">please check it for sure</a> and try to switch to mod_php, apache dso module or FastCGI)';
806 echo
'<b class="ok">OK</b>';
812 $d = ini_get(
'disable_functions');
816 if(strpos($d,
'opcache_get_status') !==
false) {
818 $s .=
'<ul><li><span class="fail">opcache_get_status</li></ul>';
820 if(strpos($d,
'opcache_get_configuration') !==
false) {
822 $s .=
'<ul><li><span class="fail">opcache_get_configuration</li></ul>';
824 if(
$b1 ==
true ||
$b2 ==
true) {
827 echo
'<b>These OPcache functions are in the php.ini disable_functions and should be removed for proper operation of Cheetah:</b>';
838 $operation = ($r[
'op'] ===
'strcasecmp') ?
'' : $r[
'op'];
839 echo
"<li><b>$sName</b> = " . $this->
format_output($a[
'real_val'], $r) .
" - " . ($a[
'res'] ?
'<b class="ok">OK</b>' :
"<b class='fail'>FAIL</b> (must be {$operation} " . $this->
format_output($r[
'val'], $r) .
")") .
"</li>\n";
844 <li><
b>Web-server</
b>:
847 <
b>User-side caching
for static conten</
b> =
848 <
a href=
"<?php echo $this->getUrlForGooglePageSpeed('LeverageBrowserCaching'); ?>">click here
to check
it in Google Page Speed</
a>
850 If it is
not enabled then please consider implement
this optimization, since
it improve perceived
site speed
and save the bandwidth, refer
to <
a target=
"_blank" href=
"https://www.cheetahwsb.com/m/cheetah_docs/chapter/hosting-server-setup-recommendations#Usersidecachingforstaticcontent">
this tutorial</
a>
on how
to do this.
858 <
b>Server-side
content compression</
b> = can be checked <
a href=
"#manual_audit">manually</
a>
or in "Page Speed" tool build-
in into browser.
860 If it is
not enabled then please consider implement
this optimization, since
it improve perceived
site speed
and save the bandwidth, refer
to <
a href=
"https://www.cheetahwsb.com/m/cheetah_docs/chapter/hosting-server-setup-recommendations#Serversidecontentcompression">
this tutorial</
a>
on how
to do this.
864 $sName =
'deflate_module';
865 echo
'To apply this optimization you need to have <b>' .
$sName .
'</b> Apache module - ' . $this->
checkApacheModule($sName);
874 foreach ($aCheetahOptimizationSettings
as $sName => $a) {
876 echo
"<li><b>$sName</b> = ";
878 echo (
'always_on' == $a[
'enabled'] ||
getParam($a[
'enabled'])) ?
'On' :
'Off';
880 if ($a[
'cache_engine'])
881 echo
" (" .
getParam($a[
'cache_engine']) .
' based cache engine)';
885 if (
'always_on' != $a[
'enabled'] && !
getParam($a[
'enabled'])) {
886 echo
'<b class="fail">FAIL</b>';
888 echo
'<li style="margin-bottom: 0;">You should enable this cache in Cheetah Admin Panel -> Tools -> Cache -> Settings</li>';
889 echo
'<li>If your site is new and still under development, this cache settings should remain off.</li>';
895 echo
'<b class="ok">OK</b>';
905 <
a name=
"manual_audit"></
a>
906 <h2>Manual Server Audit</h2>
908 Some
things can
not be determined automatically, manual server audit is required
to check
it.
If you don
't know how to do it by yourself you can submit <a target="_blank" href="https://www.cheetahwsb.com/help/contact">Cheetah Server Audit Request</a>.
913 return ob_get_clean();
916 function checkPhpSetting($sName, $a)
918 $mixedVal = ini_get($sName);
919 $mixedVal = $this->format_input ($mixedVal, $a);
923 $aFuncsDisabled = explode(',
', $mixedVal);
924 $aFuncsMustBeEnabled = explode(',
', $a['val
']);
925 $a = array_intersect($aFuncsDisabled, $aFuncsMustBeEnabled);
929 $bResult = extension_loaded($a['val
']);
930 $mixedVal = $bResult ? $a['val
'] : '';
933 $mixedVal = $bResult = $a['val
'];
936 $bResult = (isset($a['unlimited
']) && $mixedVal == $a['unlimited
']) ? true : ($mixedVal > $a['val
']);
939 $bResult = (isset($a['unlimited
']) && $mixedVal == $a['unlimited
']) ? true : ($mixedVal >= $a['val
']);
943 $bResult = ($mixedVal == $a['val
']);
945 return array ('res
' => $bResult, 'real_val
' => $mixedVal);
948 function checkMysqlSetting($sName, $a)
950 $mixedVal = $this->mysqlGetOption($sName);
951 $mixedVal = $this->format_input ($mixedVal, $a);
955 $bResult = ($mixedVal > $a['val
']);
958 $bResult = ($mixedVal >= $a['val
']);
961 $bResult = 0 === strcasecmp($mixedVal, $a['val
']);
965 $bResult = ($mixedVal == $a['val
']);
967 return array ('res
' => $bResult, 'real_val
' => $mixedVal);
970 function format_output ($mixedVal, $a)
972 switch ($a['type']) {
974 return $mixedVal ? 'On
' : 'Off
';
976 return format_bytes($mixedVal, true);
982 function format_input ($mixedVal, $a)
984 switch (isset($a['type'])) {
986 return $this->format_bytes($mixedVal);
992 function format_bytes($val)
994 return return_bytes($val);
997 function checkApacheModule ($sModule, $sNameCompiledName = '')
1000 'deflate_module
' => 'mod_deflate
',
1001 'expires_module
' => 'mod_expires
',
1003 if (!$sNameCompiledName && isset($a[$sModule]))
1004 $sNameCompiledName = $a[$sModule];
1006 if (function_exists('apache_get_modules
')) {
1008 $aModules = apache_get_modules();
1009 $ret = in_array($sNameCompiledName, $aModules);
1013 $sApachectlPath = trim(`which apachectl`);
1014 if (!$sApachectlPath)
1015 $sApachectlPath = trim(`which apache2ctl`);
1016 if (!$sApachectlPath)
1017 $sApachectlPath = trim(`which /usr/local/apache/bin/apachectl`);
1018 if (!$sApachectlPath)
1019 $sApachectlPath = trim(`which /usr/local/apache/bin/apache2ctl`);
1020 if (!$sApachectlPath)
1021 return '<
b class=
"undef">UNDEFINED</
b> (
try to check manually: apachectl -M 2>&1 | grep
' . $sModule . ')
';
1023 $ret = (boolean)`$sApachectlPath -M 2>&1 | grep $sModule`;
1025 $ret = (boolean)`$sApachectlPath -l 2>&1 | grep $sNameCompiledName`;
1028 return $ret ? '<
b class=
"ok">OK</b>
' : '<
b class=
"fail">FAIL</b> (You will need
to install
' . $sModule . ' for Apache)
';
1032 function getPhpAccelerator ()
1034 if(function_exists('opcache_get_configuration
') && !function_exists('opcache_get_status
')) {
1035 $a = opcache_get_configuration();
1036 $aAccelerators = array (
1037 'eAccelerator
' => array('op
' => 'module
', 'val
' => 'eaccelerator
'),
1038 'APC
' => array('op
' => 'module
', 'val
' => 'apc
'),
1039 'XCache
' => array('op
' => 'module
', 'val
' => 'xcache
'),
1040 'OPcache
' => array('op
' => 'val
', 'val
' => $a['directives
']['opcache.enable
'] ? true : false),
1043 $aAccelerators = array (
1044 'eAccelerator
' => array('op
' => 'module
', 'val
' => 'eaccelerator
'),
1045 'APC
' => array('op
' => 'module
', 'val
' => 'apc
'),
1046 'XCache
' => array('op
' => 'module
', 'val
' => 'xcache
'),
1047 'OPcache
' => array('op
' => 'val
', 'val
' => function_exists('opcache_get_status
') && ($a = opcache_get_status(false)) ? $a['opcache_enabled
'] : false),
1051 foreach ($aAccelerators as $sName => $r) {
1052 $a = $this->checkPhpSetting($sName, $r);
1059 function mysqlGetOption ($s)
1061 return db_value("SELECT @@{$s}");
1064 function getUrlForGooglePageSpeed ($sRule)
1066 $sUrl = urlencode(CH_WSB_URL_ROOT);
1072 $sEmailToCkeckMailSending =
getParam(
'site_email');
1073 $mixedRet =
sendMail($sEmailToCkeckMailSending,
'Audit Test Email',
'Sample text for testing<br /><u><b>Sample text for testing</b></u>');
1075 return '<b class="fail">FAIL</b> (mail send failed)';
1077 return 'test mail was send, please check ' . $sEmailToCkeckMailSending .
' mailbox';