ManageServer.php 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117
  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_server', $txt['database_server'], 'file', 'text'),
  188. array('db_user', $txt['database_user'], 'file', 'text'),
  189. array('db_passwd', $txt['database_password'], 'file', 'password'),
  190. array('db_name', $txt['database_name'], 'file', 'text'),
  191. array('db_prefix', $txt['database_prefix'], 'file', 'text'),
  192. array('db_persist', $txt['db_persist'], 'file', 'check', null, 'db_persist'),
  193. array('db_error_send', $txt['db_error_send'], 'file', 'check'),
  194. array('ssi_db_user', $txt['ssi_db_user'], 'file', 'text', null, 'ssi_db_user'),
  195. array('ssi_db_passwd', $txt['ssi_db_passwd'], 'file', 'password'),
  196. '',
  197. array('autoFixDatabase', $txt['autoFixDatabase'], 'db', 'check', false, 'autoFixDatabase'),
  198. array('autoOptMaxOnline', $txt['autoOptMaxOnline'], 'subtext' => $txt['zero_for_no_limit'], 'db', 'int'),
  199. '',
  200. array('boardurl', $txt['admin_url'], 'file', 'text', 36),
  201. array('boarddir', $txt['boarddir'], 'file', 'text', 36),
  202. array('sourcedir', $txt['sourcesdir'], 'file', 'text', 36),
  203. array('cachedir', $txt['cachedir'], 'file', 'text', 36),
  204. );
  205. call_integration_hook('integrate_database_settings', array(&$config_vars));
  206. if ($return_config)
  207. return $config_vars;
  208. // Setup the template stuff.
  209. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=database;save';
  210. $context['settings_title'] = $txt['database_paths_settings'];
  211. $context['save_disabled'] = $context['settings_not_writable'];
  212. // Saving settings?
  213. if (isset($_REQUEST['save']))
  214. {
  215. call_integration_hook('integrate_save_database_settings');
  216. saveSettings($config_vars);
  217. redirectexit('action=admin;area=serversettings;sa=database;' . $context['session_var'] . '=' . $context['session_id'] . ';msg=' . (!empty($context['settings_message']) ? $context['settings_message'] : 'core_settings_saved'));
  218. }
  219. // Fill the config array.
  220. prepareServerSettingsContext($config_vars);
  221. }
  222. /**
  223. * This function handles cookies settings modifications.
  224. *
  225. * @param bool $return_config = false
  226. */
  227. function ModifyCookieSettings($return_config = false)
  228. {
  229. global $context, $scripturl, $txt, $sourcedir, $modSettings, $cookiename, $user_settings, $boardurl;
  230. // Define the variables we want to edit.
  231. $config_vars = array(
  232. // Cookies...
  233. array('cookiename', $txt['cookie_name'], 'file', 'text', 20),
  234. array('cookieTime', $txt['cookieTime'], 'db', 'int', 'postinput' => $txt['minutes']),
  235. array('localCookies', $txt['localCookies'], 'db', 'check', false, 'localCookies'),
  236. array('globalCookies', $txt['globalCookies'], 'db', 'check', false, 'globalCookies'),
  237. array('globalCookiesDomain', $txt['globalCookiesDomain'], 'db', 'text', false, 'globalCookiesDomain'),
  238. array('secureCookies', $txt['secureCookies'], 'db', 'check', false, 'secureCookies', 'disabled' => !isset($_SERVER['HTTPS']) || !(strtolower($_SERVER['HTTPS']) == 'on' || strtolower($_SERVER['HTTPS']) == '1')),
  239. array('httponlyCookies', $txt['httponlyCookies'], 'db', 'check', false, 'httponlyCookies'),
  240. '',
  241. // Sessions
  242. array('databaseSession_enable', $txt['databaseSession_enable'], 'db', 'check', false, 'databaseSession_enable'),
  243. array('databaseSession_loose', $txt['databaseSession_loose'], 'db', 'check', false, 'databaseSession_loose'),
  244. array('databaseSession_lifetime', $txt['databaseSession_lifetime'], 'db', 'int', false, 'databaseSession_lifetime', 'postinput' => $txt['seconds']),
  245. );
  246. addInlineJavascript('
  247. function hideGlobalCookies()
  248. {
  249. var usingLocal = $("#localCookies").prop("checked");
  250. $("#setting_globalCookies").closest("dt").toggle(!usingLocal);
  251. $("#globalCookies").closest("dd").toggle(!usingLocal);
  252. var usingGlobal = !usingLocal && $("#globalCookies").prop("checked");
  253. $("#setting_globalCookiesDomain").closest("dt").toggle(usingGlobal);
  254. $("#globalCookiesDomain").closest("dd").toggle(usingGlobal);
  255. };
  256. hideGlobalCookies();
  257. $("#localCookies, #globalCookies").click(function() {
  258. hideGlobalCookies();
  259. });', true);
  260. call_integration_hook('integrate_cookie_settings', array(&$config_vars));
  261. if ($return_config)
  262. return $config_vars;
  263. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cookie;save';
  264. $context['settings_title'] = $txt['cookies_sessions_settings'];
  265. // Saving settings?
  266. if (isset($_REQUEST['save']))
  267. {
  268. call_integration_hook('integrate_save_cookie_settings');
  269. // Local and global do not play nicely together.
  270. if (!empty($_POST['localCookies']) && empty($_POST['globalCookies']))
  271. unset ($_POST['globalCookies']);
  272. if (!empty($_POST['globalCookiesDomain']) && strpos($boardurl, $_POST['globalCookiesDomain']) === false)
  273. fatal_lang_error('invalid_cookie_domain', false);
  274. saveSettings($config_vars);
  275. // If the cookie name was changed, reset the cookie.
  276. if ($cookiename != $_POST['cookiename'])
  277. {
  278. $original_session_id = $context['session_id'];
  279. include_once($sourcedir . '/Subs-Auth.php');
  280. // Remove the old cookie.
  281. setLoginCookie(-3600, 0);
  282. // Set the new one.
  283. $cookiename = $_POST['cookiename'];
  284. setLoginCookie(60 * $modSettings['cookieTime'], $user_settings['id_member'], sha1($user_settings['passwd'] . $user_settings['password_salt']));
  285. redirectexit('action=admin;area=serversettings;sa=cookie;' . $context['session_var'] . '=' . $original_session_id, $context['server']['needs_login_fix']);
  286. }
  287. redirectexit('action=admin;area=serversettings;sa=cookie;' . $context['session_var'] . '=' . $context['session_id']. ';msg=' . (!empty($context['settings_message']) ? $context['settings_message'] : 'core_settings_saved'));
  288. }
  289. // Fill the config array.
  290. prepareServerSettingsContext($config_vars);
  291. }
  292. /**
  293. * Settings really associated with general security aspects.
  294. *
  295. * @param $return_config
  296. */
  297. function ModifyGeneralSecuritySettings($return_config = false)
  298. {
  299. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  300. $config_vars = array(
  301. array('check', 'guest_hideContacts'),
  302. array('check', 'make_email_viewable'),
  303. '',
  304. array('int', 'failed_login_threshold'),
  305. array('int', 'loginHistoryDays'),
  306. '',
  307. array('check', 'securityDisable'),
  308. array('check', 'securityDisable_moderate'),
  309. '',
  310. // Reactive on email, and approve on delete
  311. array('check', 'send_validation_onChange'),
  312. array('check', 'approveAccountDeletion'),
  313. '',
  314. // Password strength.
  315. array('select', 'password_strength', array($txt['setting_password_strength_low'], $txt['setting_password_strength_medium'], $txt['setting_password_strength_high'])),
  316. array('check', 'enable_password_conversion'),
  317. '',
  318. // Reporting of personal messages?
  319. array('check', 'enableReportPM'),
  320. '',
  321. array('select', 'frame_security', array('SAMEORIGIN' => $txt['setting_frame_security_SAMEORIGIN'], 'DENY' => $txt['setting_frame_security_DENY'], 'DISABLE' => $txt['setting_frame_security_DISABLE'])),
  322. );
  323. call_integration_hook('integrate_general_security_settings', array(&$config_vars));
  324. if ($return_config)
  325. return $config_vars;
  326. // Saving?
  327. if (isset($_GET['save']))
  328. {
  329. saveDBSettings($config_vars);
  330. call_integration_hook('integrate_save_general_security_settings');
  331. writeLog();
  332. redirectexit('action=admin;area=serversettings;sa=security;' . $context['session_var'] . '=' . $context['session_id']);
  333. }
  334. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;save;sa=security';
  335. $context['settings_title'] = $txt['security_settings'];
  336. prepareDBSettingContext($config_vars);
  337. }
  338. /**
  339. * Simply modifying cache functions
  340. *
  341. * @param bool $return_config = false
  342. */
  343. function ModifyCacheSettings($return_config = false)
  344. {
  345. global $context, $scripturl, $txt, $helptxt, $cache_enable;
  346. // Detect all available optimizers
  347. $detected = array();
  348. if (function_exists('eaccelerator_put'))
  349. $detected['eaccelerator'] = $txt['eAccelerator_cache'];
  350. if (function_exists('mmcache_put'))
  351. $detected['mmcache'] = $txt['mmcache_cache'];
  352. if (function_exists('apc_store'))
  353. $detected['apc'] = $txt['apc_cache'];
  354. if (function_exists('output_cache_put') || function_exists('zend_shm_cache_store'))
  355. $detected['zend'] = $txt['zend_cache'];
  356. if (function_exists('memcache_set') || function_exists('memcached_set'))
  357. $detected['memcached'] = $txt['memcached_cache'];
  358. if (function_exists('xcache_set'))
  359. $detected['xcache'] = $txt['xcache_cache'];
  360. if (function_exists('file_put_contents'))
  361. $detected['smf'] = $txt['default_cache'];
  362. // set our values to show what, if anything, we found
  363. if (empty($detected))
  364. {
  365. $txt['cache_settings_message'] = $txt['detected_no_caching'];
  366. $cache_level = array($txt['cache_off']);
  367. $detected['none'] = $txt['cache_off'];
  368. }
  369. else
  370. {
  371. $txt['cache_settings_message'] = sprintf($txt['detected_accelerators'], implode(', ', $detected));
  372. $cache_level = array($txt['cache_off'], $txt['cache_level1'], $txt['cache_level2'], $txt['cache_level3']);
  373. }
  374. // Define the variables we want to edit.
  375. $config_vars = array(
  376. // Only a few settings, but they are important
  377. array('', $txt['cache_settings_message'], '', 'desc'),
  378. array('cache_enable', $txt['cache_enable'], 'file', 'select', $cache_level, 'cache_enable'),
  379. array('cache_accelerator', $txt['cache_accelerator'], 'file', 'select', $detected),
  380. array('cache_memcached', $txt['cache_memcached'], 'file', 'text', $txt['cache_memcached'], 'cache_memcached'),
  381. array('cachedir', $txt['cachedir'], 'file', 'text', 36, 'cache_cachedir'),
  382. );
  383. // some javascript to enable / disable certain settings if the option is not selected
  384. $context['settings_post_javascript'] = '
  385. var cache_type = document.getElementById(\'cache_accelerator\');
  386. createEventListener(cache_type);
  387. cache_type.addEventListener("change", toggleCache);
  388. toggleCache();';
  389. call_integration_hook('integrate_modify_cache_settings', array(&$config_vars));
  390. if ($return_config)
  391. return $config_vars;
  392. // Saving again?
  393. if (isset($_GET['save']))
  394. {
  395. call_integration_hook('integrate_save_cache_settings');
  396. saveSettings($config_vars);
  397. // we need to save the $cache_enable to $modSettings as well
  398. updatesettings(array('cache_enable' => (int) $_POST['cache_enable']));
  399. // exit so we reload our new settings on the page
  400. redirectexit('action=admin;area=serversettings;sa=cache;' . $context['session_var'] . '=' . $context['session_id']);
  401. }
  402. loadLanguage('ManageMaintenance');
  403. createToken('admin-maint');
  404. $context['template_layers'][] = 'clean_cache_button';
  405. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=cache;save';
  406. $context['settings_title'] = $txt['caching_settings'];
  407. $context['settings_message'] = $txt['caching_information'];
  408. // Prepare the template.
  409. createToken('admin-ssc');
  410. prepareServerSettingsContext($config_vars);
  411. }
  412. /**
  413. * Allows to edit load balancing settings.
  414. *
  415. * @param bool $return_config = false
  416. */
  417. function ModifyLoadBalancingSettings($return_config = false)
  418. {
  419. global $txt, $scripturl, $context, $settings, $modSettings;
  420. // Setup a warning message, but disabled by default.
  421. $disabled = true;
  422. $context['settings_message'] = $txt['loadavg_disabled_conf'];
  423. if (stripos(PHP_OS, 'win') === 0)
  424. $context['settings_message'] = $txt['loadavg_disabled_windows'];
  425. else
  426. {
  427. $modSettings['load_average'] = @file_get_contents('/proc/loadavg');
  428. if (!empty($modSettings['load_average']) && preg_match('~^([^ ]+?) ([^ ]+?) ([^ ]+)~', $modSettings['load_average'], $matches) !== 0)
  429. $modSettings['load_average'] = (float) $matches[1];
  430. elseif (($modSettings['load_average'] = @`uptime`) !== null && preg_match('~load averages?: (\d+\.\d+), (\d+\.\d+), (\d+\.\d+)~i', $modSettings['load_average'], $matches) !== 0)
  431. $modSettings['load_average'] = (float) $matches[1];
  432. else
  433. unset($modSettings['load_average']);
  434. if (!empty($modSettings['load_average']))
  435. {
  436. $context['settings_message'] = sprintf($txt['loadavg_warning'], $modSettings['load_average']);
  437. $disabled = false;
  438. }
  439. }
  440. // Start with a simple checkbox.
  441. $config_vars = array(
  442. array('check', 'loadavg_enable', 'disabled' => $disabled),
  443. );
  444. // Set the default values for each option.
  445. $default_values = array(
  446. 'loadavg_auto_opt' => '1.0',
  447. 'loadavg_search' => '2.5',
  448. 'loadavg_allunread' => '2.0',
  449. 'loadavg_unreadreplies' => '3.5',
  450. 'loadavg_show_posts' => '2.0',
  451. 'loadavg_userstats' => '10.0',
  452. 'loadavg_bbc' => '30.0',
  453. 'loadavg_forum' => '40.0',
  454. );
  455. // Loop through the settings.
  456. foreach ($default_values as $name => $value)
  457. {
  458. // Use the default value if the setting isn't set yet.
  459. $value = !isset($modSettings[$name]) ? $value : $modSettings[$name];
  460. $config_vars[] = array('text', $name, 'value' => $value, 'disabled' => $disabled);
  461. }
  462. call_integration_hook('integrate_loadavg_settings', array(&$config_vars));
  463. if ($return_config)
  464. return $config_vars;
  465. $context['post_url'] = $scripturl . '?action=admin;area=serversettings;sa=loads;save';
  466. $context['settings_title'] = $txt['load_balancing_settings'];
  467. // Saving?
  468. if (isset($_GET['save']))
  469. {
  470. // Stupidity is not allowed.
  471. foreach ($_POST as $key => $value)
  472. {
  473. if (strpos($key, 'loadavg') === 0 || $key === 'loadavg_enable')
  474. continue;
  475. elseif ($key == 'loadavg_auto_opt' && $value <= 1)
  476. $_POST['loadavg_auto_opt'] = '1.0';
  477. elseif ($key == 'loadavg_forum' && $value < 10)
  478. $_POST['loadavg_forum'] = '10.0';
  479. elseif ($value < 2)
  480. $_POST[$key] = '2.0';
  481. }
  482. call_integration_hook('integrate_save_loadavg_settings');
  483. saveDBSettings($config_vars);
  484. redirectexit('action=admin;area=serversettings;sa=loads;' . $context['session_var'] . '=' . $context['session_id']);
  485. }
  486. createToken('admin-ssc');
  487. createToken('admin-dbsc');
  488. prepareDBSettingContext($config_vars);
  489. }
  490. /**
  491. * Helper function, it sets up the context for the manage server settings.
  492. * - The basic usage of the six numbered key fields are
  493. * - array (0 ,1, 2, 3, 4, 5
  494. * 0 variable name - the name of the saved variable
  495. * 1 label - the text to show on the settings page
  496. * 2 saveto - file or db, where to save the variable name - value pair
  497. * 3 type - type of data to save, int, float, text, check
  498. * 4 size - false or field size
  499. * 5 help - '' or helptxt variable name
  500. * )
  501. *
  502. * the following named keys are also permitted
  503. * 'disabled' => 'postinput' => 'preinput' =>
  504. *
  505. * @param array $config_vars
  506. */
  507. function prepareServerSettingsContext(&$config_vars)
  508. {
  509. global $context, $modSettings, $smcFunc;
  510. $context['config_vars'] = array();
  511. foreach ($config_vars as $identifier => $config_var)
  512. {
  513. if (!is_array($config_var) || !isset($config_var[1]))
  514. $context['config_vars'][] = $config_var;
  515. else
  516. {
  517. $varname = $config_var[0];
  518. global $$varname;
  519. // Set the subtext in case it's part of the label.
  520. // @todo Temporary. Preventing divs inside label tags.
  521. $divPos = strpos($config_var[1], '<div');
  522. $subtext = '';
  523. if ($divPos !== false)
  524. {
  525. $subtext = preg_replace('~</?div[^>]*>~', '', substr($config_var[1], $divPos));
  526. $config_var[1] = substr($config_var[1], 0, $divPos);
  527. }
  528. $context['config_vars'][$config_var[0]] = array(
  529. 'label' => $config_var[1],
  530. 'help' => isset($config_var[5]) ? $config_var[5] : '',
  531. 'type' => $config_var[3],
  532. 'size' => empty($config_var[4]) ? 0 : $config_var[4],
  533. 'data' => isset($config_var[4]) && is_array($config_var[4]) && $config_var[3] != 'select' ? $config_var[4] : array(),
  534. 'name' => $config_var[0],
  535. '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 : '')),
  536. 'disabled' => !empty($context['settings_not_writable']) || !empty($config_var['disabled']),
  537. 'invalid' => false,
  538. 'subtext' => !empty($config_var['subtext']) ? $config_var['subtext'] : $subtext,
  539. 'javascript' => '',
  540. 'preinput' => !empty($config_var['preinput']) ? $config_var['preinput'] : '',
  541. 'postinput' => !empty($config_var['postinput']) ? $config_var['postinput'] : '',
  542. );
  543. // If this is a select box handle any data.
  544. if (!empty($config_var[4]) && is_array($config_var[4]))
  545. {
  546. // If it's associative
  547. $config_values = array_values($config_var[4]);
  548. if (isset($config_values[0]) && is_array($config_values[0]))
  549. $context['config_vars'][$config_var[0]]['data'] = $config_var[4];
  550. else
  551. {
  552. foreach ($config_var[4] as $key => $item)
  553. $context['config_vars'][$config_var[0]]['data'][] = array($key, $item);
  554. }
  555. }
  556. }
  557. }
  558. // Two tokens because saving these settings requires both saveSettings and saveDBSettings
  559. createToken('admin-ssc');
  560. createToken('admin-dbsc');
  561. }
  562. /**
  563. * Helper function, it sets up the context for database settings.
  564. * @todo see rev. 10406 from 2.1-requests
  565. *
  566. * @param array $config_vars
  567. */
  568. function prepareDBSettingContext(&$config_vars)
  569. {
  570. global $txt, $helptxt, $context, $modSettings, $sourcedir, $smcFunc;
  571. loadLanguage('Help');
  572. $context['config_vars'] = array();
  573. $inlinePermissions = array();
  574. $bbcChoice = array();
  575. $board_list = false;
  576. foreach ($config_vars as $config_var)
  577. {
  578. // HR?
  579. if (!is_array($config_var))
  580. $context['config_vars'][] = $config_var;
  581. else
  582. {
  583. // If it has no name it doesn't have any purpose!
  584. if (empty($config_var[1]))
  585. continue;
  586. // Special case for inline permissions
  587. if ($config_var[0] == 'permissions' && allowedTo('manage_permissions'))
  588. $inlinePermissions[] = $config_var[1];
  589. elseif ($config_var[0] == 'permissions')
  590. continue;
  591. if ($config_var[0] == 'boards')
  592. $board_list = true;
  593. // Are we showing the BBC selection box?
  594. if ($config_var[0] == 'bbc')
  595. $bbcChoice[] = $config_var[1];
  596. // We need to do some parsing of the value before we pass it in.
  597. if (isset($modSettings[$config_var[1]]))
  598. {
  599. switch ($config_var[0])
  600. {
  601. case 'select':
  602. $value = $modSettings[$config_var[1]];
  603. break;
  604. case 'boards':
  605. $value = explode(',', $modSettings[$config_var[1]]);
  606. break;
  607. default:
  608. $value = $smcFunc['htmlspecialchars']($modSettings[$config_var[1]]);
  609. }
  610. }
  611. else
  612. {
  613. // Darn, it's empty. What type is expected?
  614. switch ($config_var[0])
  615. {
  616. case 'int':
  617. case 'float':
  618. $value = 0;
  619. break;
  620. case 'select':
  621. $value = !empty($config_var['multiple']) ? serialize(array()) : '';
  622. break;
  623. case 'boards':
  624. $value = array();
  625. break;
  626. default:
  627. $value = '';
  628. }
  629. }
  630. $context['config_vars'][$config_var[1]] = array(
  631. '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] : '')),
  632. 'help' => isset($helptxt[$config_var[1]]) ? $config_var[1] : '',
  633. 'type' => $config_var[0],
  634. 'size' => !empty($config_var[2]) && !is_array($config_var[2]) ? $config_var[2] : (in_array($config_var[0], array('int', 'float')) ? 6 : 0),
  635. 'data' => array(),
  636. 'name' => $config_var[1],
  637. 'value' => $value,
  638. 'disabled' => false,
  639. 'invalid' => !empty($config_var['invalid']),
  640. 'javascript' => '',
  641. 'var_message' => !empty($config_var['message']) && isset($txt[$config_var['message']]) ? $txt[$config_var['message']] : '',
  642. 'preinput' => isset($config_var['preinput']) ? $config_var['preinput'] : '',
  643. 'postinput' => isset($config_var['postinput']) ? $config_var['postinput'] : '',
  644. );
  645. // If this is a select box handle any data.
  646. if (!empty($config_var[2]) && is_array($config_var[2]))
  647. {
  648. // If we allow multiple selections, we need to adjust a few things.
  649. if ($config_var[0] == 'select' && !empty($config_var['multiple']))
  650. {
  651. $context['config_vars'][$config_var[1]]['name'] .= '[]';
  652. $context['config_vars'][$config_var[1]]['value'] = unserialize($context['config_vars'][$config_var[1]]['value']);
  653. }
  654. // If it's associative
  655. if (isset($config_var[2][0]) && is_array($config_var[2][0]))
  656. $context['config_vars'][$config_var[1]]['data'] = $config_var[2];
  657. else
  658. {
  659. foreach ($config_var[2] as $key => $item)
  660. $context['config_vars'][$config_var[1]]['data'][] = array($key, $item);
  661. }
  662. }
  663. // Finally allow overrides - and some final cleanups.
  664. foreach ($config_var as $k => $v)
  665. {
  666. if (!is_numeric($k))
  667. {
  668. if (substr($k, 0, 2) == 'on')
  669. $context['config_vars'][$config_var[1]]['javascript'] .= ' ' . $k . '="' . $v . '"';
  670. else
  671. $context['config_vars'][$config_var[1]][$k] = $v;
  672. }
  673. // See if there are any other labels that might fit?
  674. if (isset($txt['setting_' . $config_var[1]]))
  675. $context['config_vars'][$config_var[1]]['label'] = $txt['setting_' . $config_var[1]];
  676. elseif (isset($txt['groups_' . $config_var[1]]))
  677. $context['config_vars'][$config_var[1]]['label'] = $txt['groups_' . $config_var[1]];
  678. }
  679. // Set the subtext in case it's part of the label.
  680. // @todo Temporary. Preventing divs inside label tags.
  681. $divPos = strpos($context['config_vars'][$config_var[1]]['label'], '<div');
  682. if ($divPos !== false)
  683. {
  684. $context['config_vars'][$config_var[1]]['subtext'] = preg_replace('~</?div[^>]*>~', '', substr($context['config_vars'][$config_var[1]]['label'], $divPos));
  685. $context['config_vars'][$config_var[1]]['label'] = substr($context['config_vars'][$config_var[1]]['label'], 0, $divPos);
  686. }
  687. }
  688. }
  689. // If we have inline permissions we need to prep them.
  690. if (!empty($inlinePermissions) && allowedTo('manage_permissions'))
  691. {
  692. require_once($sourcedir . '/ManagePermissions.php');
  693. init_inline_permissions($inlinePermissions, isset($context['permissions_excluded']) ? $context['permissions_excluded'] : array());
  694. }
  695. if ($board_list)
  696. {
  697. require_once($sourcedir . '/Subs-MessageIndex.php');
  698. $context['board_list'] = getBoardList();
  699. }
  700. // What about any BBC selection boxes?
  701. if (!empty($bbcChoice))
  702. {
  703. // What are the options, eh?
  704. $temp = parse_bbc(false);
  705. $bbcTags = array();
  706. foreach ($temp as $tag)
  707. $bbcTags[] = $tag['tag'];
  708. $bbcTags = array_unique($bbcTags);
  709. $totalTags = count($bbcTags);
  710. // The number of columns we want to show the BBC tags in.
  711. $numColumns = isset($context['num_bbc_columns']) ? $context['num_bbc_columns'] : 3;
  712. // Start working out the context stuff.
  713. $context['bbc_columns'] = array();
  714. $tagsPerColumn = ceil($totalTags / $numColumns);
  715. $col = 0; $i = 0;
  716. foreach ($bbcTags as $tag)
  717. {
  718. if ($i % $tagsPerColumn == 0 && $i != 0)
  719. $col++;
  720. $context['bbc_columns'][$col][] = array(
  721. 'tag' => $tag,
  722. // @todo 'tag_' . ?
  723. 'show_help' => isset($helptxt[$tag]),
  724. );
  725. $i++;
  726. }
  727. // Now put whatever BBC options we may have into context too!
  728. $context['bbc_sections'] = array();
  729. foreach ($bbcChoice as $bbc)
  730. {
  731. $context['bbc_sections'][$bbc] = array(
  732. 'title' => isset($txt['bbc_title_' . $bbc]) ? $txt['bbc_title_' . $bbc] : $txt['bbcTagsToUse_select'],
  733. 'disabled' => empty($modSettings['bbc_disabled_' . $bbc]) ? array() : $modSettings['bbc_disabled_' . $bbc],
  734. 'all_selected' => empty($modSettings['bbc_disabled_' . $bbc]),
  735. );
  736. }
  737. }
  738. call_integration_hook('integrate_prepare_db_settings', array(&$config_vars));
  739. createToken('admin-dbsc');
  740. }
  741. /**
  742. * Helper function. Saves settings by putting them in Settings.php or saving them in the settings table.
  743. *
  744. * - Saves those settings set from ?action=admin;area=serversettings.
  745. * - Requires the admin_forum permission.
  746. * - Contains arrays of the types of data to save into Settings.php.
  747. *
  748. * @param $config_vars
  749. */
  750. function saveSettings(&$config_vars)
  751. {
  752. global $boarddir, $sc, $cookiename, $modSettings, $user_settings;
  753. global $sourcedir, $context, $cachedir;
  754. validateToken('admin-ssc');
  755. // Fix the darn stupid cookiename! (more may not be allowed, but these for sure!)
  756. if (isset($_POST['cookiename']))
  757. $_POST['cookiename'] = preg_replace('~[,;\s\.$]+~' . ($context['utf8'] ? 'u' : ''), '', $_POST['cookiename']);
  758. // Fix the forum's URL if necessary.
  759. if (isset($_POST['boardurl']))
  760. {
  761. if (substr($_POST['boardurl'], -10) == '/index.php')
  762. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10);
  763. elseif (substr($_POST['boardurl'], -1) == '/')
  764. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1);
  765. if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://')
  766. $_POST['boardurl'] = 'http://' . $_POST['boardurl'];
  767. }
  768. // Any passwords?
  769. $config_passwords = array(
  770. 'db_passwd',
  771. 'ssi_db_passwd',
  772. );
  773. // All the strings to write.
  774. $config_strs = array(
  775. 'mtitle', 'mmessage',
  776. 'language', 'mbname', 'boardurl',
  777. 'cookiename',
  778. 'webmaster_email',
  779. 'db_name', 'db_user', 'db_server', 'db_prefix', 'ssi_db_user',
  780. 'boarddir', 'sourcedir',
  781. 'cachedir', 'cache_accelerator', 'cache_memcached',
  782. );
  783. // All the numeric variables.
  784. $config_ints = array(
  785. 'cache_enable',
  786. );
  787. // All the checkboxes.
  788. $config_bools = array(
  789. 'db_persist', 'db_error_send',
  790. 'maintenance',
  791. );
  792. // Now sort everything into a big array, and figure out arrays and etc.
  793. $new_settings = array();
  794. foreach ($config_passwords as $config_var)
  795. {
  796. if (isset($_POST[$config_var][1]) && $_POST[$config_var][0] == $_POST[$config_var][1])
  797. $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var][0], '\'\\') . '\'';
  798. }
  799. foreach ($config_strs as $config_var)
  800. {
  801. if (isset($_POST[$config_var]))
  802. $new_settings[$config_var] = '\'' . addcslashes($_POST[$config_var], '\'\\') . '\'';
  803. }
  804. foreach ($config_ints as $config_var)
  805. {
  806. if (isset($_POST[$config_var]))
  807. $new_settings[$config_var] = (int) $_POST[$config_var];
  808. }
  809. foreach ($config_bools as $key)
  810. {
  811. if (!empty($_POST[$key]))
  812. $new_settings[$key] = '1';
  813. else
  814. $new_settings[$key] = '0';
  815. }
  816. // Save the relevant settings in the Settings.php file.
  817. require_once($sourcedir . '/Subs-Admin.php');
  818. updateSettingsFile($new_settings);
  819. // Now loop through the remaining (database-based) settings.
  820. $new_settings = array();
  821. foreach ($config_vars as $config_var)
  822. {
  823. // We just saved the file-based settings, so skip their definitions.
  824. if (!is_array($config_var) || $config_var[2] == 'file')
  825. continue;
  826. // Rewrite the definition a bit.
  827. $new_settings[] = array($config_var[3], $config_var[0]);
  828. }
  829. // Save the new database-based settings, if any.
  830. if (!empty($new_settings))
  831. saveDBSettings($new_settings);
  832. }
  833. /**
  834. * Helper function for saving database settings.
  835. * @todo see rev. 10406 from 2.1-requests
  836. *
  837. * @param array $config_vars
  838. */
  839. function saveDBSettings(&$config_vars)
  840. {
  841. global $sourcedir, $context, $smcFunc;
  842. static $board_list = null;
  843. validateToken('admin-dbsc');
  844. $inlinePermissions = array();
  845. foreach ($config_vars as $var)
  846. {
  847. if (!isset($var[1]) || (!isset($_POST[$var[1]]) && $var[0] != 'check' && $var[0] != 'permissions' && ($var[0] != 'bbc' || !isset($_POST[$var[1] . '_enabledTags']))))
  848. continue;
  849. // Checkboxes!
  850. elseif ($var[0] == 'check')
  851. $setArray[$var[1]] = !empty($_POST[$var[1]]) ? '1' : '0';
  852. // Select boxes!
  853. elseif ($var[0] == 'select' && in_array($_POST[$var[1]], array_keys($var[2])))
  854. $setArray[$var[1]] = $_POST[$var[1]];
  855. elseif ($var[0] == 'select' && !empty($var['multiple']) && array_intersect($_POST[$var[1]], array_keys($var[2])) != array())
  856. {
  857. // For security purposes we validate this line by line.
  858. $options = array();
  859. foreach ($_POST[$var[1]] as $invar)
  860. if (in_array($invar, array_keys($var[2])))
  861. $options[] = $invar;
  862. $setArray[$var[1]] = serialize($options);
  863. }
  864. // List of boards!
  865. elseif ($var[0] == 'boards')
  866. {
  867. // We just need a simple list of valid boards, nothing more.
  868. if ($board_list === null)
  869. {
  870. $board_list = array();
  871. $request = $smcFunc['db_query']('', '
  872. SELECT id_board
  873. FROM {db_prefix}boards');
  874. while ($row = $smcFunc['db_fetch_row']($request))
  875. $board_list[$row[0]] = true;
  876. $smcFunc['db_free_result']($request);
  877. }
  878. $options = array();
  879. foreach ($_POST[$var[1]] as $invar => $dummy)
  880. if (isset($board_list[$invar]))
  881. $options[] = $invar;
  882. $setArray[$var[1]] = implode(',', $options);
  883. }
  884. // Integers!
  885. elseif ($var[0] == 'int')
  886. $setArray[$var[1]] = (int) $_POST[$var[1]];
  887. // Floating point!
  888. elseif ($var[0] == 'float')
  889. $setArray[$var[1]] = (float) $_POST[$var[1]];
  890. // Text!
  891. elseif ($var[0] == 'text' || $var[0] == 'large_text')
  892. $setArray[$var[1]] = $_POST[$var[1]];
  893. // Passwords!
  894. elseif ($var[0] == 'password')
  895. {
  896. if (isset($_POST[$var[1]][1]) && $_POST[$var[1]][0] == $_POST[$var[1]][1])
  897. $setArray[$var[1]] = $_POST[$var[1]][0];
  898. }
  899. // BBC.
  900. elseif ($var[0] == 'bbc')
  901. {
  902. $bbcTags = array();
  903. foreach (parse_bbc(false) as $tag)
  904. $bbcTags[] = $tag['tag'];
  905. if (!isset($_POST[$var[1] . '_enabledTags']))
  906. $_POST[$var[1] . '_enabledTags'] = array();
  907. elseif (!is_array($_POST[$var[1] . '_enabledTags']))
  908. $_POST[$var[1] . '_enabledTags'] = array($_POST[$var[1] . '_enabledTags']);
  909. $setArray[$var[1]] = implode(',', array_diff($bbcTags, $_POST[$var[1] . '_enabledTags']));
  910. }
  911. // Permissions?
  912. elseif ($var[0] == 'permissions')
  913. $inlinePermissions[] = $var[1];
  914. }
  915. if (!empty($setArray))
  916. updateSettings($setArray);
  917. // If we have inline permissions we need to save them.
  918. if (!empty($inlinePermissions) && allowedTo('manage_permissions'))
  919. {
  920. require_once($sourcedir . '/ManagePermissions.php');
  921. save_inline_permissions($inlinePermissions);
  922. }
  923. }
  924. /**
  925. * Allows us to see the servers php settings
  926. *
  927. * - loads the settings into an array for display in a template
  928. * - drops cookie values just in case
  929. */
  930. function ShowPHPinfoSettings()
  931. {
  932. global $context, $txt;
  933. $info_lines = array();
  934. $category = $txt['phpinfo_settings'];
  935. // get the data
  936. ob_start();
  937. phpinfo();
  938. // We only want it for its body, pigs that we are
  939. $info_lines = preg_replace('~^.*<body>(.*)</body>.*$~', '$1', ob_get_contents());
  940. $info_lines = explode("\n", strip_tags($info_lines, "<tr><td><h2>"));
  941. ob_end_clean();
  942. // remove things that could be considered sensitive
  943. $remove = '_COOKIE|Cookie|_GET|_REQUEST|REQUEST_URI|QUERY_STRING|REQUEST_URL|HTTP_REFERER';
  944. // put all of it into an array
  945. foreach ($info_lines as $line)
  946. {
  947. if (preg_match('~(' . $remove . ')~', $line))
  948. continue;
  949. // new category?
  950. if (strpos($line, '<h2>') !== false)
  951. $category = preg_match('~<h2>(.*)</h2>~', $line, $title) ? $category = $title[1] : $category;
  952. // load it as setting => value or the old setting local master
  953. if (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val))
  954. $pinfo[$category][$val[1]] = $val[2];
  955. elseif (preg_match('~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~', $line, $val))
  956. $pinfo[$category][$val[1]] = array($txt['phpinfo_localsettings'] => $val[2], $txt['phpinfo_defaultsettings'] => $val[3]);
  957. }
  958. // load it in to context and display it
  959. $context['pinfo'] = $pinfo;
  960. $context['page_title'] = $txt['admin_server_settings'];
  961. $context['sub_template'] = 'php_info';
  962. return;
  963. }
  964. ?>