Cheetah
ChWsbAdminTools.php
Go to the documentation of this file.
1 <?php
2 
8 require_once('ChWsbIO.php' );
9 
10 class ChWsbAdminTools extends ChWsbIO
11 {
13 
20 
21  //constructor
22  function __construct()
23  {
24  parent::__construct();
25 
26  $this->sTroubledElements = '';
27 
28  $this->aInstallDirs = array(
29  'backup',
30  'cache',
31  'cache_public',
32  'langs',
33  'media/images',
34  'media/images/banners',
35  'media/images/blog',
36  'media/images/classifieds',
37  'media/images/membership',
38  'media/images/profile',
39  'media/moxie/files',
40  'media/moxie/storage',
41  'tmp',
42  );
43 
44  $this->aInstallFiles = array(
45  'sitemap.xml',
46  'plugins/ffmpeg/ffmpeg',
47  'plugins/ffmpeg/ffmpeg.exe',
48  'plugins/ffmpeg/ffprobe',
49  'plugins/ffmpeg/ffprobe.exe',
50  );
51 
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'
60  );
61 
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',
76  //'flash/modules/global/app/ffmpeg.exe',
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'
99  );
100 
101  $this->aPostInstallPermDirs = array(
102  );
103 
104  $this->aPostInstallPermFiles = array(
105  );
106  }
107 
108  function GenCommonCode()
109  {
110  $sAdditionDir = (isAdmin()==true) ? CH_WSB_URL_ROOT : '../';
111 
112  $sRet = <<<EOF
113 <style type="text/css">
114 
115  div.hidden {
116  display:none;
117  }
118 
119  .left_side_sw_caption {
120  float:left;
121  text-align:justify;
122  width:515px;
123  }
124 
125  .right_side_sw_caption {
126  float:right;
127  font-weight:normal;
128  }
129 
130  tr.head td,
131  tr.cont td {
132  background-color: rgba(255, 255, 255, 0.2);
133  }
134 
135  tr.head td {
136  height: 17px;
137  padding: 5px;
138 
139  border-color: silver;
140 
141  text-align: center;
142  font-size: 13px;
143  font-weight: bold;
144  }
145  tr.cont td {
146  height:15px;
147  padding:2px 5px;
148  font-size:13px;
149  border-color:silver;
150  }
151 
152  .install_table {
153  border-width:0px;
154  }
155 
156  span.unwritable {
157  color:#d00;
158  font-weight:bold;
159  margin-right:5px;
160  }
161 
162  span.writable {
163  color:#0b0;
164  font-weight:bold;
165  margin-right:5px;
166  }
167 
168  span.desired {
169  font-weight:bold;
170  margin-right:5px;
171  }
172 
173  tr.head td.left_aligned {
174  text-align:left;
175  font-weight:bold;
176  }
177 </style>
178 EOF;
179  return $sRet;
180  }
181 
187  function GenPermTableForModules($iType)
188  {
189  $aList = array ();
190  ch_import('ChWsbModuleDb');
191  $oDbModules = new ChWsbModuleDb();
192  $aModules = $oDbModules->getModules();
193  foreach ($aModules as $a) {
194  if (empty($a['path']) || !include(CH_DIRECTORY_PATH_MODULES . $a['path'] . 'install/config.php'))
195  continue;
196  if (empty($aConfig['install_permissions']) || !is_array($aConfig['install_permissions']['writable']))
197  continue;
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;
203  }
204  }
205  return $this->GenArrElemPerm($aList, $iType);
206  }
207 
208  function GenPermTable($isShowModules = false)
209  {
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>.';
221 
222  $this->sTroubledElements = '';
223 
224  $sInstallDirs = $this->GenArrElemPerm($this->aInstallDirs, 1);
225  $sFlashDirs = $this->GenArrElemPerm($this->aFlashDirs, 1);
226  $sInstallFiles = $this->GenArrElemPerm($this->aInstallFiles, 2);
227  $sFlashFiles = $this->GenArrElemPerm($this->aFlashFiles, 2);
228  if ($isShowModules) {
229  $sModulesDirs = $this->GenPermTableForModules(1);
230  $sModulesFiles = $this->GenPermTableForModules(2);
231  if ($sModulesDirs)
232  $sModulesDirs = "
233  <tr class='head'>
234  <td>{$sModulesDirsC}</td>
235  <td>{$sCurrentLevelC}</td>
236  <td>{$sDesiredLevelC}</td>
237  </tr>" . $sModulesDirs;
238  if ($sModulesFiles)
239  $sModulesFiles = "
240  <tr class='head'>
241  <td>{$sModulesFilesC}</td>
242  <td>{$sCurrentLevelC}</td>
243  <td>{$sDesiredLevelC}</td>
244  </tr>" . $sModulesFiles;
245  }
246  $sAdditionDir = (isAdmin()==true) ? CH_WSB_URL_ROOT : '../';
247  $sLeftAddEl = (isAdmin()==true) ? '<div class="left_side_sw_caption">'.$sDescriptionC.'</div>' : '';
248 
249  $sRet = <<<EOF
250 <script type="text/javascript">
251  <!--
252  function callSwitcher()
253  {
254  $('table.install_table tr:not(.troubled)').toggle();
255  }
256 
257  function switchToTroubled(e)
258  {
259  if (!e.checked) {
260  $('table.install_table tr:not(.troubled)').show();
261  } else {
262  $('table.install_table tr:not(.troubled)').hide();
263  }
264  return false;
265  }
266  -->
267 </script>
268 
269 <table width="100%" cellspacing="1" cellpadding="0" class="install_table">
270  <tr class="head troubled">
271  <td colspan="3" style="text-align:center;">
272  {$sLeftAddEl}
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>
275  </div>
276  <div class="clear_both"></div>
277  </td>
278  </tr>
279  <tr class="head">
280  <td colspan="3" style="text-align:center;" class="normal_td">{$sDirsC}</td>
281  </tr>
282  <tr class="head">
283  <td>{$sDirsC}</td>
284  <td>{$sCurrentLevelC}</td>
285  <td>{$sDesiredLevelC}</td>
286  </tr>
287  {$sInstallDirs}
288  <tr class="head">
289  <td>{$sFlashC} {$sDirsC}</td>
290  <td>{$sCurrentLevelC}</td>
291  <td>{$sDesiredLevelC}</td>
292  </tr>
293  {$sFlashDirs}
294  {$sModulesDirs}
295  <tr class="head">
296  <td colspan="3" style="text-align:center;">{$sFilesC}</td>
297  </tr>
298  <tr class="head">
299  <td>{$sFilesC}</td>
300  <td>{$sCurrentLevelC}</td>
301  <td>{$sDesiredLevelC}</td>
302  </tr>
303  {$sInstallFiles}
304  <tr class="head">
305  <td>{$sFlashC} {$sFilesC}</td>
306  <td>{$sCurrentLevelC}</td>
307  <td>{$sDesiredLevelC}</td>
308  </tr>
309  {$sFlashFiles}
310  {$sModulesFiles}
311  <tr class="head troubled">
312  <td colspan="3" style="text-align:center;">{$sBadFilesC}</td>
313  </tr>
314  <tr class="head troubled">
315  <td>{$sElementsC}</td>
316  <td>{$sCurrentLevelC}</td>
317  <td>{$sDesiredLevelC}</td>
318  </tr>
319  {$this->sTroubledElements}
320 </table>
321 EOF;
322  return $sRet;
323  }
324 
325  function GenArrElemPerm($aElements, $iType) { //$iType: 1 - folder, 2 - file
326  if (!is_array($aElements) || empty($aElements))
327  return '';
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';
333 
334  $iType = ($iType==1) ? 1 : 2;
335 
336  $sElements = '';
337  $i = 0;
338  foreach ($aElements as $sCurElement) {
339  $iCurType = $iType;
340 
341  $sAwaitedPerm = ($iCurType==1) ? $sWritableC : $sWritableC;
342 
343  $sElemCntStyle = ($i%2==0) ? 'even' : 'odd' ;
344  $bAccessible = ($iCurType==1) ? $this->isWritable($sCurElement) : $this->isWritable($sCurElement);
345 
346  //if ($sCurElement == 'flash/modules/global/app/ffmpeg.exe') {
347  if (strpos($sCurElement, 'ffmpeg') !== false) {
348  $sAwaitedPerm = $sExecutableC;
349  $bAccessible = $this->isExecutable($sCurElement);
350  }
351 
352  if ($bAccessible) {
353  $sResultPerm = ($iCurType==1) ? $sWritableC : $sWritableC;
354 
355  //if ($sCurElement == 'flash/modules/global/app/ffmpeg.exe') {
356  if (strpos($sCurElement, 'ffmpeg') !== false) {
357  $sResultPerm = $sExecutableC;
358  }
359 
360  $sElements .= <<<EOF
361 <tr class="cont {$sElemCntStyle}">
362  <td>{$sCurElement}</td>
363  <td class="span">
364  <span class="writable">{$sResultPerm}</span>
365  </td>
366  <td class="span">
367  <span class="desired">{$sAwaitedPerm}</span>
368  </td>
369 </tr>
370 EOF;
371  } else {
372  $sPerm = $this->getPermissions($sCurElement);
373  $sResultPerm = '';
374  if ($sPerm==false) {
375  $sResultPerm = $sNotExistsC;
376  } else {
377  $sResultPerm = ($iCurType==1) ? $sNonWritableC : $sNonWritableC;
378  }
379 
380  //if ($sCurElement == 'flash/modules/global/app/ffmpeg.exe') {
381  if (strpos($sCurElement, 'ffmpeg') !== false) {
382  $sResultPerm = $sNonExecutableC;
383  }
384 
385  $sPerm = '';
386 
387  $sElements .= <<<EOF
388 <tr class="cont {$sElemCntStyle}">
389  <td>{$sCurElement}</td>
390  <td class="span">
391  <span class="unwritable">{$sPerm} {$sResultPerm}</span>
392  </td>
393  <td class="span">
394  <span class="desired">{$sAwaitedPerm}</span>
395  </td>
396 </tr>
397 EOF;
398 
399  $this->sTroubledElements .= <<<EOF
400 <tr class="cont {$sElemCntStyle} troubled">
401  <td>{$sCurElement}</td>
402  <td class="span">
403  <span class="unwritable">{$sPerm} {$sResultPerm}</span>
404  </td>
405  <td class="span">
406  <span class="desired">{$sAwaitedPerm}</span>
407  </td>
408 </tr>
409 EOF;
410 
411  }
412  $i++;
413  }
414  return $sElements;
415  }
416 
417  function performInstalCheck() { //check requirements
418  $aErrors = array();
419 
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>';
426 
427  $aErrors = array_diff($aErrors, array('')); //delete empty
428  if (count($aErrors)) {
429  $sErrors = implode(" <br /> ", $aErrors);
430  echo <<<EOF
431 {$sErrors} <br />
432 Please go to the <br />
433 <a href="https://www.cheetahwsb.com/m/cheetah_docs/chapter/cheetah-troubleshooter">Cheetah Troubleshooter</a> <br />
434 and solve the problem.
435 EOF;
436  exit;
437  }
438  }
439 
441  {
442  $sRet = '<table width="100%" cellspacing="1" cellpadding="0" class="install_table">';
443  $sRet .= '
444 <tr class="head troubled">
445  <td></td>
446  <td class="center_aligned">' . _t('_sys_adm_installed') . '</td>
447  <td class="center_aligned">' . _t('_sys_adm_cache_support') . '</td>
448 </tr>';
449 
450  $aEngines = array ('File', 'Memcache');
451  foreach ($aEngines as $sEngine) {
452  $oCacheObject = @ch_instance ('ChWsbCache' . $sEngine);
453  $sRet .= '
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>
458 </tr>';
459  }
460 
461  $sRet .= '</table>';
462  return $sRet;
463  }
464 
465  function GenTabbedPage($isShowModules = false)
466  {
467  $sTitleC = _t('_adm_admtools_title');
468  $sAuditC = _t('');
469  $sPermissionsC = _t('');
470  $sCacheEnginesC = _t('');
471 
472  $sAuditTab = $this->GenAuditPage();
473  $sPermissionsTab = $this->GenPermTable($isShowModules);
474  $sCacheEnginesTab = $this->GenCacheEnginesTable();
475 
476  $sBoxContent = <<<EOF
477 <script type="text/javascript">
478  <!--
479  function switchAdmPage(oLink)
480  {
481  var sType = $(oLink).attr('id').replace('main_menu', '');
482  var sName = '#page' + sType;
483 
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');
487  });
488 
489  return false;
490  }
491  -->
492 </script>
493 
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>
499  </div>
500  <div id="page3" class="hidden">{$sCacheEnginesTab}</div>
501 </div>
502 EOF;
503 
504  $aTopItems = array(
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),
508  );
509 
510  return DesignBoxAdmin($sTitleC, $sBoxContent, $aTopItems, '', 11);
511  }
512 
513  //************
514  function isFolderReadWrite($filename)
515  {
516  clearstatcache();
517 
518  $aPathInfo = pathinfo(__FILE__);
519  $filename = $aPathInfo['dirname'] . '/../../' . $filename;
520 
521  return (@file_exists($filename . '/.') && is_readable( $filename ) && is_writable( $filename ) ) ? true : false;
522  }
523 
524  function isFileReadWrite($filename)
525  {
526  clearstatcache();
527 
528  $aPathInfo = pathinfo(__FILE__);
529  $filename = $aPathInfo['dirname'] . '/../../' . $filename;
530 
531  return (is_file($filename) && is_readable( $filename ) && is_writable( $filename ) ) ? true : false;
532  }
533 
534  function isFileExecutable($filename)
535  {
536  clearstatcache();
537 
538  $aPathInfo = pathinfo(__FILE__);
539  $filename = $aPathInfo['dirname'] . '/../../' . $filename;
540 
541  return (is_file($filename) && is_executable( $filename ) ) ? true : false;
542  }
543 
544  //************
545 
546  function isAllowUrlInclude()
547  {
548  $sAllowUrlInclude = ini_get('allow_url_include');
549  return !($sAllowUrlInclude == 0);
550  }
551 
552  function GenAuditPage()
553  {
554  $sCheetahPath = CH_DIRECTORY_PATH_ROOT;
555  $sffmpegpath = getFfmpegPath();
556 
557  $sEmailToCkeckMailSending = getParam('site_email');
558 
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];
562  else
563  $sLatestCheetahVer = 'undefined';
564 
565  $sMinPhpVer = '5.3.0';
566  $sMinMysqlVer = '4.1.2';
567 
568  $a = unserialize(file_get_contents("http://www.php.net/releases/index.php?serialize=1"));
569  $sLatestPhpVersion = $a[5]['version'];
570 
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'),
593  );
594  if (version_compare(phpversion(), "5.4", ">=") == 1)
595  unset($aPhpSettings['short_open_tag']);
596 
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),
604  );
605 
606  $aRequiredApacheModules = array (
607  'rewrite_module' => 'mod_rewrite',
608  );
609 
610  $aCheetahOptimizationSettings = array (
611 
612  'DB cache' => array('enabled' => 'sys_db_cache_enable', 'cache_engine' => 'sys_db_cache_engine', 'check_accel' => true),
613 
614  'Page blocks cache' => array('enabled' => 'sys_pb_cache_enable', 'cache_engine' => 'sys_pb_cache_engine', 'check_accel' => true),
615 
616  'Member menu cache' => array('enabled' => 'always_on', 'cache_engine' => 'sys_mm_cache_engine', 'check_accel' => true),
617 
618  'Templates Cache' => array('enabled' => 'sys_template_cache_enable', 'cache_engine' => 'sys_template_cache_engine', 'check_accel' => true),
619 
620  'CSS files cache' => array('enabled' => 'sys_template_cache_css_enable', 'cache_engine' => '', 'check_accel' => false),
621 
622  'JS files cache' => array('enabled' => 'sys_template_cache_js_enable', 'cache_engine' => '', 'check_accel' => false),
623 
624  'Compression for CSS/JS cache' => array('enabled' => 'sys_template_cache_compress_enable', 'cache_engine' => '', 'check_accel' => false),
625  );
626 
627  ob_start();
628 ?>
629 <style>
630 .ok {
631  color: #0b0;
632 }
633 .fail {
634  color: #d00;
635 }
636 .warn {
637  color: #800080;
638 }
639 .undef {
640  color: #cccccc;
641 }
642 </style>
643 <h2>Software requirements</h2>
644 <ul>
645  <li><b>PHP</b>:
646  <?php
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)';
654  else
655  echo '<b class="ok">OK</b>';
656 
657  ?>
658  <ul>
659  <?php
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) {
663  $a = $this->checkPhpSetting($sName, $r);
664  echo "<li>$sName = " . $this->format_output($a['real_val'], $r) ." - ";
665  if ($a['res'])
666  echo '<b class="ok">OK</b>';
667  elseif ($r['warn'])
668  echo "<b class='warn'>WARNING</b> (should be {$r['op']} " . $this->format_output($r['val'], $r) . ")";
669  else
670  echo "<b class='fail'>FAIL</b> (must be {$r['op']} " . $this->format_output($r['val'], $r) . ")";
671  echo "</li>\n";
672  }
673  ?>
674  </ul>
675  </li>
676  <li><b>MySQL</b>:
677  <?php
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 . ')';
685  else
686  echo '<b class="ok">OK</b>';
687  } else {
688  echo '<b class="undef">UNDEFINED</b>';
689  }
690  ?>
691  </li>
692  <li><b>Web-server</b>:
693  <?php
694  echo $_SERVER['SERVER_SOFTWARE'];
695  ?>
696  <ul>
697  <?php
698  $bIsNginx = (stripos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false);
699 
700  if(!$bIsNginx) {
701  foreach ($aRequiredApacheModules as $sName => $sNameCompiledName)
702  echo '<li>' . $sName . ' - ' . $this->checkApacheModule($sName, $sNameCompiledName) . '</li>';
703  }
704  ?>
705  </ul>
706  </li>
707  <li><b>OS</b>:
708  <?php
709  echo php_uname();
710  ?>
711  </li>
712 </ul>
713 
714 <h2>Hardware requirements</h2>
715 <p>
716  Hardware requirements can not be determined automatically - <a href="#manual_audit">manual server audit</a> may be reqired.
717 </p>
718 
719 <h2>Site setup</h2>
720 <ul>
721  <li>
722  <b>Cheetah version</b> =
723  <?php
724  $sCheetahVer = $GLOBALS['site']['ver'] . '.' . $GLOBALS['site']['build'];
725  if($GLOBALS['site']['pre-release'] != '') {
726  echo $sCheetahVer . '.' . $GLOBALS['site']['pre-release'] . ' - ';
727  } else {
728  echo $sCheetahVer . ' - ';
729  }
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)';
732  } else {
733  if($GLOBALS['site']['pre-release'] != '') {
734  echo '<b class="warn">Pre-Release</b>';
735  } else {
736  echo '<b class="ok">OK</b>';
737  }
738  }
739  ?>
740  </li>
741  <li>
742  <b>files and folders permissions</b>
743  <br />
744  Please <a href="javascript:void(0);" onclick="switchAdmPage($('#main_menu1'));">click here</a> to find out if cheetah permissions are correct.
745  </li>
746  <li>
747  <b>ffmpeg</b>
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.
751  </li>
752  <li>
753  <script language="javascript">
754  function ch_sys_adm_audit_test_email()
755  {
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);
759  });
760  }
761  </script>
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>
764  </li>
765  <li>
766  <b>cronjobs</b>
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.
769  </li>
770  <li>
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>
773  </li>
774  <li>
775  <b>media server</b>
776  <br />
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.
778  </li>
779  <li>
780  <b>forums</b>
781  <br />
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).
783  </li>
784 </ul>
785 
786 <h2>Site optimization</h2>
787 <ul>
788  <li><b>PHP</b>:
789  <ul>
790  <li><b>PHP accelerator</b> =
791  <?php
793  if (!$sAccel)
794  echo 'NO - <b class="warn">WARNING</b> (Cheetah can be much faster if you install some PHP accelerator))';
795  else
796  echo $sAccel . ' - <b class="ok">OK</b>';
797  ?>
798  </li>
799  <li><b>PHP setup</b> =
800  <?php
801  $sSapi = php_sapi_name();
802  echo $sSapi . ' - ';
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)';
805  else
806  echo '<b class="ok">OK</b>';
807  ?>
808  </li>
809  </ul>
810  </li>
811  <?php
812  $d = ini_get('disable_functions');
813  $b1 = false;
814  $b2 = false;
815  $s = '';
816  if(strpos($d, 'opcache_get_status') !== false) {
817  $b1 = true;
818  $s .= '<ul><li><span class="fail">opcache_get_status</li></ul>';
819  }
820  if(strpos($d, 'opcache_get_configuration') !== false) {
821  $b2 = true;
822  $s .= '<ul><li><span class="fail">opcache_get_configuration</li></ul>';
823  }
824  if($b1 == true || $b2 == true) {
825  echo '<ul>';
826  echo ' <li>';
827  echo '<b>These OPcache functions are in the php.ini disable_functions and should be removed for proper operation of Cheetah:</b>';
828  echo $s;
829  echo ' </li>';
830  echo '</ul>';
831  }
832  ?>
833  <li><b>MySQL</b>:
834  <ul>
835  <?php
836  foreach ($aMysqlSettings as $sName => $r) {
837  $a = $this->checkMysqlSetting($sName, $r);
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";
840  }
841  ?>
842  </ul>
843  </li>
844  <li><b>Web-server</b>:
845  <ul>
846  <li>
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>
849  <br />
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.
851  <br />
852  <?php
853  $sName = 'expires_module';
854  echo 'To apply this optimization you need to have <b>' . $sName . '</b> Apache module - ' . $this->checkApacheModule($sName);
855  ?>
856  </li>
857  <li>
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.
859  <br />
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.
861  </textarea>
862  <br />
863  <?php
864  $sName = 'deflate_module';
865  echo 'To apply this optimization you need to have <b>' . $sName . '</b> Apache module - ' . $this->checkApacheModule($sName);
866  ?>
867  </li>
868  </ul>
869  </li>
870  <li><b>Cheetah</b>:
871  <ul>
872  <?php
873 
874  foreach ($aCheetahOptimizationSettings as $sName => $a) {
875 
876  echo "<li><b>$sName</b> = ";
877 
878  echo ('always_on' == $a['enabled'] || getParam($a['enabled'])) ? 'On' : 'Off';
879 
880  if ($a['cache_engine'])
881  echo " (" . getParam($a['cache_engine']) . ' based cache engine)';
882 
883  echo ' - ';
884 
885  if ('always_on' != $a['enabled'] && !getParam($a['enabled'])) {
886  echo '<b class="fail">FAIL</b>';
887  echo '<ul>';
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>';
890  echo '</ul>';
891  }
892  //elseif ($a['check_accel'] && !$this->getPhpAccelerator() && 'File' == getParam($a['cache_engine']))
893  // echo '<b class="warn">WARNING</b> (installing PHP accelerator will speed-up file cache)';
894  else
895  echo '<b class="ok">OK</b>';
896 
897  echo "</li>\n";
898  }
899 
900  ?>
901  </ul>
902  </li>
903 </ul>
904 
905 <a name="manual_audit"></a>
906 <h2>Manual Server Audit</h2>
907 <p>
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>.
909 </p>
910 
911 <?php
912 
913  return ob_get_clean();
914  }
915 
916  function checkPhpSetting($sName, $a)
917  {
918  $mixedVal = ini_get($sName);
919  $mixedVal = $this->format_input ($mixedVal, $a);
920 
921  switch ($a['op']) {
922  case 'without':
923  $aFuncsDisabled = explode(',', $mixedVal);
924  $aFuncsMustBeEnabled = explode(',', $a['val']);
925  $a = array_intersect($aFuncsDisabled, $aFuncsMustBeEnabled);
926  $bResult = !$a;
927  break;
928  case 'module':
929  $bResult = extension_loaded($a['val']);
930  $mixedVal = $bResult ? $a['val'] : '';
931  break;
932  case 'val':
933  $mixedVal = $bResult = $a['val'];
934  break;
935  case '>':
936  $bResult = (isset($a['unlimited']) && $mixedVal == $a['unlimited']) ? true : ($mixedVal > $a['val']);
937  break;
938  case '>=':
939  $bResult = (isset($a['unlimited']) && $mixedVal == $a['unlimited']) ? true : ($mixedVal >= $a['val']);
940  break;
941  case '=':
942  default:
943  $bResult = ($mixedVal == $a['val']);
944  }
945  return array ('res' => $bResult, 'real_val' => $mixedVal);
946  }
947 
948  function checkMysqlSetting($sName, $a)
949  {
950  $mixedVal = $this->mysqlGetOption($sName);
951  $mixedVal = $this->format_input ($mixedVal, $a);
952 
953  switch ($a['op']) {
954  case '>':
955  $bResult = ($mixedVal > $a['val']);
956  break;
957  case '>=':
958  $bResult = ($mixedVal >= $a['val']);
959  break;
960  case 'strcasecmp':
961  $bResult = 0 === strcasecmp($mixedVal, $a['val']);
962  break;
963  case '=':
964  default:
965  $bResult = ($mixedVal == $a['val']);
966  }
967  return array ('res' => $bResult, 'real_val' => $mixedVal);
968  }
969 
970  function format_output ($mixedVal, $a)
971  {
972  switch ($a['type']) {
973  case 'bool':
974  return $mixedVal ? 'On' : 'Off';
975  case 'bytes':
976  return format_bytes($mixedVal, true);
977  default:
978  return $mixedVal;
979  }
980  }
981 
982  function format_input ($mixedVal, $a)
983  {
984  switch (isset($a['type'])) {
985  case 'bytes':
986  return $this->format_bytes($mixedVal);
987  default:
988  return $mixedVal;
989  }
990  }
991 
992  function format_bytes($val)
993  {
994  return return_bytes($val);
995  }
996 
997  function checkApacheModule ($sModule, $sNameCompiledName = '')
998  {
999  $a = array (
1000  'deflate_module' => 'mod_deflate',
1001  'expires_module' => 'mod_expires',
1002  );
1003  if (!$sNameCompiledName && isset($a[$sModule]))
1004  $sNameCompiledName = $a[$sModule];
1005 
1006  if (function_exists('apache_get_modules')) {
1007 
1008  $aModules = apache_get_modules();
1009  $ret = in_array($sNameCompiledName, $aModules);
1010 
1011  } else {
1012 
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 . ')';
1022 
1023  $ret = (boolean)`$sApachectlPath -M 2>&1 | grep $sModule`;
1024  if (!$ret)
1025  $ret = (boolean)`$sApachectlPath -l 2>&1 | grep $sNameCompiledName`;
1026  }
1027 
1028  return $ret ? '<b class="ok">OK</b>' : '<b class="fail">FAIL</b> (You will need to install ' . $sModule . ' for Apache)';
1029  }
1030 
1031 
1032  function getPhpAccelerator ()
1033  {
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),
1041  );
1042  } else {
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),
1048  );
1049  }
1050 
1051  foreach ($aAccelerators as $sName => $r) {
1052  $a = $this->checkPhpSetting($sName, $r);
1053  if ($a['res'])
1054  return $sName;
1055  }
1056  return false;
1057  }
1058 
1059  function mysqlGetOption ($s)
1060  {
1061  return db_value("SELECT @@{$s}");
1062  }
1063 
1064  function getUrlForGooglePageSpeed ($sRule)
1065  {
1066  $sUrl = urlencode(CH_WSB_URL_ROOT);
1067  return 'http://pagespeed.googlelabs.com/#url=' . $sUrl . '&mobile=false&rule=' . $sRule;
1068  }
1069 
1070  function sendTestEmail ()
1071  {
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>');
1074  if (!$mixedRet)
1075  return '<b class="fail">FAIL</b> (mail send failed)';
1076  else
1077  return 'test mail was send, please check ' . $sEmailToCkeckMailSending . ' mailbox';
1078  }
1079 }
sendTestEmail
sendTestEmail()
Definition: ChWsbAdminTools.php:1070
ChWsbIO
Definition: ChWsbIO.php:9
$b1
$b1
Definition: ChWsbAdminTools.php:813
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
that
you may still notice some empty particularly if a node had but those elements were later removed because they were not permitted in that or tags that
Definition: AutoFormat.RemoveEmpty.txt:40
$aPathInfo
$aPathInfo
Definition: cmd.php:12
to
if the NMTOKENS definition is forced To get behavior of HTML Purifier prior to
Definition: Attr.ClassUseCDATA.txt:10
normal
if(!defined("BOARD_STATUS_NORMAL")) define("BOARD_STATUS_NORMAL" normal
Definition: constants.inc.php: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
$sBoxContent
$sBoxContent
Definition: db.php:35
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
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
format_output
format_output($mixedVal, $a)
Definition: ChWsbAdminTools.php:970
sendMail
sendMail( $sRecipientEmail, $sMailSubject, $sMailBody, $iRecipientID=0, $aPlus=array(), $sEmailFlag='html', $isDisableAlert=false, $bForceSend=false)
Definition: utils.inc.php:461
ChWsbAdminTools\$aInstallDirs
$aInstallDirs
Definition: ChWsbAdminTools.php:14
enabled
if(!defined("WIDGET_STATUS_ENABLED")) define("WIDGET_STATUS_ENABLED" enabled
Definition: constants.inc.php:17
getPhpAccelerator
getPhpAccelerator()
Definition: ChWsbAdminTools.php:1032
ChWsbAdminTools\isFileExecutable
isFileExecutable($filename)
Definition: ChWsbAdminTools.php:534
php
ChWsbModuleDb
Definition: ChWsbModuleDb.php:12
are
Core LexerImpl the lexer implementation will be auto detected based on your PHP version and configuration</dd >< dt >< em > string</em > lexer identifier</dt >< dd > This is a slim way of manually overridding the implementation Currently recognized values are
Definition: Core.LexerImpl.txt:23
ChWsbAdminTools\$aPostInstallPermDirs
$aPostInstallPermDirs
Definition: ChWsbAdminTools.php:18
save
save($sSavedId, $sFilePath, $sTitle)
Definition: customFunctions.inc.php:18
If
if the work is an executable linked with the with the complete machine readable work that uses the as object code and or source so that the user can modify the Library and then relink to produce a modified executable containing the modified rather than copying library functions into the if the user installs as long as the modified version is interface compatible with the version that the work was made with c Accompany the work with a written valid for at least three to give the same user the materials specified in for a charge no more than the cost of performing this distribution d If distribution of the work is made by offering access to copy from a designated offer equivalent access to copy the above specified materials from the same place e Verify that the user has already received a copy of these materials or that you have already sent this user a copy For an the required form of the work that uses the Library must include any data and utility programs needed for reproducing the executable from it as a special the materials to be distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system Such a contradiction means you cannot use both them and the Library together in an executable that you distribute You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities not covered by this and distribute such a combined provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise and provided that you do these two uncombined with any other library facilities This must be distributed under the terms of the Sections above b Give prominent notice with the combined library of the fact that part of it is a work based on the and explaining where to find the accompanying uncombined form of the same work You may not link or distribute the Library except as expressly provided under this License Any attempt otherwise to link or distribute the Library is and will automatically terminate your rights under this License parties who have received or from you under this License will not have their licenses terminated so long as such parties remain in full compliance You are not required to accept this since you have not signed it nothing else grants you permission to modify or distribute the Library or its derivative works These actions are prohibited by law if you do not accept this License by modifying or distributing the you indicate your acceptance of this License to do and all its terms and conditions for distributing or modifying the Library or works based on it Each time you redistribute the the recipient automatically receives a license from the original licensor to link with or modify the Library subject to these terms and conditions You may not impose any further restrictions on the recipients exercise of the rights granted herein You are not responsible for enforcing compliance by third parties with this License If
Definition: license.txt:374
ChWsbIO\isWritable
isWritable($sFile, $sPrePath='/../../')
Definition: ChWsbIO.php:23
ChWsbAdminTools\isFolderReadWrite
isFolderReadWrite($filename)
Definition: ChWsbAdminTools.php:514
isAdmin
isAdmin()
Definition: index.php:649
ChWsbAdminTools\$aFlashFiles
$aFlashFiles
Definition: ChWsbAdminTools.php:17
ChWsbAdminTools\GenPermTableForModules
GenPermTableForModules($iType)
Definition: ChWsbAdminTools.php:187
ChWsbAdminTools\GenCommonCode
GenCommonCode()
Definition: ChWsbAdminTools.php:108
show
a choreographic work or entertainment in dumb show
Definition: license.txt:19
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
ChWsbAdminTools\GenCacheEnginesTable
GenCacheEnginesTable()
Definition: ChWsbAdminTools.php:440
ChWsbAdminTools\__construct
__construct()
Definition: ChWsbAdminTools.php:22
DesignBoxAdmin
DesignBoxAdmin($sTitle, $sContent, $mixedTopItems='', $sBottomItems='', $iIndex=1)
Definition: admin_design.inc.php:50
you
Filter ExtractStyleBlocks which removes< code > style</code > blocks from input cleans them up with and places them in the< code > StyleBlocks</code > context for further use by you
Definition: Filter.ExtractStyleBlocks.txt:11
ChWsbAdminTools\GenPermTable
GenPermTable($isShowModules=false)
Definition: ChWsbAdminTools.php:208
exit
exit
Definition: cart.php:21
$aTopItems
$aTopItems
Definition: antispam.php:366
signs
to broadcast and rebroadcast the Work by any means including signs
Definition: license.txt:21
and
and
Definition: license.txt:18
ChWsbAdminTools\GenTabbedPage
GenTabbedPage($isShowModules=false)
Definition: ChWsbAdminTools.php:465
ChWsbAdminTools\GenArrElemPerm
GenArrElemPerm($aElements, $iType)
Definition: ChWsbAdminTools.php:325
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
checkApacheModule
checkApacheModule($sModule, $sNameCompiledName='')
Definition: ChWsbAdminTools.php:997
ChWsbAdminTools\$aInstallFiles
$aInstallFiles
Definition: ChWsbAdminTools.php:15
$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
ChWsbAdminTools
Definition: ChWsbAdminTools.php:11
in
and in and other persons who play in
Definition: license.txt:18
ChWsbAdminTools\$aPostInstallPermFiles
$aPostInstallPermFiles
Definition: ChWsbAdminTools.php:19
ChWsbAdminTools\performInstalCheck
performInstalCheck()
Definition: ChWsbAdminTools.php:417
getFfmpegPath
getFfmpegPath()
Definition: utils.inc.php:1988
$oDb
global $oDb
Definition: db.inc.php:39
type
if(!defined("USER_STATUS_TYPE")) define("USER_STATUS_TYPE" type
Definition: constants.inc.php:13
src
img src
Definition: URI.MungeResources.txt:8
ch_instance
ch_instance($sClassName, $aParams=array(), $aModule=array())
Definition: utils.inc.php:1264
ChWsbIO\isExecutable
isExecutable($sFile)
Definition: ChWsbIO.php:13
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
ChWsbAdminTools\isFileReadWrite
isFileReadWrite($filename)
Definition: ChWsbAdminTools.php:524
ChWsbAdminTools\$sTroubledElements
$sTroubledElements
Definition: ChWsbAdminTools.php:12
$b2
$b2
Definition: ChWsbAdminTools.php:814
ChWsbAdminTools\isAllowUrlInclude
isAllowUrlInclude()
Definition: ChWsbAdminTools.php:546
$aConfig
$aConfig
Definition: config.php:8
ChWsbAdminTools\GenAuditPage
GenAuditPage()
Definition: ChWsbAdminTools.php:552
$sAccel
$sAccel
Definition: ChWsbAdminTools.php:792
checkPhpSetting
checkPhpSetting($sName, $a)
Definition: ChWsbAdminTools.php:916
$aModules
$aModules
Definition: constants.inc.php:29
checkMysqlSetting
checkMysqlSetting($sName, $a)
Definition: ChWsbAdminTools.php:948
ChWsbIO\getPermissions
getPermissions($sFileName)
Definition: ChWsbIO.php:33
$s
$s
Definition: ChWsbAdminTools.php:815
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
work
License THE YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS Definitions Adaptation means a work based upon the or upon the Work and other pre existing such as a derivative work
Definition: license.txt:14
things
if the work is an executable linked with the with the complete machine readable work that uses the as object code and or source so that the user can modify the Library and then relink to produce a modified executable containing the modified rather than copying library functions into the if the user installs as long as the modified version is interface compatible with the version that the work was made with c Accompany the work with a written valid for at least three to give the same user the materials specified in for a charge no more than the cost of performing this distribution d If distribution of the work is made by offering access to copy from a designated offer equivalent access to copy the above specified materials from the same place e Verify that the user has already received a copy of these materials or that you have already sent this user a copy For an the required form of the work that uses the Library must include any data and utility programs needed for reproducing the executable from it as a special the materials to be distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system Such a contradiction means you cannot use both them and the Library together in an executable that you distribute You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities not covered by this and distribute such a combined provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise and provided that you do these two things
Definition: license.txt:341
then
consider the above with< code > be< code ></p >< p >< strong > not HTML and I am working to get it fixed Until then
Definition: Filter.ExtractStyleBlocks.Scope.txt:26
Please
Please
Definition: install.txt:1
other
if(!defined("CONTENTS_TYPE_OTHER")) define("CONTENTS_TYPE_OTHER" other
Definition: constants.inc.php:15
on
Core MaintainLineNumbers HTML Purifier will add line number information to all tokens This is useful when error reporting is turned on
Definition: Core.MaintainLineNumbers.txt:9
b
el b
Definition: Output.SortAttr.txt:8
version
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 which gives you legal permission to distribute and or modify the library To protect each we want to make it very clear that there is no warranty for the free library if the library is modified by someone else and passed the recipients should know that what they have is not the original version
Definition: license.txt:55
not
if not
Definition: license.txt:487
ChWsbAdminTools\$aFlashDirs
$aFlashDirs
Definition: ChWsbAdminTools.php:16
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
display
CSS AllowTricky< code > display
Definition: CSS.AllowTricky.txt:9
ChWsbDb\getInstance
static getInstance()
Definition: ChWsbDb.php:82
$sName
$sName
Definition: ChWsbAdminTools.php:853
http
AutoFormat Linkify auto linking http
Definition: AutoFormat.Linkify.txt:8
label
to broadcast and rebroadcast the Work by any means including sounds or images Reproduce means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the including storage of a protected performance or phonogram in digital form or other electronic medium Fair Dealing Rights Nothing in this License is intended to or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws License Grant Subject to the terms and conditions of this Licensor hereby grants You a royalty non perpetual(for the duration of the applicable copyright) license to exercise the rights in the Work as stated below to create and Reproduce Adaptations provided that any such including any translation in any takes reasonable steps to clearly label
Definition: license.txt:29
color
CSS AllowDuplicates HTML Purifier removes duplicate CSS like< code > color
Definition: CSS.AllowDuplicates.txt:8
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10
or
Voluntary License Schemes The Licensor waives the right to collect whether individually or
Definition: license.txt:37