ManageServer.php 35 KB

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