ManageServer.php 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111
  1. <?php
  2. /**
  3. * Contains all the functionality required to be able to edit the core server
  4. * settings. This includes anything from which an error may result in the forum
  5. * destroying itself in a firey fury.
  6. *
  7. * Adding options to one of the setting screens isn't hard. Call prepareDBSettingsContext;
  8. * The basic format for a checkbox is:
  9. * array('check', 'nameInModSettingsAndSQL'),
  10. * And for a text box:
  11. * array('text', 'nameInModSettingsAndSQL')
  12. * (NOTE: You have to add an entry for this at the bottom!)
  13. *
  14. * In these cases, it will look for $txt['nameInModSettingsAndSQL'] as the description,
  15. * and $helptxt['nameInModSettingsAndSQL'] as the help popup description.
  16. *
  17. * Here's a quick explanation of how to add a new item:
  18. *
  19. * - A text input box. For textual values.
  20. * array('text', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth'),
  21. * - A text input box. For numerical values.
  22. * array('int', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth'),
  23. * - A text input box. For floating point values.
  24. * array('float', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth'),
  25. * - A large text input box. Used for textual values spanning multiple lines.
  26. * array('large_text', 'nameInModSettingsAndSQL', 'OptionalNumberOfRows'),
  27. * - A check box. Either one or zero. (boolean)
  28. * array('check', 'nameInModSettingsAndSQL'),
  29. * - A selection box. Used for the selection of something from a list.
  30. * array('select', 'nameInModSettingsAndSQL', array('valueForSQL' => $txt['displayedValue'])),
  31. * Note that just saying array('first', 'second') will put 0 in the SQL for 'first'.
  32. * - A password input box. Used for passwords, no less!
  33. * array('password', 'nameInModSettingsAndSQL', 'OptionalInputBoxWidth'),
  34. * - A permission - for picking groups who have a permission.
  35. * array('permissions', 'manage_groups'),
  36. * - A BBC selection box.
  37. * array('bbc', 'sig_bbc'),
  38. * - A list of boards to choose from
  39. * array('boards', 'likes_boards'),
  40. * Note that the storage in the database is as 1,2,3,4
  41. *
  42. * For each option:
  43. * - type (see above), variable name, size/possible values.
  44. * OR make type '' for an empty string for a horizontal rule.
  45. * - SET preinput - to put some HTML prior to the input box.
  46. * - SET postinput - to put some HTML following the input box.
  47. * - SET invalid - to mark the data as invalid.
  48. * - PLUS you can override label and help parameters by forcing their keys in the array, for example:
  49. * array('text', 'invalidlabel', 3, 'label' => 'Actual Label')
  50. *
  51. * Simple Machines Forum (SMF)
  52. *
  53. * @package SMF
  54. * @author Simple Machines http://www.simplemachines.org
  55. * @copyright 2013 Simple Machines and individual contributors
  56. * @license http://www.simplemachines.org/about/smf/license.php BSD
  57. *
  58. * @version 2.1 Alpha 1
  59. */
  60. if (!defined('SMF'))
  61. die('No direct access...');
  62. /**
  63. * This is the main dispatcher. Sets up all the available sub-actions, all the tabs and selects
  64. * the appropriate one based on the sub-action.
  65. *
  66. * Requires the admin_forum permission.
  67. * Redirects to the appropriate function based on the sub-action.
  68. *
  69. * @uses edit_settings adminIndex.
  70. */
  71. function ModifySettings()
  72. {
  73. global $context, $txt, $scripturl, $boarddir;
  74. // This is just to keep the database password more secure.
  75. isAllowedTo('admin_forum');
  76. // Load up all the tabs...
  77. $context[$context['admin_menu_name']]['tab_data'] = array(
  78. 'title' => $txt['admin_server_settings'],
  79. 'help' => 'serversettings',
  80. 'description' => $txt['admin_basic_settings'],
  81. );
  82. checkSession('request');
  83. // The settings are in here, I swear!
  84. loadLanguage('ManageSettings');
  85. $context['page_title'] = $txt['admin_server_settings'];
  86. $context['sub_template'] = 'show_settings';
  87. $subActions = array(
  88. 'general' => 'ModifyGeneralSettings',
  89. 'database' => 'ModifyDatabaseSettings',
  90. 'cookie' => 'ModifyCookieSettings',
  91. 'security' => 'ModifyGeneralSecuritySettings',
  92. 'cache' => 'ModifyCacheSettings',
  93. 'loads' => 'ModifyLoadBalancingSettings',
  94. 'phpinfo' => 'ShowPHPinfoSettings',
  95. );
  96. call_integration_hook('integrate_server_settings', array(&$subActions));
  97. // By default we're editing the core settings
  98. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'general';
  99. $context['sub_action'] = $_REQUEST['sa'];
  100. // Any messages to speak of?
  101. $context['settings_message'] = (isset($_REQUEST['msg']) && isset($txt[$_REQUEST['msg']])) ? $txt[$_REQUEST['msg']] : '';
  102. // Warn the user if there's any relevant information regarding Settings.php.
  103. if ($_REQUEST['sa'] != 'cache')
  104. {
  105. // Warn the user if the backup of Settings.php failed.
  106. $settings_not_writable = !is_writable($boarddir . '/Settings.php');
  107. $settings_backup_fail = !@is_writable($boarddir . '/Settings_bak.php') || !@copy($boarddir . '/Settings.php', $boarddir . '/Settings_bak.php');
  108. if ($settings_not_writable)
  109. $context['settings_message'] = '<div class="centertext"><strong>' . $txt['settings_not_writable'] . '</strong></div><br />';
  110. elseif ($settings_backup_fail)
  111. $context['settings_message'] = '<div class="centertext"><strong>' . $txt['admin_backup_fail'] . '</strong></div><br />';
  112. $context['settings_not_writable'] = $settings_not_writable;
  113. }
  114. // Call the right function for this sub-action.
  115. $subActions[$_REQUEST['sa']]();
  116. }
  117. /**
  118. * General forum settings - forum name, maintenance mode, etc.
  119. * Practically, this shows an interface for the settings in Settings.php to be changed.
  120. *
  121. * - It uses the rawdata sub template (not theme-able.)
  122. * - Requires the admin_forum permission.
  123. * - Uses the edit_settings administration area.
  124. * - Contains the actual array of settings to show from Settings.php.
  125. * - Accessed from ?action=admin;area=serversettings;sa=general.
  126. *
  127. * @param $return_config
  128. */
  129. function ModifyGeneralSettings($return_config = false)
  130. {
  131. global $scripturl, $context, $txt;
  132. /* If you're writing a mod, it's a bad idea to add things here....
  133. For each option:
  134. variable name, description, type (constant), size/possible values, helptext.
  135. OR an empty string for a horizontal rule.
  136. OR a string for a titled section. */
  137. $config_vars = array(
  138. array('mbname', $txt['admin_title'], 'file', 'text', 30),
  139. '',
  140. array('maintenance', $txt['admin_maintain'], 'file', 'check'),
  141. array('mtitle', $txt['maintenance_subject'], 'file', 'text', 36),
  142. array('mmessage', $txt['maintenance_message'], 'file', 'text', 36),
  143. '',
  144. array('webmaster_email', $txt['admin_webmaster_email'], 'file', 'text', 30),
  145. '',
  146. array('enableCompressedOutput', $txt['enableCompressedOutput'], 'db', 'check', null, 'enableCompressedOutput'),
  147. array('disableTemplateEval', $txt['disableTemplateEval'], 'db', 'check', null, 'disableTemplateEval'),
  148. array('disableHostnameLookup', $txt['disableHostnameLookup'], 'db', 'check', null, 'disableHostnameLookup'),
  149. );
  150. call_integration_hook('integrate_general_settings', array(&$config_vars));
  151. if ($return_config)
  152. return $config_vars;
  153. // Setup the template stuff.
  154. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=general;save';
  155. $context['settings_title'] = $txt['general_settings'];
  156. // Saving settings?
  157. if (isset($_REQUEST['save']))
  158. {
  159. call_integration_hook('integrate_save_general_settings');
  160. saveSettings($config_vars);
  161. redirectexit('action=admin;area=serversettings;sa=general;' . $context['session_var'] . '=' . $context['session_id']. ';msg=' . (!empty($context['settings_message']) ? $context['settings_message'] : 'core_settings_saved'));
  162. }
  163. // Fill the config array.
  164. prepareServerSettingsContext($config_vars);
  165. }
  166. /**
  167. * Basic database and paths settings - database name, host, etc.
  168. *
  169. * - It shows an interface for the settings in Settings.php to be changed.
  170. * - It contains the actual array of settings to show from Settings.php.
  171. * - It uses the rawdata sub template (not theme-able.)
  172. * - Requires the admin_forum permission.
  173. * - Uses the edit_settings administration area.
  174. * - Accessed from ?action=admin;area=serversettings;sa=database.
  175. *
  176. * @param $return_config
  177. */
  178. function ModifyDatabaseSettings($return_config = false)
  179. {
  180. global $scripturl, $context, $settings, $txt, $boarddir;
  181. /* If you're writing a mod, it's a bad idea to add things here....
  182. For each option:
  183. variable name, description, type (constant), size/possible values, helptext.
  184. OR an empty string for a horizontal rule.
  185. OR a string for a titled section. */
  186. $config_vars = array(
  187. array('db_persist', $txt['db_persist'], 'file', 'check', null, 'db_persist'),
  188. array('db_error_send', $txt['db_error_send'], 'file', 'check'),
  189. array('ssi_db_user', $txt['ssi_db_user'], 'file', 'text', null, 'ssi_db_user'),
  190. array('ssi_db_passwd', $txt['ssi_db_passwd'], 'file', 'password'),
  191. '',
  192. array('autoFixDatabase', $txt['autoFixDatabase'], 'db', 'check', false, 'autoFixDatabase'),
  193. array('autoOptMaxOnline', $txt['autoOptMaxOnline'], 'subtext' => $txt['zero_for_no_limit'], 'db', 'int'),
  194. '',
  195. array('boardurl', $txt['admin_url'], 'file', 'text', 36),
  196. array('boarddir', $txt['boarddir'], 'file', 'text', 36),
  197. array('sourcedir', $txt['sourcesdir'], 'file', 'text', 36),
  198. array('cachedir', $txt['cachedir'], 'file', 'text', 36),
  199. );
  200. call_integration_hook('integrate_database_settings', array(&$config_vars));
  201. if ($return_config)
  202. return $config_vars;
  203. // Setup the template stuff.
  204. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=database;save';
  205. $context['settings_title'] = $txt['database_paths_settings'];
  206. $context['save_disabled'] = $context['settings_not_writable'];
  207. // Saving settings?
  208. if (isset($_REQUEST['save']))
  209. {
  210. call_integration_hook('integrate_save_database_settings');
  211. saveSettings($config_vars);
  212. redirectexit('action=admin;area=serversettings;sa=database;' . $context['session_var'] . '=' . $context['session_id'] . ';msg=' . (!empty($context['settings_message']) ? $context['settings_message'] : 'core_settings_saved'));
  213. }
  214. // Fill the config array.
  215. prepareServerSettingsContext($config_vars);
  216. }
  217. /**
  218. * This function handles cookies settings modifications.
  219. *
  220. * @param bool $return_config = false
  221. */
  222. function ModifyCookieSettings($return_config = false)
  223. {
  224. global $context, $scripturl, $txt, $sourcedir, $modSettings, $cookiename, $user_settings, $boardurl;
  225. // Define the variables we want to edit.
  226. $config_vars = array(
  227. // Cookies...
  228. array('cookiename', $txt['cookie_name'], 'file', 'text', 20),
  229. array('cookieTime', $txt['cookieTime'], 'db', 'int', 'postinput' => $txt['minutes']),
  230. array('localCookies', $txt['localCookies'], 'db', 'check', false, 'localCookies'),
  231. array('globalCookies', $txt['globalCookies'], 'db', 'check', false, 'globalCookies'),
  232. array('globalCookiesDomain', $txt['globalCookiesDomain'], 'db', 'text', false, 'globalCookiesDomain'),
  233. array('secureCookies', $txt['secureCookies'], 'db', 'check', false, 'secureCookies', 'disabled' => !isset($_SERVER['HTTPS']) || !(strtolower($_SERVER['HTTPS']) == 'on' || strtolower($_SERVER['HTTPS']) == '1')),
  234. array('httponlyCookies', $txt['httponlyCookies'], 'db', 'check', false, 'httponlyCookies'),
  235. '',
  236. // Sessions
  237. array('databaseSession_enable', $txt['databaseSession_enable'], 'db', 'check', false, 'databaseSession_enable'),
  238. array('databaseSession_loose', $txt['databaseSession_loose'], 'db', 'check', false, 'databaseSession_loose'),
  239. array('databaseSession_lifetime', $txt['databaseSession_lifetime'], 'db', 'int', false, 'databaseSession_lifetime', 'postinput' => $txt['seconds']),
  240. );
  241. addInlineJavascript('
  242. function hideGlobalCookies()
  243. {
  244. var usingLocal = $("#localCookies").prop("checked");
  245. $("#setting_globalCookies").closest("dt").toggle(!usingLocal);
  246. $("#globalCookies").closest("dd").toggle(!usingLocal);
  247. var usingGlobal = !usingLocal && $("#globalCookies").prop("checked");
  248. $("#setting_globalCookiesDomain").closest("dt").toggle(usingGlobal);
  249. $("#globalCookiesDomain").closest("dd").toggle(usingGlobal);
  250. };
  251. hideGlobalCookies();
  252. $("#localCookies, #globalCookies").click(function() {
  253. hideGlobalCookies();
  254. });', true);
  255. call_integration_hook('integrate_cookie_settings', array(&$config_vars));
  256. if ($return_config)
  257. return $config_vars;
  258. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cookie;save';
  259. $context['settings_title'] = $txt['cookies_sessions_settings'];
  260. // Saving settings?
  261. if (isset($_REQUEST['save']))
  262. {
  263. call_integration_hook('integrate_save_cookie_settings');
  264. // Local and global do not play nicely together.
  265. if (!empty($_POST['localCookies']) && empty($_POST['globalCookies']))
  266. unset ($_POST['globalCookies']);
  267. if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false)
  268. fatal_lang_error('invalid_cookie_domain', false);
  269. saveSettings($config_vars);
  270. // If the cookie name was changed, reset the cookie.
  271. if ($cookiename != $_POST['cookiename'])
  272. {
  273. $original_session_id = $context['session_id'];
  274. include_once($sourcedir . '/Subs-Auth.php');
  275. // Remove the old cookie.
  276. setLoginCookie(-3600, 0);
  277. // Set the new one.
  278. $cookiename = $_POST['cookiename'];
  279. setLoginCookie(60 * $modSettings['cookieTime'], $user_settings['id_member'], sha1($user_settings['passwd'] . $user_settings['password_salt']));
  280. redirectexit('action=admin;area=serversettings;sa=cookie;' . $context['session_var'] . '=' . $original_session_id, $context['server']['needs_login_fix']);
  281. }
  282. redirectexit('action=admin;area=serversettings;sa=cookie;' . $context['session_var'] . '=' . $context['session_id']. ';msg=' . (!empty($context['settings_message']) ? $context['settings_message'] : 'core_settings_saved'));
  283. }
  284. // Fill the config array.
  285. prepareServerSettingsContext($config_vars);
  286. }
  287. /**
  288. * Settings really associated with general security aspects.
  289. *
  290. * @param $return_config
  291. */
  292. function ModifyGeneralSecuritySettings($return_config = false)
  293. {
  294. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  295. $config_vars = array(
  296. array('check', 'make_email_viewable'),
  297. '',
  298. array('int', 'failed_login_threshold'),
  299. array('int', 'loginHistoryDays'),
  300. '',
  301. array('check', 'securityDisable'),
  302. array('check', 'securityDisable_moderate'),
  303. '',
  304. // Reactive on email, and approve on delete
  305. array('check', 'send_validation_onChange'),
  306. array('check', 'approveAccountDeletion'),
  307. '',
  308. // Password strength.
  309. array('select', 'password_strength', array($txt['setting_password_strength_low'], $txt['setting_password_strength_medium'], $txt['setting_password_strength_high'])),
  310. array('check', 'enable_password_conversion'),
  311. '',
  312. // Reporting of personal messages?
  313. array('check', 'enableReportPM'),
  314. '',
  315. array('select', 'frame_security', array('SAMEORIGIN' => $txt['setting_frame_security_SAMEORIGIN'], 'DENY' => $txt['setting_frame_security_DENY'], 'DISABLE' => $txt['setting_frame_security_DISABLE'])),
  316. );
  317. call_integration_hook('integrate_general_security_settings', array(&$config_vars));
  318. if ($return_config)
  319. return $config_vars;
  320. // Saving?
  321. if (isset($_GET['save']))
  322. {
  323. saveDBSettings($config_vars);
  324. call_integration_hook('integrate_save_general_security_settings');
  325. writeLog();
  326. redirectexit('action=admin;area=serversettings;sa=security;' . $context['session_var'] . '=' . $context['session_id']);
  327. }
  328. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;save;sa=security';
  329. $context['settings_title'] = $txt['security_settings'];
  330. prepareDBSettingContext($config_vars);
  331. }
  332. /**
  333. * Simply modifying cache functions
  334. *
  335. * @param bool $return_config = false
  336. */
  337. function ModifyCacheSettings($return_config = false)
  338. {
  339. global $context, $scripturl, $txt, $helptxt, $cache_enable;
  340. // Detect all available optimizers
  341. $detected = array();
  342. if (function_exists('eaccelerator_put'))
  343. $detected['eaccelerator'] = $txt['eAccelerator_cache'];
  344. if (function_exists('mmcache_put'))
  345. $detected['mmcache'] = $txt['mmcache_cache'];
  346. if (function_exists('apc_store'))
  347. $detected['apc'] = $txt['apc_cache'];
  348. if (function_exists('output_cache_put') || function_exists('zend_shm_cache_store'))
  349. $detected['zend'] = $txt['zend_cache'];
  350. if (function_exists('memcache_set') || function_exists('memcached_set'))
  351. $detected['memcached'] = $txt['memcached_cache'];
  352. if (function_exists('xcache_set'))
  353. $detected['xcache'] = $txt['xcache_cache'];
  354. if (function_exists('file_put_contents'))
  355. $detected['smf'] = $txt['default_cache'];
  356. // set our values to show what, if anything, we found
  357. if (empty($detected))
  358. {
  359. $txt['cache_settings_message'] = $txt['detected_no_caching'];
  360. $cache_level = array($txt['cache_off']);
  361. $detected['none'] = $txt['cache_off'];
  362. }
  363. else
  364. {
  365. $txt['cache_settings_message'] = sprintf($txt['detected_accelerators'], implode(', ', $detected));
  366. $cache_level = array($txt['cache_off'], $txt['cache_level1'], $txt['cache_level2'], $txt['cache_level3']);
  367. }
  368. // Define the variables we want to edit.
  369. $config_vars = array(
  370. // Only a few settings, but they are important
  371. array('', $txt['cache_settings_message'], '', 'desc'),
  372. array('cache_enable', $txt['cache_enable'], 'file', 'select', $cache_level, 'cache_enable'),
  373. array('cache_accelerator', $txt['cache_accelerator'], 'file', 'select', $detected),
  374. array('cache_memcached', $txt['cache_memcached'], 'file', 'text', $txt['cache_memcached'], 'cache_memcached'),
  375. array('cachedir', $txt['cachedir'], 'file', 'text', 36, 'cache_cachedir'),
  376. );
  377. // some javascript to enable / disable certain settings if the option is not selected
  378. $context['settings_post_javascript'] = '
  379. var cache_type = document.getElementById(\'cache_accelerator\');
  380. createEventListener(cache_type);
  381. cache_type.addEventListener("change", toggleCache);
  382. toggleCache();';
  383. call_integration_hook('integrate_modify_cache_settings', array(&$config_vars));
  384. if ($return_config)
  385. return $config_vars;
  386. // Saving again?
  387. if (isset($_GET['save']))
  388. {
  389. call_integration_hook('integrate_save_cache_settings');
  390. saveSettings($config_vars);
  391. // we need to save the $cache_enable to $modSettings as well
  392. updatesettings(array('cache_enable' => (int) $_POST['cache_enable']));
  393. // exit so we reload our new settings on the page
  394. redirectexit('action=admin;area=serversettings;sa=cache;' . $context['session_var'] . '=' . $context['session_id']);
  395. }
  396. loadLanguage('ManageMaintenance');
  397. createToken('admin-maint');
  398. $context['template_layers'][] = 'clean_cache_button';
  399. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cache;save';
  400. $context['settings_title'] = $txt['caching_settings'];
  401. $context['settings_message'] = $txt['caching_information'];
  402. // Prepare the template.
  403. createToken('admin-ssc');
  404. prepareServerSettingsContext($config_vars);
  405. }
  406. /**
  407. * Allows to edit load balancing settings.
  408. *
  409. * @param bool $return_config = false
  410. */
  411. function ModifyLoadBalancingSettings($return_config = false)
  412. {
  413. global $txt, $scripturl, $context, $settings, $modSettings;
  414. // Setup a warning message, but disabled by default.
  415. $disabled = true;
  416. $context['settings_message'] = $txt['loadavg_disabled_conf'];
  417. if (stripos(PHP_OS, 'win') === 0)
  418. $context['settings_message'] = $txt['loadavg_disabled_windows'];
  419. else
  420. {
  421. $modSettings['load_average'] = @file_get_contents('/proc/loadavg');
  422. if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0)
  423. $modSettings['load_average'] = (float) $matches[1];
  424. elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0)
  425. $modSettings['load_average'] = (float) $matches[1];
  426. else
  427. unset($modSettings['load_average']);
  428. if (!empty($modSettings['load_average']))
  429. {
  430. $context['settings_message'] = sprintf($txt['loadavg_warning'], $modSettings['load_average']);
  431. $disabled = false;
  432. }
  433. }
  434. // Start with a simple checkbox.
  435. $config_vars = array(
  436. array('check', 'loadavg_enable', 'disabled' => $disabled),
  437. );
  438. // Set the default values for each option.
  439. $default_values = array(
  440. 'loadavg_auto_opt' => '1.0',
  441. 'loadavg_search' => '2.5',
  442. 'loadavg_allunread' => '2.0',
  443. 'loadavg_unreadreplies' => '3.5',
  444. 'loadavg_show_posts' => '2.0',
  445. 'loadavg_userstats' => '10.0',
  446. 'loadavg_bbc' => '30.0',
  447. 'loadavg_forum' => '40.0',
  448. );
  449. // Loop through the settings.
  450. foreach ($default_values as $name => $value)
  451. {
  452. // Use the default value if the setting isn't set yet.
  453. $value = !isset($modSettings[$name]) ? $value : $modSettings[$name];
  454. $config_vars[] = array('text', $name, 'value' => $value, 'disabled' => $disabled);
  455. }
  456. call_integration_hook('integrate_loadavg_settings', array(&$config_vars));
  457. if ($return_config)
  458. return $config_vars;
  459. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=loads;save';
  460. $context['settings_title'] = $txt['load_balancing_settings'];
  461. // Saving?
  462. if (isset($_GET['save']))
  463. {
  464. // Stupidity is not allowed.
  465. foreach ($_POST as $key => $value)
  466. {
  467. if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable')
  468. continue;
  469. elseif ($key == 'loadavg_auto_opt' && $value <= 1)
  470. $_POST['loadavg_auto_opt'] = '1.0';
  471. elseif ($key == 'loadavg_forum' && $value < 10)
  472. $_POST['loadavg_forum'] = '10.0';
  473. elseif ($value < 2)
  474. $_POST[$key] = '2.0';
  475. }
  476. call_integration_hook('integrate_save_loadavg_settings');
  477. saveDBSettings($config_vars);
  478. redirectexit('action=admin;area=serversettings;sa=loads;' . $context['session_var'] . '=' . $context['session_id']);
  479. }
  480. createToken('admin-ssc');
  481. createToken('admin-dbsc');
  482. prepareDBSettingContext($config_vars);
  483. }
  484. /**
  485. * Helper function, it sets up the context for the manage server settings.
  486. * - The basic usage of the six numbered key fields are
  487. * - array (0 ,1, 2, 3, 4, 5
  488. * 0 variable name - the name of the saved variable
  489. * 1 label - the text to show on the settings page
  490. * 2 saveto - file or db, where to save the variable name - value pair
  491. * 3 type - type of data to save, int, float, text, check
  492. * 4 size - false or field size
  493. * 5 help - '' or helptxt variable name
  494. * )
  495. *
  496. * the following named keys are also permitted
  497. * 'disabled' => 'postinput' => 'preinput' =>
  498. *
  499. * @param array $config_vars
  500. */
  501. function prepareServerSettingsContext(&$config_vars)
  502. {
  503. global $context, $modSettings, $smcFunc;
  504. $context['config_vars'] = array();
  505. foreach ($config_vars as $identifier => $config_var)
  506. {
  507. if (!is_array($config_var) || !isset($config_var[1]))
  508. $context['config_vars'][] = $config_var;
  509. else
  510. {
  511. $varname = $config_var[0];
  512. global $$varname;
  513. // Set the subtext in case it's part of the label.
  514. // @todo Temporary. Preventing divs inside label tags.
  515. $divPos = strpos($config_var[1], '<div');
  516. $subtext = '';
  517. if ($divPos !== false)
  518. {
  519. $subtext = preg_replace('~</?div[^>]*>~', '', substr($config_var[1], $divPos));
  520. $config_var[1] = substr($config_var[1], 0, $divPos);
  521. }
  522. $context['config_vars'][$config_var[0]] = array(
  523. 'label' => $config_var[1],
  524. 'help' => isset($config_var[5]) ? $config_var[5] : '',
  525. 'type' => $config_var[3],
  526. 'size' => empty($config_var[4]) ? 0 : $config_var[4],
  527. 'data' => isset($config_var[4]) && is_array($config_var[4]) && $config_var[3] != 'select' ? $config_var[4] : array(),
  528. 'name' => $config_var[0],
  529. 'value' => $config_var[2] == 'file' ? $smcFunc['htmlspecialchars']($$varname) : (isset($modSettings[$config_var[0]]) ? $smcFunc['htmlspecialchars']($modSettings[$config_var[0]]) : (in_array($config_var[3], array('int', 'float')) ? 0 : '')),
  530. 'disabled' => !empty($context['settings_not_writable']) || !empty($config_var['disabled']),
  531. 'invalid' => false,
  532. 'subtext' => !empty($config_var['subtext']) ? $config_var['subtext'] : $subtext,
  533. 'javascript' => '',
  534. 'preinput' => !empty($config_var['preinput']) ? $config_var['preinput'] : '',
  535. 'postinput' => !empty($config_var['postinput']) ? $config_var['postinput'] : '',
  536. );
  537. // If this is a select box handle any data.
  538. if (!empty($config_var[4]) && is_array($config_var[4]))
  539. {
  540. // If it's associative
  541. $config_values = array_values($config_var[4]);
  542. if (isset($config_values[0]) && is_array($config_values[0]))
  543. $context['config_vars'][$config_var[0]]['data'] = $config_var[4];
  544. else
  545. {
  546. foreach ($config_var[4] as $key => $item)
  547. $context['config_vars'][$config_var[0]]['data'][] = array($key, $item);
  548. }
  549. }
  550. }
  551. }
  552. // Two tokens because saving these settings requires both saveSettings and saveDBSettings
  553. createToken('admin-ssc');
  554. createToken('admin-dbsc');
  555. }
  556. /**
  557. * Helper function, it sets up the context for database settings.
  558. * @todo see rev. 10406 from 2.1-requests
  559. *
  560. * @param array $config_vars
  561. */
  562. function prepareDBSettingContext(&$config_vars)
  563. {
  564. global $txt, $helptxt, $context, $modSettings, $sourcedir, $smcFunc;
  565. loadLanguage('Help');
  566. $context['config_vars'] = array();
  567. $inlinePermissions = array();
  568. $bbcChoice = array();
  569. $board_list = false;
  570. foreach ($config_vars as $config_var)
  571. {
  572. // HR?
  573. if (!is_array($config_var))
  574. $context['config_vars'][] = $config_var;
  575. else
  576. {
  577. // If it has no name it doesn't have any purpose!
  578. if (empty($config_var[1]))
  579. continue;
  580. // Special case for inline permissions
  581. if ($config_var[0] == 'permissions' && allowedTo('manage_permissions'))
  582. $inlinePermissions[] = $config_var[1];
  583. elseif ($config_var[0] == 'permissions')
  584. continue;
  585. if ($config_var[0] == 'boards')
  586. $board_list = true;
  587. // Are we showing the BBC selection box?
  588. if ($config_var[0] == 'bbc')
  589. $bbcChoice[] = $config_var[1];
  590. // We need to do some parsing of the value before we pass it in.
  591. if (isset($modSettings[$config_var[1]]))
  592. {
  593. switch ($config_var[0])
  594. {
  595. case 'select':
  596. $value = $modSettings[$config_var[1]];
  597. break;
  598. case 'boards':
  599. $value = explode(',', $modSettings[$config_var[1]]);
  600. break;
  601. default:
  602. $value = $smcFunc['htmlspecialchars']($modSettings[$config_var[1]]);
  603. }
  604. }
  605. else
  606. {
  607. // Darn, it's empty. What type is expected?
  608. switch ($config_var[0])
  609. {
  610. case 'int':
  611. case 'float':
  612. $value = 0;
  613. break;
  614. case 'select':
  615. $value = !empty($config_var['multiple']) ? serialize(array()) : '';
  616. break;
  617. case 'boards':
  618. $value = array();
  619. break;
  620. default:
  621. $value = '';
  622. }
  623. }
  624. $context['config_vars'][$config_var[1]] = array(
  625. 'label' => isset($config_var['text_label']) ? $config_var['text_label'] : (isset($txt[$config_var[1]]) ? $txt[$config_var[1]] : (isset($config_var[3]) && !is_array($config_var[3]) ? $config_var[3] : '')),
  626. 'help' => isset($helptxt[$config_var[1]]) ? $config_var[1] : '',
  627. 'type' => $config_var[0],
  628. 'size' => !empty($config_var[2]) && !is_array($config_var[2]) ? $config_var[2] : (in_array($config_var[0], array('int', 'float')) ? 6 : 0),
  629. 'data' => array(),
  630. 'name' => $config_var[1],
  631. 'value' => $value,
  632. 'disabled' => false,
  633. 'invalid' => !empty($config_var['invalid']),
  634. 'javascript' => '',
  635. 'var_message' => !empty($config_var['message']) && isset($txt[$config_var['message']]) ? $txt[$config_var['message']] : '',
  636. 'preinput' => isset($config_var['preinput']) ? $config_var['preinput'] : '',
  637. 'postinput' => isset($config_var['postinput']) ? $config_var['postinput'] : '',
  638. );
  639. // If this is a select box handle any data.
  640. if (!empty($config_var[2]) && is_array($config_var[2]))
  641. {
  642. // If we allow multiple selections, we need to adjust a few things.
  643. if ($config_var[0] == 'select' && !empty($config_var['multiple']))
  644. {
  645. $context['config_vars'][$config_var[1]]['name'] .= '[]';
  646. $context['config_vars'][$config_var[1]]['value'] = unserialize($context['config_vars'][$config_var[1]]['value']);
  647. }
  648. // If it's associative
  649. if (isset($config_var[2][0]) && is_array($config_var[2][0]))
  650. $context['config_vars'][$config_var[1]]['data'] = $config_var[2];
  651. else
  652. {
  653. foreach ($config_var[2] as $key => $item)
  654. $context['config_vars'][$config_var[1]]['data'][] = array($key, $item);
  655. }
  656. }
  657. // Finally allow overrides - and some final cleanups.
  658. foreach ($config_var as $k => $v)
  659. {
  660. if (!is_numeric($k))
  661. {
  662. if (substr($k, 0, 2) == 'on')
  663. $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"';
  664. else
  665. $context['config_vars'][$config_var[1]][$k] = $v;
  666. }
  667. // See if there are any other labels that might fit?
  668. if (isset($txt['setting_' . $config_var[1]]))
  669. $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]];
  670. elseif (isset($txt['groups_' . $config_var[1]]))
  671. $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]];
  672. }
  673. // Set the subtext in case it's part of the label.
  674. // @todo Temporary. Preventing divs inside label tags.
  675. $divPos = strpos($context['config_vars'][$config_var[1]]['label'], '<div');
  676. if ($divPos !== false)
  677. {
  678. $context['config_vars'][$config_var[1]]['subtext'] = preg_replace('~</?div[^>]*>~', '', substr($context['config_vars'][$config_var[1]]['label'], $divPos));
  679. $context['config_vars'][$config_var[1]]['label'] = substr($context['config_vars'][$config_var[1]]['label'], 0, $divPos);
  680. }
  681. }
  682. }
  683. // If we have inline permissions we need to prep them.
  684. if (!empty($inlinePermissions) && allowedTo('manage_permissions'))
  685. {
  686. require_once($sourcedir . '/ManagePermissions.php');
  687. init_inline_permissions($inlinePermissions, isset($context['permissions_excluded']) ? $context['permissions_excluded'] : array());
  688. }
  689. if ($board_list)
  690. {
  691. require_once($sourcedir . '/Subs-MessageIndex.php');
  692. $context['board_list'] = getBoardList();
  693. }
  694. // What about any BBC selection boxes?
  695. if (!empty($bbcChoice))
  696. {
  697. // What are the options, eh?
  698. $temp = parse_bbc(false);
  699. $bbcTags = array();
  700. foreach ($temp as $tag)
  701. $bbcTags[] = $tag['tag'];
  702. $bbcTags = array_unique($bbcTags);
  703. $totalTags = count($bbcTags);
  704. // The number of columns we want to show the BBC tags in.
  705. $numColumns = isset($context['num_bbc_columns']) ? $context['num_bbc_columns'] : 3;
  706. // Start working out the context stuff.
  707. $context['bbc_columns'] = array();
  708. $tagsPerColumn = ceil($totalTags / $numColumns);
  709. $col = 0; $i = 0;
  710. foreach ($bbcTags as $tag)
  711. {
  712. if ($i % $tagsPerColumn == 0 && $i != 0)
  713. $col++;
  714. $context['bbc_columns'][$col][] = array(
  715. 'tag' => $tag,
  716. // @todo 'tag_' . ?
  717. 'show_help' => isset($helptxt[$tag]),
  718. );
  719. $i++;
  720. }
  721. // Now put whatever BBC options we may have into context too!
  722. $context['bbc_sections'] = array();
  723. foreach ($bbcChoice as $bbc)
  724. {
  725. $context['bbc_sections'][$bbc] = array(
  726. 'title' => isset($txt['bbc_title_' . $bbc]) ? $txt['bbc_title_' . $bbc] : $txt['bbcTagsToUse_select'],
  727. 'disabled' => empty($modSettings['bbc_disabled_' . $bbc]) ? array() : $modSettings['bbc_disabled_' . $bbc],
  728. 'all_selected' => empty($modSettings['bbc_disabled_' . $bbc]),
  729. );
  730. }
  731. }
  732. call_integration_hook('integrate_prepare_db_settings', array(&$config_vars));
  733. createToken('admin-dbsc');
  734. }
  735. /**
  736. * Helper function. Saves settings by putting them in Settings.php or saving them in the settings table.
  737. *
  738. * - Saves those settings set from ?action=admin;area=serversettings.
  739. * - Requires the admin_forum permission.
  740. * - Contains arrays of the types of data to save into Settings.php.
  741. *
  742. * @param $config_vars
  743. */
  744. function saveSettings(&$config_vars)
  745. {
  746. global $boarddir, $sc, $cookiename, $modSettings, $user_settings;
  747. global $sourcedir, $context, $cachedir;
  748. validateToken('admin-ssc');
  749. // Fix the darn stupid cookiename! (more may not be allowed, but these for sure!)
  750. if (isset($_POST['cookiename']))
  751. $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']);
  752. // Fix the forum's URL if necessary.
  753. if (isset($_POST['boardurl']))
  754. {
  755. if (substr($_POST['boardurl'], -10) == '/index.php')
  756. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10);
  757. elseif (substr($_POST['boardurl'], -1) == '/')
  758. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1);
  759. if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://')
  760. $_POST['boardurl'] = 'http://' . $_POST['boardurl'];
  761. }
  762. // Any passwords?
  763. $config_passwords = array(
  764. 'db_passwd',
  765. 'ssi_db_passwd',
  766. );
  767. // All the strings to write.
  768. $config_strs = array(
  769. 'mtitle', 'mmessage',
  770. 'language', 'mbname', 'boardurl',
  771. 'cookiename',
  772. 'webmaster_email',
  773. 'db_name', 'db_user', 'db_server', 'db_prefix', 'ssi_db_user',
  774. 'boarddir', 'sourcedir',
  775. 'cachedir', 'cache_accelerator', 'cache_memcached',
  776. );
  777. // All the numeric variables.
  778. $config_ints = array(
  779. 'cache_enable',
  780. );
  781. // All the checkboxes.
  782. $config_bools = array(
  783. 'db_persist', 'db_error_send',
  784. 'maintenance',
  785. );
  786. // Now sort everything into a big array, and figure out arrays and etc.
  787. $new_settings = array();
  788. foreach ($config_passwords as $config_var)
  789. {
  790. if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1])
  791. $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\'';
  792. }
  793. foreach ($config_strs as $config_var)
  794. {
  795. if (isset($_POST[$config_var]))
  796. $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var], '\'\\') . '\'';
  797. }
  798. foreach ($config_ints as $config_var)
  799. {
  800. if (isset($_POST[$config_var]))
  801. $new_settings[$config_var] = (int) $_POST[$config_var];
  802. }
  803. foreach ($config_bools as $key)
  804. {
  805. if (!empty($_POST[$key]))
  806. $new_settings[$key] = '1';
  807. else
  808. $new_settings[$key] = '0';
  809. }
  810. // Save the relevant settings in the Settings.php file.
  811. require_once($sourcedir . '/Subs-Admin.php');
  812. updateSettingsFile($new_settings);
  813. // Now loop through the remaining (database-based) settings.
  814. $new_settings = array();
  815. foreach ($config_vars as $config_var)
  816. {
  817. // We just saved the file-based settings, so skip their definitions.
  818. if (!is_array($config_var) || $config_var[2] == 'file')
  819. continue;
  820. // Rewrite the definition a bit.
  821. $new_settings[] = array($config_var[3], $config_var[0]);
  822. }
  823. // Save the new database-based settings, if any.
  824. if (!empty($new_settings))
  825. saveDBSettings($new_settings);
  826. }
  827. /**
  828. * Helper function for saving database settings.
  829. * @todo see rev. 10406 from 2.1-requests
  830. *
  831. * @param array $config_vars
  832. */
  833. function saveDBSettings(&$config_vars)
  834. {
  835. global $sourcedir, $context, $smcFunc;
  836. static $board_list = null;
  837. validateToken('admin-dbsc');
  838. $inlinePermissions = array();
  839. foreach ($config_vars as $var)
  840. {
  841. if (!isset($var[1]) || (!isset($_POST[$var[1]]) && $var[0] != 'check' && $var[0] != 'permissions' && ($var[0] != 'bbc' || !isset($_POST[$var[1] . '_enabledTags']))))
  842. continue;
  843. // Checkboxes!
  844. elseif ($var[0] == 'check')
  845. $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0';
  846. // Select boxes!
  847. elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2])))
  848. $setArray[$var[1]] = $_POST[$var[1]];
  849. elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array())
  850. {
  851. // For security purposes we validate this line by line.
  852. $options = array();
  853. foreach ($_POST[$var[1]] as $invar)
  854. if (in_array($invar, array_keys($var[2])))
  855. $options[] = $invar;
  856. $setArray[$var[1]] = serialize($options);
  857. }
  858. // List of boards!
  859. elseif ($var[0] == 'boards')
  860. {
  861. // We just need a simple list of valid boards, nothing more.
  862. if ($board_list === null)
  863. {
  864. $board_list = array();
  865. $request = $smcFunc['db_query']('', '
  866. SELECT id_board
  867. FROM {db_prefix}boards');
  868. while ($row = $smcFunc['db_fetch_row']($request))
  869. $board_list[$row[0]] = true;
  870. $smcFunc['db_free_result']($request);
  871. }
  872. $options = array();
  873. foreach ($_POST[$var[1]] as $invar => $dummy)
  874. if (isset($board_list[$invar]))
  875. $options[] = $invar;
  876. $setArray[$var[1]] = implode(',', $options);
  877. }
  878. // Integers!
  879. elseif ($var[0] == 'int')
  880. $setArray[$var[1]] = (int) $_POST[$var[1]];
  881. // Floating point!
  882. elseif ($var[0] == 'float')
  883. $setArray[$var[1]] = (float) $_POST[$var[1]];
  884. // Text!
  885. elseif ($var[0] == 'text' || $var[0] == 'large_text')
  886. $setArray[$var[1]] = $_POST[$var[1]];
  887. // Passwords!
  888. elseif ($var[0] == 'password')
  889. {
  890. if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1])
  891. $setArray[$var[1]] = $_POST[$var[1]][0];
  892. }
  893. // BBC.
  894. elseif ($var[0] == 'bbc')
  895. {
  896. $bbcTags = array();
  897. foreach (parse_bbc(false) as $tag)
  898. $bbcTags[] = $tag['tag'];
  899. if (!isset($_POST[$var[1] . '_enabledTags']))
  900. $_POST[$var[1] . '_enabledTags'] = array();
  901. elseif (!is_array($_POST[$var[1] . '_enabledTags']))
  902. $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']);
  903. $setArray[$var[1]] = implode(',', array_diff($bbcTags, $_POST[$var[1] . '_enabledTags']));
  904. }
  905. // Permissions?
  906. elseif ($var[0] == 'permissions')
  907. $inlinePermissions[] = $var[1];
  908. }
  909. if (!empty($setArray))
  910. updateSettings($setArray);
  911. // If we have inline permissions we need to save them.
  912. if (!empty($inlinePermissions) && allowedTo('manage_permissions'))
  913. {
  914. require_once($sourcedir . '/ManagePermissions.php');
  915. save_inline_permissions($inlinePermissions);
  916. }
  917. }
  918. /**
  919. * Allows us to see the servers php settings
  920. *
  921. * - loads the settings into an array for display in a template
  922. * - drops cookie values just in case
  923. */
  924. function ShowPHPinfoSettings()
  925. {
  926. global $context, $txt;
  927. $info_lines = array();
  928. $category = $txt['phpinfo_settings'];
  929. // get the data
  930. ob_start();
  931. phpinfo();
  932. // We only want it for its body, pigs that we are
  933. $info_lines = preg_replace('~^.*<body>(.*)</body>.*$~', '$1', ob_get_contents());
  934. $info_lines = explode("\n", strip_tags($info_lines, "<tr><td><h2>"));
  935. ob_end_clean();
  936. // remove things that could be considered sensitive
  937. $remove = '_COOKIE|Cookie|_GET|_REQUEST|REQUEST_URI|QUERY_STRING|REQUEST_URL|HTTP_REFERER';
  938. // put all of it into an array
  939. foreach ($info_lines as $line)
  940. {
  941. if (preg_match('~(' . $remove . ')~', $line))
  942. continue;
  943. // new category?
  944. if (strpos($line, '<h2>') !== false)
  945. $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category;
  946. // load it as setting => value or the old setting local master
  947. if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val))
  948. $pinfo[$category][$val[1]] = $val[2];
  949. elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val))
  950. $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]);
  951. }
  952. // load it in to context and display it
  953. $context['pinfo'] = $pinfo;
  954. $context['page_title'] = $txt['admin_server_settings'];
  955. $context['sub_template'] = 'php_info';
  956. return;
  957. }
  958. ?>