PageRenderTime 72ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 1ms

/other/install.php

https://github.com/smf-portal/SMF2.1
PHP | 2588 lines | 2071 code | 308 blank | 209 comment | 369 complexity | f96e529e5dd28aa0c8b991b220282873 MD5 | raw file
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines http://www.simplemachines.org
  7. * @copyright 2012 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. $GLOBALS['current_smf_version'] = '2.1 Alpha 1';
  13. $GLOBALS['db_script_version'] = '2-1';
  14. $GLOBALS['required_php_version'] = '5.1.0';
  15. // Don't have PHP support, do you?
  16. // ><html dir="ltr"><head><title>Error!</title></head><body>Sorry, this installer requires PHP!<div style="display: none;">
  17. // Database info.
  18. $databases = array(
  19. 'mysql' => array(
  20. 'name' => 'MySQL',
  21. 'version' => '4.0.18',
  22. 'version_check' => 'return min(mysql_get_server_info(), mysql_get_client_info());',
  23. 'supported' => function_exists('mysql_connect'),
  24. 'default_user' => 'mysql.default_user',
  25. 'default_password' => 'mysql.default_password',
  26. 'default_host' => 'mysql.default_host',
  27. 'default_port' => 'mysql.default_port',
  28. 'utf8_support' => true,
  29. 'utf8_version' => '4.1.0',
  30. 'utf8_version_check' => 'return mysql_get_server_info();',
  31. 'utf8_default' => true,
  32. 'utf8_required' => false,
  33. 'alter_support' => true,
  34. 'validate_prefix' => create_function('&$value', '
  35. $value = preg_replace(\'~[^A-Za-z0-9_\$]~\', \'\', $value);
  36. return true;
  37. '),
  38. ),
  39. 'postgresql' => array(
  40. 'name' => 'PostgreSQL',
  41. 'version' => '8.0',
  42. 'function_check' => 'pg_connect',
  43. 'version_check' => '$request = pg_query(\'SELECT version()\'); list ($version) = pg_fetch_row($request); list($pgl, $version) = explode(" ", $version); return $version;',
  44. 'supported' => function_exists('pg_connect'),
  45. 'always_has_db' => true,
  46. 'utf8_default' => true,
  47. 'utf8_required' => true,
  48. 'utf8_support' => true,
  49. 'utf8_version' => '8.0',
  50. 'utf8_version_check' => '$request = pg_query(\'SELECT version()\'); list ($version) = pg_fetch_row($request); list($pgl, $version) = explode(" ", $version); return $version;',
  51. 'validate_prefix' => create_function('&$value', '
  52. $value = preg_replace(\'~[^A-Za-z0-9_\$]~\', \'\', $value);
  53. // Is it reserved?
  54. if ($value == \'pg_\')
  55. return $txt[\'error_db_prefix_reserved\'];
  56. // Is the prefix numeric?
  57. if (preg_match(\'~^\d~\', $value))
  58. return $txt[\'error_db_prefix_numeric\'];
  59. return true;
  60. '),
  61. ),
  62. 'sqlite' => array(
  63. 'name' => 'SQLite',
  64. 'version' => '1',
  65. 'function_check' => 'sqlite_open',
  66. 'version_check' => 'return 1;',
  67. 'supported' => function_exists('sqlite_open'),
  68. 'always_has_db' => true,
  69. 'utf8_default' => true,
  70. 'utf8_required' => true,
  71. 'utf8_support' => false,
  72. 'validate_prefix' => create_function('&$value', '
  73. global $incontext, $txt;
  74. $value = preg_replace(\'~[^A-Za-z0-9_\$]~\', \'\', $value);
  75. // Is it reserved?
  76. if ($value == \'sqlite_\')
  77. return $txt[\'error_db_prefix_reserved\'];
  78. // Is the prefix numeric?
  79. if (preg_match(\'~^\d~\', $value))
  80. return $txt[\'error_db_prefix_numeric\'];
  81. return true;
  82. '),
  83. ),
  84. );
  85. // Initialize everything and load the language files.
  86. initialize_inputs();
  87. load_lang_file();
  88. // This is what we are.
  89. $installurl = $_SERVER['PHP_SELF'];
  90. // This is where SMF is.
  91. $smfsite = 'http://www.simplemachines.org/smf';
  92. // All the steps in detail.
  93. // Number,Name,Function,Progress Weight.
  94. $incontext['steps'] = array(
  95. 0 => array(1, $txt['install_step_welcome'], 'Welcome', 0),
  96. 1 => array(2, $txt['install_step_writable'], 'CheckFilesWritable', 10),
  97. 2 => array(3, $txt['install_step_databaseset'], 'DatabaseSettings', 15),
  98. 3 => array(4, $txt['install_step_forum'], 'ForumSettings', 40),
  99. 4 => array(5, $txt['install_step_databasechange'], 'DatabasePopulation', 15),
  100. 5 => array(6, $txt['install_step_admin'], 'AdminAccount', 20),
  101. 6 => array(7, $txt['install_step_delete'], 'DeleteInstall', 0),
  102. );
  103. // Default title...
  104. $incontext['page_title'] = $txt['smf_installer'];
  105. // What step are we on?
  106. $incontext['current_step'] = isset($_GET['step']) ? (int) $_GET['step'] : 0;
  107. // Loop through all the steps doing each one as required.
  108. $incontext['overall_percent'] = 0;
  109. foreach ($incontext['steps'] as $num => $step)
  110. {
  111. if ($num >= $incontext['current_step'])
  112. {
  113. // The current weight of this step in terms of overall progress.
  114. $incontext['step_weight'] = $step[3];
  115. // Make sure we reset the skip button.
  116. $incontext['skip'] = false;
  117. // Call the step and if it returns false that means pause!
  118. if (function_exists($step[2]) && $step[2]() === false)
  119. break;
  120. elseif (function_exists($step[2]))
  121. $incontext['current_step']++;
  122. // No warnings pass on.
  123. $incontext['warning'] = '';
  124. }
  125. $incontext['overall_percent'] += $step[3];
  126. }
  127. // Actually do the template stuff.
  128. installExit();
  129. function initialize_inputs()
  130. {
  131. global $databases, $incontext;
  132. // Just so people using older versions of PHP aren't left in the cold.
  133. if (!isset($_SERVER['PHP_SELF']))
  134. $_SERVER['PHP_SELF'] = isset($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']) ? $GLOBALS['HTTP_SERVER_VARS']['PHP_SELF'] : 'install.php';
  135. // Turn off magic quotes runtime and enable error reporting.
  136. if (function_exists('set_magic_quotes_runtime'))
  137. @set_magic_quotes_runtime(0);
  138. error_reporting(E_ALL);
  139. // Fun. Low PHP version...
  140. if (!isset($_GET))
  141. {
  142. $GLOBALS['_GET']['step'] = 0;
  143. return;
  144. }
  145. if (!isset($_GET['obgz']))
  146. {
  147. ob_start();
  148. if (ini_get('session.save_handler') == 'user')
  149. @ini_set('session.save_handler', 'files');
  150. if (function_exists('session_start'))
  151. @session_start();
  152. }
  153. else
  154. {
  155. ob_start('ob_gzhandler');
  156. if (ini_get('session.save_handler') == 'user')
  157. @ini_set('session.save_handler', 'files');
  158. session_start();
  159. if (!headers_sent())
  160. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  161. <html xmlns="http://www.w3.org/1999/xhtml">
  162. <head>
  163. <title>', htmlspecialchars($_GET['pass_string']), '</title>
  164. </head>
  165. <body style="background-color: #d4d4d4; margin-top: 16%; text-align: center; font-size: 16pt;">
  166. <strong>', htmlspecialchars($_GET['pass_string']), '</strong>
  167. </body>
  168. </html>';
  169. exit;
  170. }
  171. // Are we calling the backup css file?
  172. if (isset($_GET['infile_css']))
  173. {
  174. header('Content-Type: text/css');
  175. template_css();
  176. exit;
  177. }
  178. // Anybody home?
  179. if (!isset($_GET['xml']))
  180. {
  181. $incontext['remote_files_available'] = false;
  182. $test = @fsockopen('www.simplemachines.org', 80, $errno, $errstr, 1);
  183. if ($test)
  184. $incontext['remote_files_available'] = true;
  185. @fclose($test);
  186. }
  187. // Add slashes, as long as they aren't already being added.
  188. if (!function_exists('get_magic_quotes_gpc') || @get_magic_quotes_gpc() == 0)
  189. foreach ($_POST as $k => $v)
  190. if (strpos($k, 'password') === false)
  191. $_POST[$k] = addslashes($v);
  192. // This is really quite simple; if ?delete is on the URL, delete the installer...
  193. if (isset($_GET['delete']))
  194. {
  195. if (isset($_SESSION['installer_temp_ftp']))
  196. {
  197. $ftp = new ftp_connection($_SESSION['installer_temp_ftp']['server'], $_SESSION['installer_temp_ftp']['port'], $_SESSION['installer_temp_ftp']['username'], $_SESSION['installer_temp_ftp']['password']);
  198. $ftp->chdir($_SESSION['installer_temp_ftp']['path']);
  199. $ftp->unlink('install.php');
  200. $ftp->unlink('webinstall.php');
  201. foreach ($databases as $key => $dummy)
  202. $ftp->unlink('install_' . $GLOBALS['db_script_version'] . '_' . $key . '.sql');
  203. $ftp->close();
  204. unset($_SESSION['installer_temp_ftp']);
  205. }
  206. else
  207. {
  208. @unlink(__FILE__);
  209. @unlink(dirname(__FILE__) . '/webinstall.php');
  210. foreach ($databases as $key => $dummy)
  211. @unlink(dirname(__FILE__) . '/install_' . $GLOBALS['db_script_version'] . '_' . $key . '.sql');
  212. }
  213. // Now just redirect to a blank.png...
  214. header('Location: http://' . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT']) . dirname($_SERVER['PHP_SELF']) . '/Themes/default/images/blank.png');
  215. exit;
  216. }
  217. // PHP 5 might cry if we don't do this now.
  218. if (function_exists('date_default_timezone_set'))
  219. {
  220. $server_offset = @mktime(0, 0, 0, 1, 1, 1970);
  221. date_default_timezone_set('Etc/GMT' . ($server_offset > 0 ? '+' : '') . ($server_offset / 3600));
  222. }
  223. // Force an integer step, defaulting to 0.
  224. $_GET['step'] = (int) @$_GET['step'];
  225. }
  226. // Load the list of language files, and the current language file.
  227. function load_lang_file()
  228. {
  229. global $txt, $incontext;
  230. $incontext['detected_languages'] = array();
  231. // Make sure the languages directory actually exists.
  232. if (file_exists(dirname(__FILE__) . '/Themes/default/languages'))
  233. {
  234. // Find all the "Install" language files in the directory.
  235. $dir = dir(dirname(__FILE__) . '/Themes/default/languages');
  236. while ($entry = $dir->read())
  237. {
  238. if (substr($entry, 0, 8) == 'Install.' && substr($entry, -4) == '.php')
  239. $incontext['detected_languages'][$entry] = ucfirst(substr($entry, 8, strlen($entry) - 12));
  240. }
  241. $dir->close();
  242. }
  243. // Didn't find any, show an error message!
  244. if (empty($incontext['detected_languages']))
  245. {
  246. // Let's not cache this message, eh?
  247. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  248. header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
  249. header('Cache-Control: no-cache');
  250. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  251. <html xmlns="http://www.w3.org/1999/xhtml">
  252. <head>
  253. <title>SMF Installer: Error!</title>
  254. </head>
  255. <body style="font-family: sans-serif;"><div style="width: 600px;">
  256. <h1 style="font-size: 14pt;">A critical error has occurred.</h1>
  257. <p>This installer was unable to find the installer\'s language file or files. They should be found under:</p>
  258. <div style="margin: 1ex; font-family: monospace; font-weight: bold;">', dirname($_SERVER['PHP_SELF']) != '/' ? dirname($_SERVER['PHP_SELF']) : '', '/Themes/default/languages</div>
  259. <p>In some cases, FTP clients do not properly upload files with this many folders. Please double check to make sure you <span style="font-weight: 600;">have uploaded all the files in the distribution</span>.</p>
  260. <p>If that doesn\'t help, please make sure this install.php file is in the same place as the Themes folder.</p>
  261. <p>If you continue to get this error message, feel free to <a href="http://support.simplemachines.org/">look to us for support</a>.</p>
  262. </div></body>
  263. </html>';
  264. die;
  265. }
  266. // Override the language file?
  267. if (isset($_GET['lang_file']))
  268. $_SESSION['installer_temp_lang'] = $_GET['lang_file'];
  269. elseif (isset($GLOBALS['HTTP_GET_VARS']['lang_file']))
  270. $_SESSION['installer_temp_lang'] = $GLOBALS['HTTP_GET_VARS']['lang_file'];
  271. // Make sure it exists, if it doesn't reset it.
  272. if (!isset($_SESSION['installer_temp_lang']) || preg_match('~[^\\w_\\-.]~', $_SESSION['installer_temp_lang']) === 1 || !file_exists(dirname(__FILE__) . '/Themes/default/languages/' . $_SESSION['installer_temp_lang']))
  273. {
  274. // Use the first one...
  275. list ($_SESSION['installer_temp_lang']) = array_keys($incontext['detected_languages']);
  276. // If we have english and some other language, use the other language. We Americans hate english :P.
  277. if ($_SESSION['installer_temp_lang'] == 'Install.english.php' && count($incontext['detected_languages']) > 1)
  278. list (, $_SESSION['installer_temp_lang']) = array_keys($incontext['detected_languages']);
  279. }
  280. // And now include the actual language file itself.
  281. require_once(dirname(__FILE__) . '/Themes/default/languages/' . $_SESSION['installer_temp_lang']);
  282. }
  283. // This handy function loads some settings and the like.
  284. function load_database()
  285. {
  286. global $db_prefix, $db_connection, $db_character_set, $sourcedir, $language;
  287. global $smcFunc, $mbname, $scripturl, $boardurl, $modSettings, $db_type, $db_name, $db_user;
  288. if (empty($sourcedir))
  289. $sourcedir = dirname(__FILE__) . '/Sources';
  290. // Need this to check whether we need the database password.
  291. require(dirname(__FILE__) . '/Settings.php');
  292. if (!defined('SMF'))
  293. define('SMF', 1);
  294. if (empty($smcFunc))
  295. $smcFunc = array();
  296. $modSettings['disableQueryCheck'] = true;
  297. // Connect the database.
  298. if (!$db_connection)
  299. {
  300. require_once($sourcedir . '/Subs-Db-' . $db_type . '.php');
  301. if (version_compare(PHP_VERSION, '5', '<'))
  302. require_once($sourcedir . '/Subs-Compat.php');
  303. if (!$db_connection)
  304. $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('persist' => $db_persist));
  305. }
  306. }
  307. // This is called upon exiting the installer, for template etc.
  308. function installExit($fallThrough = false)
  309. {
  310. global $incontext, $installurl, $txt;
  311. // Send character set.
  312. header('Content-Type: text/html; charset=' . (isset($txt['lang_character_set']) ? $txt['lang_character_set'] : 'ISO-8859-1'));
  313. // We usually dump our templates out.
  314. if (!$fallThrough)
  315. {
  316. // The top install bit.
  317. template_install_above();
  318. // Call the template.
  319. if (isset($incontext['sub_template']))
  320. {
  321. $incontext['form_url'] = $installurl . '?step=' . $incontext['current_step'];
  322. call_user_func('template_' . $incontext['sub_template']);
  323. }
  324. // @todo REMOVE THIS!!
  325. else
  326. {
  327. if (function_exists('doStep' . $_GET['step']))
  328. call_user_func('doStep' . $_GET['step']);
  329. }
  330. // Show the footer.
  331. template_install_below();
  332. }
  333. // Bang - gone!
  334. die();
  335. }
  336. function Welcome()
  337. {
  338. global $incontext, $txt, $databases, $installurl;
  339. $incontext['page_title'] = $txt['install_welcome'];
  340. $incontext['sub_template'] = 'welcome_message';
  341. // Done the submission?
  342. if (isset($_POST['contbutt']))
  343. return true;
  344. // Check the PHP version.
  345. if ((!function_exists('version_compare') || version_compare($GLOBALS['required_php_version'], PHP_VERSION, '>')))
  346. {
  347. $incontext['warning'] = $txt['error_php_too_low'];
  348. }
  349. // See if we think they have already installed it?
  350. if (is_readable(dirname(__FILE__) . '/Settings.php'))
  351. {
  352. $probably_installed = 0;
  353. foreach (file(dirname(__FILE__) . '/Settings.php') as $line)
  354. {
  355. if (preg_match('~^\$db_passwd\s=\s\'([^\']+)\';$~', $line))
  356. $probably_installed++;
  357. if (preg_match('~^\$boardurl\s=\s\'([^\']+)\';~', $line) && !preg_match('~^\$boardurl\s=\s\'http://127\.0\.0\.1/smf\';~', $line))
  358. $probably_installed++;
  359. }
  360. if ($probably_installed == 2)
  361. $incontext['warning'] = $txt['error_already_installed'];
  362. }
  363. // Is some database support even compiled in?
  364. $incontext['supported_databases'] = array();
  365. foreach ($databases as $key => $db)
  366. {
  367. if ($db['supported'])
  368. {
  369. if (!file_exists(dirname(__FILE__) . '/install_' . $GLOBALS['db_script_version'] . '_' . $key . '.sql'))
  370. {
  371. $databases[$key]['supported'] = false;
  372. $notFoundSQLFile = true;
  373. $txt['error_db_script_missing'] = sprintf($txt['error_db_script_missing'], 'install_' . $GLOBALS['db_script_version'] . '_' . $key . '.sql');
  374. }
  375. else
  376. {
  377. $db_type = $key;
  378. $incontext['supported_databases'][] = $db;
  379. }
  380. }
  381. }
  382. if (empty($incontext['supported_databases']))
  383. $error = empty($notFoundSQLFile) ? 'error_db_missing' : 'error_db_script_missing';
  384. // How about session support? Some crazy sysadmin remove it?
  385. elseif (!function_exists('session_start'))
  386. $error = 'error_session_missing';
  387. // Make sure they uploaded all the files.
  388. elseif (!file_exists(dirname(__FILE__) . '/index.php'))
  389. $error = 'error_missing_files';
  390. // Very simple check on the session.save_path for Windows.
  391. // @todo Move this down later if they don't use database-driven sessions?
  392. elseif (@ini_get('session.save_path') == '/tmp' && substr(__FILE__, 1, 2) == ':\\')
  393. $error = 'error_session_save_path';
  394. // Since each of the three messages would look the same, anyway...
  395. if (isset($error))
  396. $incontext['error'] = $txt[$error];
  397. // Mod_security blocks everything that smells funny. Let SMF handle security.
  398. if (!fixModSecurity() && !isset($_GET['overmodsecurity']))
  399. $incontext['error'] = $txt['error_mod_security'] . '<br /><br /><a href="' . $installurl . '?overmodsecurity=true">' . $txt['error_message_click'] . '</a> ' . $txt['error_message_bad_try_again'];
  400. return false;
  401. }
  402. function CheckFilesWritable()
  403. {
  404. global $txt, $incontext;
  405. $incontext['page_title'] = $txt['ftp_checking_writable'];
  406. $incontext['sub_template'] = 'chmod_files';
  407. $writable_files = array(
  408. 'attachments',
  409. 'avatars',
  410. 'cache',
  411. 'Packages',
  412. 'Packages/installed.list',
  413. 'Smileys',
  414. 'Themes',
  415. 'agreement.txt',
  416. 'Settings.php',
  417. 'Settings_bak.php'
  418. );
  419. foreach ($incontext['detected_languages'] as $lang => $temp)
  420. $extra_files[] = 'Themes/default/languages/' . $lang;
  421. // With mod_security installed, we could attempt to fix it with .htaccess.
  422. if (function_exists('apache_get_modules') && in_array('mod_security', apache_get_modules()))
  423. $writable_files[] = file_exists(dirname(__FILE__) . '/.htaccess') ? '.htaccess' : '.';
  424. $failed_files = array();
  425. // On linux, it's easy - just use is_writable!
  426. if (substr(__FILE__, 1, 2) != ':\\')
  427. {
  428. foreach ($writable_files as $file)
  429. {
  430. if (!is_writable(dirname(__FILE__) . '/' . $file))
  431. {
  432. @chmod(dirname(__FILE__) . '/' . $file, 0755);
  433. // Well, 755 hopefully worked... if not, try 777.
  434. if (!is_writable(dirname(__FILE__) . '/' . $file) && !@chmod(dirname(__FILE__) . '/' . $file, 0777))
  435. $failed_files[] = $file;
  436. }
  437. }
  438. foreach ($extra_files as $file)
  439. @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777);
  440. }
  441. // Windows is trickier. Let's try opening for r+...
  442. else
  443. {
  444. foreach ($writable_files as $file)
  445. {
  446. // Folders can't be opened for write... but the index.php in them can ;)
  447. if (is_dir(dirname(__FILE__) . '/' . $file))
  448. $file .= '/index.php';
  449. // Funny enough, chmod actually does do something on windows - it removes the read only attribute.
  450. @chmod(dirname(__FILE__) . '/' . $file, 0777);
  451. $fp = @fopen(dirname(__FILE__) . '/' . $file, 'r+');
  452. // Hmm, okay, try just for write in that case...
  453. if (!is_resource($fp))
  454. $fp = @fopen(dirname(__FILE__) . '/' . $file, 'w');
  455. if (!is_resource($fp))
  456. $failed_files[] = $file;
  457. @fclose($fp);
  458. }
  459. foreach ($extra_files as $file)
  460. @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777);
  461. }
  462. $failure = count($failed_files) >= 1;
  463. if (!isset($_SERVER))
  464. return !$failure;
  465. // Put the list into context.
  466. $incontext['failed_files'] = $failed_files;
  467. // It's not going to be possible to use FTP on windows to solve the problem...
  468. if ($failure && substr(__FILE__, 1, 2) == ':\\')
  469. {
  470. $incontext['error'] = $txt['error_windows_chmod'] . '
  471. <ul style="margin: 2.5ex; font-family: monospace;">
  472. <li>' . implode('</li>
  473. <li>', $failed_files) . '</li>
  474. </ul>';
  475. return false;
  476. }
  477. // We're going to have to use... FTP!
  478. elseif ($failure)
  479. {
  480. // Load any session data we might have...
  481. if (!isset($_POST['ftp_username']) && isset($_SESSION['installer_temp_ftp']))
  482. {
  483. $_POST['ftp_server'] = $_SESSION['installer_temp_ftp']['server'];
  484. $_POST['ftp_port'] = $_SESSION['installer_temp_ftp']['port'];
  485. $_POST['ftp_username'] = $_SESSION['installer_temp_ftp']['username'];
  486. $_POST['ftp_password'] = $_SESSION['installer_temp_ftp']['password'];
  487. $_POST['ftp_path'] = $_SESSION['installer_temp_ftp']['path'];
  488. }
  489. $incontext['ftp_errors'] = array();
  490. if (isset($_POST['ftp_username']))
  491. {
  492. $ftp = new ftp_connection($_POST['ftp_server'], $_POST['ftp_port'], $_POST['ftp_username'], $_POST['ftp_password']);
  493. if ($ftp->error === false)
  494. {
  495. // Try it without /home/abc just in case they messed up.
  496. if (!$ftp->chdir($_POST['ftp_path']))
  497. {
  498. $incontext['ftp_errors'][] = $ftp->last_message;
  499. $ftp->chdir(preg_replace('~^/home[2]?/[^/]+?~', '', $_POST['ftp_path']));
  500. }
  501. }
  502. }
  503. if (!isset($ftp) || $ftp->error !== false)
  504. {
  505. if (!isset($ftp))
  506. $ftp = new ftp_connection(null);
  507. // Save the error so we can mess with listing...
  508. elseif ($ftp->error !== false && empty($incontext['ftp_errors']) && !empty($ftp->last_message))
  509. $incontext['ftp_errors'][] = $ftp->last_message;
  510. list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__));
  511. if (empty($_POST['ftp_path']) && $found_path)
  512. $_POST['ftp_path'] = $detect_path;
  513. if (!isset($_POST['ftp_username']))
  514. $_POST['ftp_username'] = $username;
  515. // Set the username etc, into context.
  516. $incontext['ftp'] = array(
  517. 'server' => isset($_POST['ftp_server']) ? $_POST['ftp_server'] : 'localhost',
  518. 'port' => isset($_POST['ftp_port']) ? $_POST['ftp_port'] : '21',
  519. 'username' => isset($_POST['ftp_username']) ? $_POST['ftp_username'] : '',
  520. 'path' => isset($_POST['ftp_path']) ? $_POST['ftp_path'] : '/',
  521. 'path_msg' => !empty($found_path) ? $txt['ftp_path_found_info'] : $txt['ftp_path_info'],
  522. );
  523. return false;
  524. }
  525. else
  526. {
  527. $_SESSION['installer_temp_ftp'] = array(
  528. 'server' => $_POST['ftp_server'],
  529. 'port' => $_POST['ftp_port'],
  530. 'username' => $_POST['ftp_username'],
  531. 'password' => $_POST['ftp_password'],
  532. 'path' => $_POST['ftp_path']
  533. );
  534. $failed_files_updated = array();
  535. foreach ($failed_files as $file)
  536. {
  537. if (!is_writable(dirname(__FILE__) . '/' . $file))
  538. $ftp->chmod($file, 0755);
  539. if (!is_writable(dirname(__FILE__) . '/' . $file))
  540. $ftp->chmod($file, 0777);
  541. if (!is_writable(dirname(__FILE__) . '/' . $file))
  542. {
  543. $failed_files_updated[] = $file;
  544. $incontext['ftp_errors'][] = rtrim($ftp->last_message) . ' -> ' . $file . "\n";
  545. }
  546. }
  547. $ftp->close();
  548. // Are there any errors left?
  549. if (count($failed_files_updated) >= 1)
  550. {
  551. // Guess there are...
  552. $incontext['failed_files'] = $failed_files_updated;
  553. // Set the username etc, into context.
  554. $incontext['ftp'] = $_SESSION['installer_temp_ftp'] += array(
  555. 'path_msg' => $txt['ftp_path_info'],
  556. );
  557. return false;
  558. }
  559. }
  560. }
  561. return true;
  562. }
  563. function DatabaseSettings()
  564. {
  565. global $txt, $databases, $incontext, $smcFunc, $sourcedir;
  566. $incontext['sub_template'] = 'database_settings';
  567. $incontext['page_title'] = $txt['db_settings'];
  568. $incontext['continue'] = 1;
  569. // Set up the defaults.
  570. $incontext['db']['server'] = 'localhost';
  571. $incontext['db']['user'] = '';
  572. $incontext['db']['name'] = '';
  573. $incontext['db']['pass'] = '';
  574. $incontext['db']['type'] = '';
  575. $incontext['supported_databases'] = array();
  576. $foundOne = false;
  577. foreach ($databases as $key => $db)
  578. {
  579. // Override with the defaults for this DB if appropriate.
  580. if ($db['supported'])
  581. {
  582. $incontext['supported_databases'][$key] = $db;
  583. if (!$foundOne)
  584. {
  585. if (isset($db['default_host']))
  586. $incontext['db']['server'] = ini_get($db['default_host']) or $incontext['db']['server'] = 'localhost';
  587. if (isset($db['default_user']))
  588. {
  589. $incontext['db']['user'] = ini_get($db['default_user']);
  590. $incontext['db']['name'] = ini_get($db['default_user']);
  591. }
  592. if (isset($db['default_password']))
  593. $incontext['db']['pass'] = ini_get($db['default_password']);
  594. if (isset($db['default_port']))
  595. $db_port = ini_get($db['default_port']);
  596. $incontext['db']['type'] = $key;
  597. $foundOne = true;
  598. }
  599. }
  600. }
  601. // Override for repost.
  602. if (isset($_POST['db_user']))
  603. {
  604. $incontext['db']['user'] = $_POST['db_user'];
  605. $incontext['db']['name'] = $_POST['db_type'] == 'sqlite' && isset($_POST['db_filename']) ? $_POST['db_filename'] : $_POST['db_name'];
  606. $incontext['db']['server'] = $_POST['db_server'];
  607. $incontext['db']['prefix'] = $_POST['db_prefix'];
  608. }
  609. else
  610. {
  611. $incontext['db']['prefix'] = 'smf_';
  612. // Should we use a non standard port?
  613. if (!empty($db_port))
  614. $incontext['db']['server'] .= ':' . $db_port;
  615. }
  616. // Are we submitting?
  617. if (isset($_POST['db_type']))
  618. {
  619. if (isset($_POST['db_filename']))
  620. {
  621. // You better enter enter a database name for SQLite.
  622. if (trim($_POST['db_filename']) == '')
  623. {
  624. $incontext['error'] = $txt['error_db_filename'];
  625. return false;
  626. }
  627. // Duplicate name in the same dir? Can't do that with SQLite. Weird things happen.
  628. if (file_exists($_POST['db_filename'] . (substr($_POST['db_filename'], -3) != '.db' ? '.db' : '')))
  629. {
  630. $incontext['error'] = $txt['error_db_filename_exists'];
  631. return false;
  632. }
  633. }
  634. // What type are they trying?
  635. $db_type = preg_replace('~[^A-Za-z0-9]~', '', $_POST['db_type']);
  636. $db_prefix = $_POST['db_prefix'];
  637. // Validate the prefix.
  638. $valid_prefix = $databases[$db_type]['validate_prefix']($db_prefix);
  639. if ($valid_prefix !== true)
  640. {
  641. $incontext['error'] = $valid_prefix;
  642. return false;
  643. }
  644. // Take care of these variables...
  645. $vars = array(
  646. 'db_type' => $db_type,
  647. 'db_name' => $_POST['db_type'] == 'sqlite' && isset($_POST['db_filename']) ? $_POST['db_filename'] : $_POST['db_name'],
  648. 'db_user' => $_POST['db_user'],
  649. 'db_passwd' => isset($_POST['db_passwd']) ? $_POST['db_passwd'] : '',
  650. 'db_server' => $_POST['db_server'],
  651. 'db_prefix' => $db_prefix,
  652. // The cookiename is special; we want it to be the same if it ever needs to be reinstalled with the same info.
  653. 'cookiename' => 'SMFCookie' . abs(crc32($_POST['db_name'] . preg_replace('~[^A-Za-z0-9_$]~', '', $_POST['db_prefix'])) % 1000),
  654. );
  655. // God I hope it saved!
  656. if (!updateSettingsFile($vars) && substr(__FILE__, 1, 2) == ':\\')
  657. {
  658. $incontext['error'] = $txt['error_windows_chmod'];
  659. return false;
  660. }
  661. // Make sure it works.
  662. require(dirname(__FILE__) . '/Settings.php');
  663. if (empty($sourcedir))
  664. $sourcedir = dirname(__FILE__) . '/Sources';
  665. // Better find the database file!
  666. if (!file_exists($sourcedir . '/Subs-Db-' . $db_type . '.php'))
  667. {
  668. $incontext['error'] = sprintf($txt['error_db_file'], 'Subs-Db-' . $db_type . '.php');
  669. return false;
  670. }
  671. // Now include it for database functions!
  672. define('SMF', 1);
  673. $modSettings['disableQueryCheck'] = true;
  674. if (empty($smcFunc))
  675. $smcFunc = array();
  676. require_once($sourcedir . '/Subs-Db-' . $db_type . '.php');
  677. // What - running PHP4? The shame!
  678. if (version_compare(PHP_VERSION, '5', '<'))
  679. require_once($sourcedir . '/Subs-Compat.php');
  680. // Attempt a connection.
  681. $needsDB = !empty($databases[$db_type]['always_has_db']);
  682. $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true, 'dont_select_db' => !$needsDB));
  683. // No dice? Let's try adding the prefix they specified, just in case they misread the instructions ;)
  684. if ($db_connection == null)
  685. {
  686. $db_error = @$smcFunc['db_error']();
  687. $db_connection = smf_db_initiate($db_server, $db_name, $_POST['db_prefix'] . $db_user, $db_passwd, $db_prefix, array('non_fatal' => true, 'dont_select_db' => !$needsDB));
  688. if ($db_connection != null)
  689. {
  690. $db_user = $_POST['db_prefix'] . $db_user;
  691. updateSettingsFile(array('db_user' => $db_user));
  692. }
  693. }
  694. // Still no connection? Big fat error message :P.
  695. if (!$db_connection)
  696. {
  697. $incontext['error'] = $txt['error_db_connect'] . '<div style="margin: 2.5ex; font-family: monospace;"><strong>' . $db_error . '</strong></div>';
  698. return false;
  699. }
  700. // Do they meet the install requirements?
  701. // @todo Old client, new server?
  702. if (version_compare($databases[$db_type]['version'], preg_replace('~^\D*|\-.+?$~', '', eval($databases[$db_type]['version_check']))) > 0)
  703. {
  704. $incontext['error'] = $txt['error_db_too_low'];
  705. return false;
  706. }
  707. // Let's try that database on for size... assuming we haven't already lost the opportunity.
  708. if ($db_name != '' && !$needsDB)
  709. {
  710. $smcFunc['db_query']('', "
  711. CREATE DATABASE IF NOT EXISTS `$db_name`",
  712. array(
  713. 'security_override' => true,
  714. 'db_error_skip' => true,
  715. ),
  716. $db_connection
  717. );
  718. // Okay, let's try the prefix if it didn't work...
  719. if (!$smcFunc['db_select_db']($db_name, $db_connection) && $db_name != '')
  720. {
  721. $smcFunc['db_query']('', "
  722. CREATE DATABASE IF NOT EXISTS `$_POST[db_prefix]$db_name`",
  723. array(
  724. 'security_override' => true,
  725. 'db_error_skip' => true,
  726. ),
  727. $db_connection
  728. );
  729. if ($smcFunc['db_select_db']($_POST['db_prefix'] . $db_name, $db_connection))
  730. {
  731. $db_name = $_POST['db_prefix'] . $db_name;
  732. updateSettingsFile(array('db_name' => $db_name));
  733. }
  734. }
  735. // Okay, now let's try to connect...
  736. if (!$smcFunc['db_select_db']($db_name, $db_connection))
  737. {
  738. $incontext['error'] = sprintf($txt['error_db_database'], $db_name);
  739. return false;
  740. }
  741. }
  742. return true;
  743. }
  744. return false;
  745. }
  746. // Let's start with basic forum type settings.
  747. function ForumSettings()
  748. {
  749. global $txt, $incontext, $databases, $smcFunc, $db_connection, $db_type;
  750. $incontext['sub_template'] = 'forum_settings';
  751. $incontext['page_title'] = $txt['install_settings'];
  752. // Let's see if we got the database type correct.
  753. if (isset($_POST['db_type'], $databases[$_POST['db_type']]))
  754. $db_type = $_POST['db_type'];
  755. // Else we'd better be able to get the connection.
  756. else
  757. load_database();
  758. $db_type = isset($_POST['db_type']) ? $_POST['db_type'] : $db_type;
  759. // What host and port are we on?
  760. $host = empty($_SERVER['HTTP_HOST']) ? $_SERVER['SERVER_NAME'] . (empty($_SERVER['SERVER_PORT']) || $_SERVER['SERVER_PORT'] == '80' ? '' : ':' . $_SERVER['SERVER_PORT']) : $_SERVER['HTTP_HOST'];
  761. // Now, to put what we've learned together... and add a path.
  762. $incontext['detected_url'] = 'http' . (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ? 's' : '') . '://' . $host . substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], '/'));
  763. // Check if the database sessions will even work.
  764. $incontext['test_dbsession'] = ini_get('session.auto_start') != 1;
  765. $incontext['utf8_default'] = $databases[$db_type]['utf8_default'];
  766. $incontext['utf8_required'] = $databases[$db_type]['utf8_required'];
  767. $incontext['continue'] = 1;
  768. // Submitting?
  769. if (isset($_POST['boardurl']))
  770. {
  771. if (substr($_POST['boardurl'], -10) == '/index.php')
  772. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10);
  773. elseif (substr($_POST['boardurl'], -1) == '/')
  774. $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1);
  775. if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://')
  776. $_POST['boardurl'] = 'http://' . $_POST['boardurl'];
  777. // Save these variables.
  778. $vars = array(
  779. 'boardurl' => $_POST['boardurl'],
  780. 'boarddir' => addslashes(dirname(__FILE__)),
  781. 'sourcedir' => addslashes(dirname(__FILE__)) . '/Sources',
  782. 'cachedir' => addslashes(dirname(__FILE__)) . '/cache',
  783. 'mbname' => strtr($_POST['mbname'], array('\"' => '"')),
  784. 'language' => substr($_SESSION['installer_temp_lang'], 8, -4),
  785. );
  786. // Must save!
  787. if (!updateSettingsFile($vars) && substr(__FILE__, 1, 2) == ':\\')
  788. {
  789. $incontext['error'] = $txt['error_windows_chmod'];
  790. return false;
  791. }
  792. // Make sure it works.
  793. require(dirname(__FILE__) . '/Settings.php');
  794. // UTF-8 requires a setting to override the language charset.
  795. if ((!empty($databases[$db_type]['utf8_support']) && !empty($databases[$db_type]['utf8_required'])) || (empty($databases[$db_type]['utf8_required']) && !empty($databases[$db_type]['utf8_support']) && isset($_POST['utf8'])))
  796. {
  797. if (!empty($databases[$db_type]['utf8_version_check']) && version_compare($databases[$db_type]['utf8_version'], preg_replace('~\-.+?$~', '', eval($databases[$db_type]['utf8_version_check'])), '>'))
  798. {
  799. $incontext['error'] = sprintf($txt['error_utf8_version'], $databases[$db_type]['utf8_version']);
  800. return false;
  801. }
  802. else
  803. // Set the character set here.
  804. updateSettingsFile(array('db_character_set' => 'utf8'));
  805. }
  806. // Good, skip on.
  807. return true;
  808. }
  809. return false;
  810. }
  811. // Step one: Do the SQL thang.
  812. function DatabasePopulation()
  813. {
  814. global $db_character_set, $txt, $db_connection, $smcFunc, $databases, $modSettings, $db_type, $sourcedir, $db_prefix, $incontext, $db_name, $boardurl;
  815. $incontext['sub_template'] = 'populate_database';
  816. $incontext['page_title'] = $txt['db_populate'];
  817. $incontext['continue'] = 1;
  818. // Already done?
  819. if (isset($_POST['pop_done']))
  820. return true;
  821. // Reload settings.
  822. require(dirname(__FILE__) . '/Settings.php');
  823. load_database();
  824. // Before running any of the queries, let's make sure another version isn't already installed.
  825. $result = $smcFunc['db_query']('', '
  826. SELECT variable, value
  827. FROM {db_prefix}settings',
  828. array(
  829. 'db_error_skip' => true,
  830. )
  831. );
  832. $modSettings = array();
  833. if ($result !== false)
  834. {
  835. while ($row = $smcFunc['db_fetch_assoc']($result))
  836. $modSettings[$row['variable']] = $row['value'];
  837. $smcFunc['db_free_result']($result);
  838. // Do they match? If so, this is just a refresh so charge on!
  839. if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] != $GLOBALS['current_smf_version'])
  840. {
  841. $incontext['error'] = $txt['error_versions_do_not_match'];
  842. return false;
  843. }
  844. }
  845. $modSettings['disableQueryCheck'] = true;
  846. // If doing UTF8, select it. PostgreSQL requires passing it as a string...
  847. if (!empty($db_character_set) && $db_character_set == 'utf8' && !empty($databases[$db_type]['utf8_support']))
  848. $smcFunc['db_query']('', '
  849. SET NAMES {'. ($db_type == 'postgresql' ? 'string' : 'raw') . ':utf8}',
  850. array(
  851. 'db_error_skip' => true,
  852. 'utf8' => 'utf8',
  853. )
  854. );
  855. $replaces = array(
  856. '{$db_prefix}' => $db_prefix,
  857. '{$boarddir}' => $smcFunc['db_escape_string'](dirname(__FILE__)),
  858. '{$boardurl}' => $boardurl,
  859. '{$enableCompressedOutput}' => isset($_POST['compress']) ? '1' : '0',
  860. '{$databaseSession_enable}' => isset($_POST['dbsession']) ? '1' : '0',
  861. '{$smf_version}' => $GLOBALS['current_smf_version'],
  862. '{$current_time}' => time(),
  863. '{$sched_task_offset}' => 82800 + mt_rand(0, 86399),
  864. );
  865. foreach ($txt as $key => $value)
  866. {
  867. if (substr($key, 0, 8) == 'default_')
  868. $replaces['{$' . $key . '}'] = $smcFunc['db_escape_string']($value);
  869. }
  870. $replaces['{$default_reserved_names}'] = strtr($replaces['{$default_reserved_names}'], array('\\\\n' => '\\n'));
  871. // If the UTF-8 setting was enabled, add it to the table definitions.
  872. if (empty($databases[$db_type]['utf8_required']) && isset($_POST['utf8']) && !empty($databases[$db_type]['utf8_support']))
  873. $replaces[') ENGINE=MyISAM;'] = ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;';
  874. // Read in the SQL. Turn this on and that off... internationalize... etc.
  875. $sql_lines = explode("\n", strtr(implode(' ', file(dirname(__FILE__) . '/install_' . $GLOBALS['db_script_version'] . '_' . $db_type . '.sql')), $replaces));
  876. // Execute the SQL.
  877. $current_statement = '';
  878. $exists = array();
  879. $incontext['failures'] = array();
  880. $incontext['sql_results'] = array(
  881. 'tables' => 0,
  882. 'inserts' => 0,
  883. 'table_dups' => 0,
  884. 'insert_dups' => 0,
  885. );
  886. foreach ($sql_lines as $count => $line)
  887. {
  888. // No comments allowed!
  889. if (substr(trim($line), 0, 1) != '#')
  890. $current_statement .= "\n" . rtrim($line);
  891. // Is this the end of the query string?
  892. if (empty($current_statement) || (preg_match('~;[\s]*$~s', $line) == 0 && $count != count($sql_lines)))
  893. continue;
  894. // Does this table already exist? If so, don't insert more data into it!
  895. if (preg_match('~^\s*INSERT INTO ([^\s\n\r]+?)~', $current_statement, $match) != 0 && in_array($match[1], $exists))
  896. {
  897. $incontext['sql_results']['insert_dups']++;
  898. $current_statement = '';
  899. continue;
  900. }
  901. if ($smcFunc['db_query']('', $current_statement, array('security_override' => true, 'db_error_skip' => true), $db_connection) === false)
  902. {
  903. // Error 1050: Table already exists!
  904. // @todo Needs to be made better!
  905. if (($db_type != 'mysql' || mysql_errno($db_connection) === 1050) && preg_match('~^\s*CREATE TABLE ([^\s\n\r]+?)~', $current_statement, $match) == 1)
  906. {
  907. $exists[] = $match[1];
  908. $incontext['sql_results']['table_dups']++;
  909. }
  910. // Don't error on duplicate indexes (or duplicate operators in PostgreSQL.)
  911. elseif (!preg_match('~^\s*CREATE( UNIQUE)? INDEX ([^\n\r]+?)~', $current_statement, $match) && !($db_type == 'postgresql' && preg_match('~^\s*CREATE OPERATOR (^\n\r]+?)~', $current_statement, $match)))
  912. {
  913. $incontext['failures'][$count] = $smcFunc['db_error']();
  914. }
  915. }
  916. else
  917. {
  918. if (preg_match('~^\s*CREATE TABLE ([^\s\n\r]+?)~', $current_statement, $match) == 1)
  919. $incontext['sql_results']['tables']++;
  920. else
  921. {
  922. preg_match_all('~\)[,;]~', $current_statement, $matches);
  923. if (!empty($matches[0]))
  924. $incontext['sql_results']['inserts'] += count($matches[0]);
  925. else
  926. $incontext['sql_results']['inserts']++;
  927. }
  928. }
  929. $current_statement = '';
  930. }
  931. // Sort out the context for the SQL.
  932. foreach ($incontext['sql_results'] as $key => $number)
  933. {
  934. if ($number == 0)
  935. unset($incontext['sql_results'][$key]);
  936. else
  937. $incontext['sql_results'][$key] = sprintf($txt['db_populate_' . $key], $number);
  938. }
  939. // Make sure UTF will be used globally.
  940. if ((!empty($databases[$db_type]['utf8_support']) && !empty($databases[$db_type]['utf8_required'])) || (empty($databases[$db_type]['utf8_required']) && !empty($databases[$db_type]['utf8_support']) && isset($_POST['utf8'])))
  941. $smcFunc['db_insert']('replace',
  942. $db_prefix . 'settings',
  943. array(
  944. 'variable' => 'string-255', 'value' => 'string-65534',
  945. ),
  946. array(
  947. 'global_character_set', 'UTF-8',
  948. ),
  949. array('variable')
  950. );
  951. // Maybe we can auto-detect better cookie settings?
  952. preg_match('~^http[s]?://([^\.]+?)([^/]*?)(/.*)?$~', $boardurl, $matches);
  953. if (!empty($matches))
  954. {
  955. // Default = both off.
  956. $localCookies = false;
  957. $globalCookies = false;
  958. // Okay... let's see. Using a subdomain other than www.? (not a perfect check.)
  959. if ($matches[2] != '' && (strpos(substr($matches[2], 1), '.') === false || in_array($matches[1], array('forum', 'board', 'community', 'forums', 'support', 'chat', 'help', 'talk', 'boards', 'www'))))
  960. $globalCookies = true;
  961. // If there's a / in the middle of the path, or it starts with ~... we want local.
  962. if (isset($matches[3]) && strlen($matches[3]) > 3 && (substr($matches[3], 0, 2) == '/~' || strpos(substr($matches[3], 1), '/') !== false))
  963. $localCookies = true;
  964. if ($globalCookies)
  965. $rows[] = array('globalCookies', '1');
  966. if ($localCookies)
  967. $rows[] = array('localCookies', '1');
  968. if (!empty($rows))
  969. {
  970. $smcFunc['db_insert']('replace',
  971. $db_prefix . 'settings',
  972. array('variable' => 'string-255', 'value' => 'string-65534'),
  973. $rows,
  974. array('variable')
  975. );
  976. }
  977. }
  978. // Are we allowing stat collection?
  979. if (isset($_POST['stats']) && strpos($_POST['boardurl'], 'http://localhost') !== 0)
  980. {
  981. // Attempt to register the site etc.
  982. $fp = @fsockopen("www.simplemachines.org", 80, $errno, $errstr);
  983. if ($fp)
  984. {
  985. $out = "GET /smf/stats/register_stats.php?site=" . base64_encode($_POST['boardurl']) . " HTTP/1.1\r\n";
  986. $out .= "Host: www.simplemachines.org\r\n";
  987. $out .= "Connection: Close\r\n\r\n";
  988. fwrite($fp, $out);
  989. $return_data = '';
  990. while (!feof($fp))
  991. $return_data .= fgets($fp, 128);
  992. fclose($fp);
  993. // Get the unique site ID.
  994. preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID);
  995. if (!empty($ID[1]))
  996. $smcFunc['db_insert']('',
  997. $db_prefix . 'settings',
  998. array(
  999. 'variable' => 'string-255', 'value' => 'string-65534',
  1000. ),
  1001. array(
  1002. 'allow_sm_stats', $ID[1],
  1003. ),
  1004. array('variable')
  1005. );
  1006. }
  1007. }
  1008. // As of PHP 5.1, setting a timezone is required.
  1009. if (!isset($modSettings['default_timezone']) && function_exists('date_default_timezone_set'))
  1010. {
  1011. $server_offset = mktime(0, 0, 0, 1, 1, 1970);
  1012. $timezone_id = 'Etc/GMT' . ($server_offset > 0 ? '+' : '') . ($server_offset / 3600);
  1013. if (date_default_timezone_set($timezone_id))
  1014. $smcFunc['db_insert']('',
  1015. $db_prefix . 'settings',
  1016. array(
  1017. 'variable' => 'string-255', 'value' => 'string-65534',
  1018. ),
  1019. array(
  1020. 'default_timezone', $timezone_id,
  1021. ),
  1022. array('variable')
  1023. );
  1024. }
  1025. // Let's optimize those new tables.
  1026. db_extend();
  1027. $tables = $smcFunc['db_list_tables']($db_name, $db_prefix . '%');
  1028. foreach ($tables as $table)
  1029. {
  1030. $smcFunc['db_optimize_table']($table) != -1 or $db_messed = true;
  1031. // Optimizing one sqlite table, optimizes them all
  1032. if($db_type == 'sqlite')
  1033. break;
  1034. if (!empty($db_messed))
  1035. {
  1036. $incontext['failures'][-1] = $smcFunc['db_error']();
  1037. break;
  1038. }
  1039. }
  1040. // Check for the ALTER privilege.
  1041. if (!empty($databases[$db_type]['alter_support']) && $smcFunc['db_query']('', "ALTER TABLE {$db_prefix}boards ORDER BY id_board", array('security_override' => true, 'db_error_skip' => true)) === false)
  1042. {
  1043. $incontext['error'] = $txt['error_db_alter_priv'];
  1044. return false;
  1045. }
  1046. if (!empty($exists))
  1047. {
  1048. $incontext['page_title'] = $txt['user_refresh_install'];
  1049. $incontext['was_refresh'] = true;
  1050. }
  1051. return false;
  1052. }
  1053. // Ask for the administrator login information.
  1054. function AdminAccount()
  1055. {
  1056. global $txt, $db_type, $db_connection, $databases, $smcFunc, $incontext, $db_prefix, $db_passwd, $sourcedir;
  1057. $incontext['sub_template'] = 'admin_account';
  1058. $incontext['page_title'] = $txt['user_settings'];
  1059. $incontext['continue'] = 1;
  1060. // Skipping?
  1061. if (!empty($_POST['skip']))
  1062. return true;
  1063. // Need this to check whether we need the database password.
  1064. require(dirname(__FILE__) . '/Settings.php');
  1065. load_database();
  1066. // Define the sha1 function, if it doesn't exist.
  1067. if (!function_exists('sha1') || version_compare(PHP_VERSION, '5', '<'))
  1068. require_once($sourcedir . '/Subs-Compat.php');
  1069. if (!isset($_POST['username']))
  1070. $_POST['username'] = '';
  1071. if (!isset($_POST['email']))
  1072. $_POST['email'] = '';
  1073. $incontext['username'] = htmlspecialchars(stripslashes($_POST['username']));
  1074. $incontext['email'] = htmlspecialchars(stripslashes($_POST['email']));
  1075. $incontext['require_db_confirm'] = empty($db_type) || $db_type != 'sqlite';
  1076. // Only allow skipping if we think they already have an account setup.
  1077. $request = $smcFunc['db_query']('', '
  1078. SELECT id_member
  1079. FROM {db_prefix}members
  1080. WHERE id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0
  1081. LIMIT 1',
  1082. array(
  1083. 'db_error_skip' => true,
  1084. 'admin_group' => 1,
  1085. )
  1086. );
  1087. if ($smcFunc['db_num_rows']($request) != 0)
  1088. $incontext['skip'] = 1;
  1089. $smcFunc['db_free_result']($request);
  1090. // Trying to create an account?
  1091. if (isset($_POST['password1']) && !empty($_POST['contbutt']))
  1092. {
  1093. // Wrong password?
  1094. if ($incontext['require_db_confirm'] && $_POST['password3'] != $db_passwd)
  1095. {
  1096. $incontext['error'] = $txt['error_db_connect'];
  1097. return false;
  1098. }
  1099. // Not matching passwords?
  1100. if ($_POST['password1'] != $_POST['password2'])
  1101. {
  1102. $incontext['error'] = $txt['error_user_settings_again_match'];
  1103. return false;
  1104. }
  1105. // No password?
  1106. if (strlen($_POST['password1']) < 4)
  1107. {
  1108. $incontext['error'] = $txt['error_user_settings_no_password'];
  1109. return false;
  1110. }
  1111. if (!file_exists($sourcedir . '/Subs.php'))
  1112. {
  1113. $incontext['error'] = $txt['error_subs_missing'];
  1114. return false;
  1115. }
  1116. // Update the main contact email?
  1117. if (!empty($_POST['email']) && (empty($webmaster_email) || $webmaster_email == 'noreply@myserver.com'))
  1118. updateSettingsFile(array('webmaster_email' => $_POST['email']));
  1119. // Work out whether we're going to have dodgy characters and remove them.
  1120. $invalid_characters = preg_match('~[<>&"\'=\\\]~', $_POST['username']) != 0;
  1121. $_POST['username'] = preg_replace('~[<>&"\'=\\\]~', '', $_POST['username']);
  1122. $result = $smcFunc['db_query']('', '
  1123. SELECT id_member, password_salt
  1124. FROM {db_prefix}members
  1125. WHERE member_name = {string:username} OR email_address = {string:email}
  1126. LIMIT 1',
  1127. array(
  1128. 'username' => stripslashes($_POST['username']),
  1129. 'email' => stripslashes($_POST['email']),
  1130. 'db_error_skip' => true,
  1131. )
  1132. );
  1133. if ($smcFunc['db_num_rows']($result) != 0)
  1134. {
  1135. list ($incontext['member_id'], $incontext['member_salt']) = $smcFunc['db_fetch_row']($result);
  1136. $smcFunc['db_free_result']($result);
  1137. $incontext['account_existed'] = $txt['error_user_settings_taken'];
  1138. }
  1139. elseif ($_POST['username'] == '' || strlen($_POST['username']) > 25)
  1140. {
  1141. // Try the previous step again.
  1142. $incontext['error'] = $_POST['username'] == '' ? $txt['error_username_left_empty'] : $txt['error_username_too_long'];
  1143. return false;
  1144. }
  1145. elseif ($invalid_characters || $_POST['username'] == '_' || $_POST['username'] == '|' || strpos($_POST['username'], '[code') !== false || strpos($_POST['username'], '[/code') !== false)
  1146. {
  1147. // Try the previous step again.
  1148. $incontext['error'] = $txt['error_invalid_characters_username'];
  1149. return false;
  1150. }
  1151. elseif (empty($_POST['email']) || preg_match('~^[0-9A-Za-z=_+\-/][0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', stripslashes($_POST['email'])) === 0 || strlen(stripslashes($_POST['email'])) > 255)
  1152. {
  1153. // One step back, this time fill out a proper email address.
  1154. $incontext['error'] = sprintf($txt['error_valid_email_needed'], $_POST['username']);
  1155. return false;
  1156. }
  1157. elseif ($_POST['username'] != '')
  1158. {
  1159. $incontext['member_salt'] = substr(md5(mt_rand()), 0, 4);
  1160. // Format the username properly.
  1161. $_POST['username'] = preg_replace('~[\t\n\r\x0B\0\xA0]+~', ' ', $_POST['username']);
  1162. $ip = isset($_SERVER['REMOTE_ADDR']) ? substr($_SERVER['REMOTE_ADDR'], 0, 255) : '';
  1163. $request = $smcFunc['db_insert']('',
  1164. $db_prefix . 'members',
  1165. array(
  1166. 'member_name' => 'string-25', 'real_name' => 'string-25', 'passwd' => 'string', 'email_address' => 'string',
  1167. 'id_group' => 'int', 'posts' => 'int', 'date_registered' => 'int', 'hide_email' => 'int',
  1168. 'password_salt' => 'string', 'lngfile' => 'string', 'personal_text' => 'string', 'avatar' => 'string',
  1169. 'member_ip' => 'string', 'member_ip2' => 'string', 'buddy_list' => 'string', 'pm_ignore_list' => 'string',
  1170. 'message_labels' => 'string', 'website_title' => 'string', 'website_url' => 'string', 'location' => 'string',
  1171. 'aim' => 'string', 'icq' => 'string', 'msn' => 'string', 'signature' => 'string', 'usertitle' => 'string', 'secret_question' => 'string',
  1172. 'additional_groups' => 'string', 'ignore_boards' => 'string', 'openid_uri' => 'string',
  1173. ),
  1174. array(
  1175. stripslashes($_POST['username']), stripslashes($_POST['username']), sha1(strtolower(stripslashes($_POST['username'])) . stripslashes($_POST['password1'])), stripslashes($_POST['email']),
  1176. 1, 0, time(), 0,
  1177. $incontext['member_salt'], '', '', '',
  1178. $ip, $ip, '', '',
  1179. '', '', '', '',
  1180. '', '', '', '', '', '',
  1181. '', '', '',
  1182. ),
  1183. array('id_member')
  1184. );
  1185. // Awww, crud!
  1186. if ($request === false)
  1187. {
  1188. $incontext['error'] = $txt['error_user_settings_query'] . '<br />
  1189. <div style="margin: 2ex;">' . nl2br(htmlspecialchars($smcFunc['db_error']($db_connection))) . '</div>';
  1190. return false;
  1191. }
  1192. $incontext['member_id'] = $smcFunc['db_insert_id']("{$db_prefix}members", 'id_member');
  1193. }
  1194. // If we're here we're good.
  1195. return true;
  1196. }
  1197. return false;
  1198. }
  1199. // Final step, clean up and a complete message!
  1200. function DeleteInstall()
  1201. {
  1202. global $txt, $db_prefix, $db_connection, $HTTP_SESSION_VARS, $cookiename, $incontext;
  1203. global $smcFunc, $db_character_set, $mbname, $context, $scripturl, $boardurl;
  1204. global $current_smf_version, $databases, $sourcedir, $forum_version, $modSettings, $user_info, $language, $db_type;
  1205. $incontext['page_title'] = $txt['congratulations'];
  1206. $incontext['sub_template'] = 'delete_install';
  1207. $incontext['continue'] = 0;
  1208. require(dirname(__FILE__) . '/Settings.php');
  1209. load_database();
  1210. chdir(dirname(__FILE__));
  1211. require_once($sourcedir . '/Errors.php');
  1212. require_once($sourcedir . '/Logging.php');
  1213. require_once($sourcedir . '/Subs.php');
  1214. require_once($sourcedir . '/Load.php');
  1215. require_once($sourcedir . '/Security.php');
  1216. require_once($sourcedir . '/Subs-Auth.php');
  1217. // Bring a warning over.
  1218. if (!empty($incontext['account_existed']))
  1219. $incontext['warning'] = $incontext['account_existed'];
  1220. if (!empty($db_character_set) && !empty($databases[$db_type]['utf8_support']))
  1221. $smcFunc['db_query']('', '
  1222. SET NAMES {raw:db_character_set}',
  1223. array(
  1224. 'db_character_set' => $db_character_set,
  1225. 'db_error_skip' => true,
  1226. )
  1227. );
  1228. // As track stats is by default enabled let's add some activity.
  1229. $smcFunc['db_insert']('ignore',
  1230. '{db_prefix}log_activity',
  1231. array('date' => 'date', 'topics' => 'int', 'posts' => 'int', 'registers' => 'int'),
  1232. array(strftime('%Y-%m-%d', time()), 1, 1, (!empty($incontext['member_id']) ? 1 : 0)),
  1233. array('date')
  1234. );
  1235. // We're going to want our lovely $modSettings now.
  1236. $request = $smcFunc['db_query']('', '
  1237. SELECT variable, value
  1238. FROM {db_prefix}settings',
  1239. array(
  1240. 'db_error_skip' => true,
  1241. )
  1242. );
  1243. // Only proceed if we can load the data.
  1244. if ($request)
  1245. {
  1246. while ($row = $smcFunc['db_fetch_row']($request))
  1247. $modSettings[$row[0]] = $row[1];
  1248. $smcFunc['db_free_result']($request);
  1249. }
  1250. // Automatically log them in ;)
  1251. if (isset($incontext['member_id']) && isset($incontext['member_salt']))
  1252. setLoginCookie(3153600 * 60, $incontext['member_id'], sha1(sha1(strtolower($_POST['username']) . $_POST['password1']) . $incontext['member_salt']));
  1253. $result = $smcFunc['db_query']('', '
  1254. SELECT value
  1255. FROM {db_prefix}settings
  1256. WHERE variable = {string:db_sessions}',
  1257. array(
  1258. 'db_sessions' => 'databaseSession_enable',
  1259. 'db_error_skip' => true,
  1260. )
  1261. );
  1262. if ($smcFunc['db_num_rows']($result) != 0)
  1263. list ($db_sessions) = $smcFunc['db_fetch_row']($result);
  1264. $smcFunc['db_free_result']($result);
  1265. if (empty($db_sessions))
  1266. $_SESSION['admin_time'] = time();
  1267. else
  1268. {
  1269. $_SERVER['HTTP_USER_AGENT'] = substr($_SERVER['HTTP_USER_AGENT'], 0, 211);
  1270. $smcFunc['db_insert']('replace',
  1271. '{db_prefix}sessions',
  1272. array(
  1273. 'session_id' => 'string', 'last_update' => 'int', 'data' => 'string',
  1274. ),
  1275. array(
  1276. session_id(), time(), 'USER_AGENT|s:' . strlen($_SERVER['HTTP_USER_AGENT']) . ':"' . $_SERVER['HTTP_USER_AGENT'] . '";admin_time|i:' . time() . ';',
  1277. ),
  1278. array('session_id')
  1279. );
  1280. }
  1281. updateStats('member');
  1282. updateStats('message');
  1283. updateStats('topic');
  1284. // This function is needed to do the updateStats('subject') call.
  1285. $smcFunc['strtolower'] = $db_character_set === 'utf8' || $txt['lang_character_set'] === 'UTF-8' ? create_function('$string', '
  1286. return $string;') : 'strtolower';
  1287. $request = $smcFunc['db_query']('', '
  1288. SELECT id_msg
  1289. FROM {db_prefix}messages
  1290. WHERE id_msg = 1
  1291. AND modified_time = 0
  1292. LIMIT 1',
  1293. array(
  1294. 'db_error_skip' => true,
  1295. )
  1296. );
  1297. if ($smcFunc['db_num_rows']($request) > 0)
  1298. updateStats('subject', 1, htmlspecialchars($txt['default_topic_subject']));
  1299. $smcFunc['db_free_result']($request);
  1300. // Now is the perfect time to fetch the SM files.
  1301. require_once($sourcedir . '/ScheduledTasks.php');
  1302. // Sanity check that they loaded earlier!
  1303. if (isset($modSettings['recycle_board']))
  1304. {
  1305. $forum_version = $current_smf_version; // The variable is usually defined in index.php so lets just use our variable to do it for us.
  1306. scheduled_fetchSMfiles(); // Now go get those files!
  1307. // We've just installed!
  1308. $user_info['ip'] = $_SERVER['REMOTE_ADDR'];
  1309. $user_info['id'] = isset($incontext['member_id']) ? $incontext['member_id'] : 0;
  1310. logAction('install', array('version' => $forum_version), 'admin');
  1311. }
  1312. // Check if we need some stupid MySQL fix.
  1313. $server_version = $smcFunc['db_server_info']();
  1314. if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51')))
  1315. updateSettings(array('db_mysql_group_by_fix' => '1'));
  1316. // Some final context for the template.
  1317. $incontext['dir_still_writable'] = is_writable(dirname(__FILE__)) && substr(__FILE__, 1, 2) != ':\\';
  1318. $incontext['probably_delete_install'] = isset($_SESSION['installer_temp_ftp']) || is_writable(dirname(__FILE__)) || is_writable(__FILE__);
  1319. return false;
  1320. }
  1321. // http://www.faqs.org/rfcs/rfc959.html
  1322. class ftp_connection
  1323. {
  1324. var $connection = 'no_connection', $error = false, $last_message, $pasv = array();
  1325. // Create a new FTP connection...
  1326. function ftp_connection($ftp_server, $ftp_port = 21, $ftp_user = 'anonymous', $ftp_pass = 'ftpclient@simplemachines.org')
  1327. {
  1328. if ($ftp_server !== null)
  1329. $this->connect($ftp_server, $ftp_port, $ftp_user, $ftp_pass);
  1330. }
  1331. function connect($ftp_server, $ftp_port = 21, $ftp_user = 'anonymous', $ftp_pass = 'ftpclient@simplemachines.org')
  1332. {
  1333. if (substr($ftp_server, 0, 6) == 'ftp://')
  1334. $ftp_server = substr($ftp_server, 6);
  1335. elseif (substr($ftp_server, 0, 7) == 'ftps://')
  1336. $ftp_server = 'ssl://' . substr($ftp_server, 7);
  1337. if (substr($ftp_server, 0, 7) == 'http://')
  1338. $ftp_server = substr($ftp_server, 7);
  1339. $ftp_server = strtr($ftp_server, array('/' => '', ':' => '', '@' => ''));
  1340. // Connect to the FTP server.
  1341. $this->connection = @fsockopen($ftp_server, $ftp_port, $err, $err, 5);
  1342. if (!$this->connection)
  1343. {
  1344. $this->error = 'bad_server';
  1345. return;
  1346. }
  1347. // Get the welcome message...
  1348. if (!$this->check_response(220))
  1349. {
  1350. $this->error = 'bad_response';
  1351. return;
  1352. }
  1353. // Send the username, it should ask for a password.
  1354. fwrite($this->connection, 'USER ' . $ftp_user . "\r\n");
  1355. if (!$this->check_response(331))
  1356. {
  1357. $this->error = 'bad_username';
  1358. return;
  1359. }
  1360. // Now send the password... and hope it goes okay.
  1361. fwrite($this->connection, 'PASS ' . $ftp_pass . "\r\n");
  1362. if (!$this->check_response(230))
  1363. {
  1364. $this->error = 'bad_password';
  1365. return;
  1366. }
  1367. }
  1368. function chdir($ftp_path)
  1369. {
  1370. if (!is_resource($this->connection))
  1371. return false;
  1372. // No slash on the end, please...
  1373. if (substr($ftp_path, -1) == '/')
  1374. $ftp_path = substr($ftp_path, 0, -1);
  1375. fwrite($this->connection, 'CWD ' . $ftp_path . "\r\n");
  1376. if (!$this->check_response(250))
  1377. {
  1378. $this->error = 'bad_path';
  1379. return false;
  1380. }
  1381. return true;
  1382. }
  1383. function chmod($ftp_file, $chmod)
  1384. {
  1385. if (!is_resource($this->connection))
  1386. return false;
  1387. // Convert the chmod value from octal (0777) to text ("777")
  1388. fwrite($this->connection, 'SITE CHMOD ' . decoct($chmod) . ' ' . $ftp_file . "\r\n");
  1389. if (!$this->check_response(200))
  1390. {
  1391. $this->error = 'bad_file';
  1392. return false;
  1393. }
  1394. return true;
  1395. }
  1396. function unlink($ftp_file)
  1397. {
  1398. // We are actually connected, right?
  1399. if (!is_resource($this->connection))
  1400. return false;
  1401. // Delete file X.
  1402. fwrite($this->connection, 'DELE ' . $ftp_file . "\r\n");
  1403. if (!$this->check_response(250))
  1404. {
  1405. fwrite($this->connection, 'RMD ' . $ftp_file . "\r\n");
  1406. // Still no love?
  1407. if (!$this->check_response(250))
  1408. {
  1409. $this->error = 'bad_file';
  1410. return false;
  1411. }
  1412. }
  1413. return true;
  1414. }
  1415. function check_response($desired)
  1416. {
  1417. // Wait for a response that isn't continued with -, but don't wait too long.
  1418. $time = time();
  1419. do
  1420. $this->last_message = fgets($this->connection, 1024);
  1421. while (substr($this->last_message, 3, 1) != ' ' && time() - $time < 5);
  1422. // Was the desired response returned?
  1423. return is_array($desired) ? in_array(substr($this->last_message, 0, 3), $desired) : substr($this->last_message, 0, 3) == $desired;
  1424. }
  1425. function passive()
  1426. {
  1427. // We can't create a passive data connection without a primary one first being there.
  1428. if (!is_resource($this->connection))
  1429. return false;
  1430. // Request a passive connection - this means, we'll talk to you, you don't talk to us.
  1431. @fwrite($this->connection, "PASV\r\n");
  1432. $time = time();
  1433. do
  1434. $response = fgets($this->connection, 1024);
  1435. while (substr($response, 3, 1) != ' ' && time() - $time < 5);
  1436. // If it's not 227, we weren't given an IP and port, which means it failed.
  1437. if (substr($response, 0, 4) != '227 ')
  1438. {
  1439. $this->error = 'bad_response';
  1440. return false;
  1441. }
  1442. // Snatch the IP and port information, or die horribly trying...
  1443. if (preg_match('~\((\d+),\s*(\d+),\s*(\d+),\s*(\d+),\s*(\d+)(?:,\s*(\d+))\)~', $response, $match) == 0)
  1444. {
  1445. $this->error = 'bad_response';
  1446. return false;
  1447. }
  1448. // This is pretty simple - store it for later use ;)
  1449. $this->pasv = array('ip' => $match[1] . '.' . $match[2] . '.' . $match[3] . '.' . $match[4], 'port' => $match[5] * 256 + $match[6]);
  1450. return true;
  1451. }
  1452. function create_file($ftp_file)
  1453. {
  1454. // First, we have to be connected... very important.
  1455. if (!is_resource($this->connection))
  1456. return false;
  1457. // I'd like one passive mode, please!
  1458. if (!$this->passive())
  1459. return false;
  1460. // Seems logical enough, so far...
  1461. fwrite($this->connection, 'STOR ' . $ftp_file . "\r\n");
  1462. // Okay, now we connect to the data port. If it doesn't work out, it's probably "file already exists", etc.
  1463. $fp = @fsockopen($this->pasv['ip'], $this->pasv['port'], $err, $err, 5);
  1464. if (!$fp || !$this->check_response(150))
  1465. {
  1466. $this->error = 'bad_file';
  1467. @fclose($fp);
  1468. return false;
  1469. }
  1470. // This may look strange, but we're just closing it to indicate a zero-byte upload.
  1471. fclose($fp);
  1472. if (!$this->check_response(226))
  1473. {
  1474. $this->error = 'bad_response';
  1475. return false;
  1476. }
  1477. return true;
  1478. }
  1479. function list_dir($ftp_path = '', $search = false)
  1480. {
  1481. // Are we even connected...?
  1482. if (!is_resource($this->connection))
  1483. return false;
  1484. // Passive... non-agressive...
  1485. if (!$this->passive())
  1486. return false;
  1487. // Get the listing!
  1488. fwrite($this->connection, 'LIST -1' . ($search ? 'R' : '') . ($ftp_path == '' ? '' : ' ' . $ftp_path) . "\r\n");
  1489. // Connect, assuming we've got a connection.
  1490. $fp = @fsockopen($this->pasv['ip'], $this->pasv['port'], $err, $err, 5);
  1491. if (!$fp || !$this->check_response(array(150, 125)))
  1492. {
  1493. $this->error = 'bad_response';
  1494. @fclose($fp);
  1495. return false;
  1496. }
  1497. // Read in the file listing.
  1498. $data = '';
  1499. while (!feof($fp))
  1500. $data .= fread($fp, 4096);
  1501. fclose($fp);
  1502. // Everything go okay?
  1503. if (!$this->check_response(226))
  1504. {
  1505. $this->error = 'bad_response';
  1506. return false;
  1507. }
  1508. return $data;
  1509. }
  1510. function locate($file, $listing = null)
  1511. {
  1512. if ($listing === null)
  1513. $listing = $this->list_dir('', true);
  1514. $listing = explode("\n", $listing);
  1515. @fwrite($this->connection, "PWD\r\n");
  1516. $time = time();
  1517. do
  1518. $response = fgets($this->connection, 1024);
  1519. while (substr($response, 3, 1) != ' ' && time() - $time < 5);
  1520. // Check for 257!
  1521. if (preg_match('~^257 "(.+?)" ~', $response, $match) != 0)
  1522. $current_dir = strtr($match[1], array('""' => '"'));
  1523. else
  1524. $current_dir = '';
  1525. for ($i = 0, $n = count($listing); $i < $n; $i++)
  1526. {
  1527. if (trim($listing[$i]) == '' && isset($listing[$i + 1]))
  1528. {
  1529. $current_dir = substr(trim($listing[++$i]), 0, -1);
  1530. $i++;
  1531. }
  1532. // Okay, this file's name is:
  1533. $listing[$i] = $current_dir . '/' . trim(strlen($listing[$i]) > 30 ? strrchr($listing[$i], ' ') : $listing[$i]);
  1534. if (substr($file, 0, 1) == '*' && substr($listing[$i], -(strlen($file) - 1)) == substr($file, 1))
  1535. return $listing[$i];
  1536. if (substr($file, -1) == '*' && substr($listing[$i], 0, strlen($file) - 1) == substr($file, 0, -1))
  1537. return $listing[$i];
  1538. if (basename($listing[$i]) == $file || $listing[$i] == $file)
  1539. return $listing[$i];
  1540. }
  1541. return false;
  1542. }
  1543. function create_dir($ftp_dir)
  1544. {
  1545. // We must be connected to the server to do something.
  1546. if (!is_resource($this->connection))
  1547. return false;
  1548. // Make this new beautiful directory!
  1549. fwrite($this->connection, 'MKD ' . $ftp_dir . "\r\n");
  1550. if (!$this->check_response(257))
  1551. {
  1552. $this->error = 'bad_file';
  1553. return false;
  1554. }
  1555. return true;
  1556. }
  1557. function detect_path($filesystem_path, $lookup_file = null)
  1558. {
  1559. $username = '';
  1560. if (isset($_SERVER['DOCUMENT_ROOT']))
  1561. {
  1562. if (preg_match('~^/home[2]?/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match))
  1563. {
  1564. $username = $match[1];
  1565. $path = strtr($_SERVER['DOCUMENT_ROOT'], array('/home/' . $match[1] . '/' => '', '/home2/' . $match[1] . '/' => ''));
  1566. if (substr($path, -1) == '/')
  1567. $path = substr($path, 0, -1);
  1568. if (strlen(dirname($_SERVER['PHP_SELF'])) > 1)
  1569. $path .= dirname($_SERVER['PHP_SELF']);
  1570. }
  1571. elseif (substr($filesystem_path, 0, 9) == '/var/www/')
  1572. $path = substr($filesystem_path, 8);
  1573. else
  1574. $path = strtr(strtr($filesystem_path, array('\\' => '/')), array($_SERVER['DOCUMENT_ROOT'] => ''));
  1575. }
  1576. else
  1577. $path = '';
  1578. if (is_resource($this->connection) && $this->list_dir($path) == '')
  1579. {
  1580. $data = $this->list_dir('', true);
  1581. if ($lookup_file === null)
  1582. $lookup_file = $_SERVER['PHP_SELF'];
  1583. $found_path = dirname($this->locate('*' . basename(dirname($lookup_file)) . '/' . basename($lookup_file), $data));
  1584. if ($found_path == false)
  1585. $found_path = dirname($this->locate(basename($lookup_file)));
  1586. if ($found_path != false)
  1587. $path = $found_path;
  1588. }
  1589. elseif (is_resource($this->connection))
  1590. $found_path = true;
  1591. return array($username, $path, isset($found_path));
  1592. }
  1593. function close()
  1594. {
  1595. // Goodbye!
  1596. fwrite($this->connection, "QUIT\r\n");
  1597. fclose($this->connection);
  1598. return true;
  1599. }
  1600. }
  1601. function updateSettingsFile($vars)
  1602. {
  1603. // Modify Settings.php.
  1604. $settingsArray = file(dirname(__FILE__) . '/Settings.php');
  1605. // @todo Do we just want to read the file in clean, and split it this way always?
  1606. if (count($settingsArray) == 1)
  1607. $settingsArray = preg_split('~[\r\n]~', $settingsArray[0]);
  1608. for ($i = 0, $n = count($settingsArray); $i < $n; $i++)
  1609. {
  1610. // Remove the redirect...
  1611. if (trim($settingsArray[$i]) == 'if (file_exists(dirname(__FILE__) . \'/install.php\'))' && trim($settingsArray[$i + 1]) == '{' && trim($settingsArray[$i + 3]) == '}')
  1612. {
  1613. // Get the four lines to nothing.
  1614. $settingsArray[$i] = '';
  1615. $settingsArray[++$i] = '';
  1616. $settingsArray[++$i] = '';
  1617. $settingsArray[++$i] = '';
  1618. continue;
  1619. }
  1620. if (trim($settingsArray[$i]) == '?' . '>')
  1621. $settingsArray[$i] = '';
  1622. // Don't trim or bother with it if it's not a variable.
  1623. if (substr($settingsArray[$i], 0, 1) != '$')
  1624. continue;
  1625. $settingsArray[$i] = rtrim($settingsArray[$i]) . "\n";
  1626. foreach ($vars as $var => $val)
  1627. if (strncasecmp($settingsArray[$i], '$' . $var, 1 + strlen($var)) == 0)
  1628. {
  1629. $comment = strstr($settingsArray[$i], '#');
  1630. $settingsArray[$i] = '$' . $var . ' = \'' . $val . '\';' . ($comment != '' ? "\t\t" . $comment : "\n");
  1631. unset($vars[$var]);
  1632. }
  1633. }
  1634. // Uh oh... the file wasn't empty... was it?
  1635. if (!empty($vars))
  1636. {
  1637. $settingsArray[$i++] = '';
  1638. foreach ($vars as $var => $val)
  1639. $settingsArray[$i++] = '$' . $var . ' = \'' . $val . '\';' . "\n";
  1640. }
  1641. // Blank out the file - done to fix a oddity with some servers.
  1642. $fp = @fopen(dirname(__FILE__) . '/Settings.php', 'w');
  1643. if (!$fp)
  1644. return false;
  1645. fclose($fp);
  1646. $fp = fopen(dirname(__FILE__) . '/Settings.php', 'r+');
  1647. // Gotta have one of these ;)
  1648. if (trim($settingsArray[0]) != '<?php')
  1649. fwrite($fp, "<?php\n");
  1650. $lines = count($settingsArray);
  1651. for ($i = 0; $i < $lines - 1; $i++)
  1652. {
  1653. // Don't just write a bunch of blank lines.
  1654. if ($settingsArray[$i] != '' || @$settingsArray[$i - 1] != '')
  1655. fwrite($fp, strtr($settingsArray[$i], "\r", ''));
  1656. }
  1657. fwrite($fp, $settingsArray[$i] . '?' . '>');
  1658. fclose($fp);
  1659. return true;
  1660. }
  1661. function updateDbLastError()
  1662. {
  1663. // Write out the db_last_error file with the error timestamp
  1664. file_put_contents(dirname(__FILE__) . '/db_last_error.php', '<' . '?' . "php\n" . '$db_last_error = 0;' . "\n" . '?' . '>');
  1665. return true;
  1666. }
  1667. // Create an .htaccess file to prevent mod_security. SMF has filtering built-in.
  1668. function fixModSecurity()
  1669. {
  1670. $htaccess_addition = '
  1671. <IfModule mod_security.c>
  1672. # Turn off mod_security filtering. SMF is a big boy, it doesn\'t need its hands held.
  1673. SecFilterEngine Off
  1674. # The below probably isn\'t needed, but better safe than sorry.
  1675. SecFilterScanPOST Off
  1676. </IfModule>';
  1677. if (!function_exists('apache_get_modules') || !in_array('mod_security', apache_get_modules()))
  1678. return true;
  1679. elseif (file_exists(dirname(__FILE__) . '/.htaccess') && is_writable(dirname(__FILE__) . '/.htaccess'))
  1680. {
  1681. $current_htaccess = implode('', file(dirname(__FILE__) . '/.htaccess'));
  1682. // Only change something if mod_security hasn't been addressed yet.
  1683. if (strpos($current_htaccess, '<IfModule mod_security.c>') === false)
  1684. {
  1685. if ($ht_handle = fopen(dirname(__FILE__) . '/.htaccess', 'a'))
  1686. {
  1687. fwrite($ht_handle, $htaccess_addition);
  1688. fclose($ht_handle);
  1689. return true;
  1690. }
  1691. else
  1692. return false;
  1693. }
  1694. else
  1695. return true;
  1696. }
  1697. elseif (file_exists(dirname(__FILE__) . '/.htaccess'))
  1698. return strpos(implode('', file(dirname(__FILE__) . '/.htaccess')), '<IfModule mod_security.c>') !== false;
  1699. elseif (is_writable(dirname(__FILE__)))
  1700. {
  1701. if ($ht_handle = fopen(dirname(__FILE__) . '/.htaccess', 'w'))
  1702. {
  1703. fwrite($ht_handle, $htaccess_addition);
  1704. fclose($ht_handle);
  1705. return true;
  1706. }
  1707. else
  1708. return false;
  1709. }
  1710. else
  1711. return false;
  1712. }
  1713. function template_install_above()
  1714. {
  1715. global $incontext, $txt, $smfsite, $installurl;
  1716. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  1717. <html xmlns="http://www.w3.org/1999/xhtml"', !empty($txt['lang_rtl']) ? ' dir="rtl"' : '', '>
  1718. <head>
  1719. <meta http-equiv="Content-Type" content="text/html; charset=', isset($txt['lang_character_set']) ? $txt['lang_character_set'] : 'ISO-8859-1', '" />
  1720. <meta name="robots" content="noindex" />
  1721. <title>', $txt['smf_installer'], '</title>
  1722. <link rel="stylesheet" type="text/css" href="Themes/default/css/index.css?alp21" />
  1723. <link rel="stylesheet" type="text/css" href="Themes/default/css/install.css?alp21" />
  1724. <script type="text/javascript" src="Themes/default/scripts/script.js"></script>
  1725. </head>
  1726. <body>
  1727. <div id="header">
  1728. <div class="frame">
  1729. <h1 class="forumtitle">', $txt['smf_installer'], '</h1>
  1730. <img id="smflogo" src="Themes/default/images/smflogo.png" alt="Simple Machines Forum" title="Simple Machines Forum" />
  1731. </div>
  1732. </div>
  1733. <div id="wrapper">
  1734. <div id="upper_section">
  1735. <div id="inner_section">
  1736. <div id="inner_wrap">';
  1737. // Have we got a language drop down - if so do it on the first step only.
  1738. if (!empty($incontext['detected_languages']) && count($incontext['detected_languages']) > 1 && $incontext['current_step'] == 0)
  1739. {
  1740. echo '
  1741. <div class="news">
  1742. <form action="', $installurl, '" method="get">
  1743. <label for="installer_language">', $txt['installer_language'], ':</label>
  1744. <select id="installer_language" name="lang_file" onchange="location.href = \'', $installurl, '?lang_file=\' + this.options[this.selectedIndex].value;">';
  1745. foreach ($incontext['detected_languages'] as $lang => $name)
  1746. echo '
  1747. <option', isset($_SESSION['installer_temp_lang']) && $_SESSION['installer_temp_lang'] == $lang ? ' selected="selected"' : '', ' value="', $lang, '">', $name, '</option>';
  1748. echo '
  1749. </select>
  1750. <noscript><input type="submit" value="', $txt['installer_language_set'], '" class="button_submit" /></noscript>
  1751. </form>
  1752. </div>
  1753. <hr class="clear" />';
  1754. }
  1755. echo '
  1756. </div>
  1757. </div>
  1758. </div>
  1759. <div id="content_section">
  1760. <div id="main_content_section">
  1761. <div id="main_steps">
  1762. <h2>', $txt['upgrade_progress'], '</h2>
  1763. <ul>';
  1764. foreach ($incontext['steps'] as $num => $step)
  1765. echo '
  1766. <li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
  1767. echo '
  1768. </ul>
  1769. </div>
  1770. <div id="progress_bar">
  1771. <div id="overall_text">', $incontext['overall_percent'], '%</div>
  1772. <div id="overall_progress" style="width: ', $incontext['overall_percent'], '%;">&nbsp;</div>
  1773. <div class="overall_progress">', $txt['upgrade_overall_progress'], '</div>
  1774. </div>
  1775. <div id="main_screen" class="clear">
  1776. <h2>', $incontext['page_title'], '</h2>
  1777. <div class="panel">';
  1778. }
  1779. function template_install_below()
  1780. {
  1781. global $incontext, $txt;
  1782. if (!empty($incontext['continue']) || !empty($incontext['skip']))
  1783. {
  1784. echo '
  1785. <div class="clear">';
  1786. if (!empty($incontext['continue']))
  1787. echo '
  1788. <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '" onclick="return submitThisOnce(this);" class="button_submit" />';
  1789. if (!empty($incontext['skip']))
  1790. echo '
  1791. <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="return submitThisOnce(this);" class="button_submit" />';
  1792. echo '
  1793. </div>';
  1794. }
  1795. // Show the closing form tag and other data only if not in the last step
  1796. if (count($incontext['steps']) - 1 !== (int) $incontext['current_step'])
  1797. echo '
  1798. </form>';
  1799. echo '
  1800. </div>
  1801. </div>
  1802. </div>
  1803. </div>
  1804. </div>
  1805. <div id="footer_section">
  1806. <div class="frame">
  1807. <ul class="reset">
  1808. <li class="copyright"><a href="http://www.simplemachines.org/" title="Simple Machines Forum" target="_blank" class="new_win">SMF &copy; 2011, Simple Machines</a></li>
  1809. </ul>
  1810. </div>
  1811. </div>
  1812. </body>
  1813. </html>';
  1814. }
  1815. // Welcome them to the wonderful world of SMF!
  1816. function template_welcome_message()
  1817. {
  1818. global $incontext, $installurl, $txt;
  1819. echo '
  1820. <script type="text/javascript" src="http://www.simplemachines.org/smf/current-version.js?version=' . $GLOBALS['current_smf_version'] . '"></script>
  1821. <form action="', $incontext['form_url'], '" method="post">
  1822. <p>', sprintf($txt['install_welcome_desc'], $GLOBALS['current_smf_version']), '</p>
  1823. <div id="version_warning" style="margin: 2ex; padding: 2ex; border: 2px dashed #a92174; color: black; background-color: #fbbbe2; display: none;">
  1824. <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
  1825. <strong style="text-decoration: underline;">', $txt['error_warning_notice'], '</strong><br />
  1826. <div style="padding-left: 6ex;">
  1827. ', sprintf($txt['error_script_outdated'], '<em id="smfVersion" style="white-space: nowrap;">??</em>', '<em id="yourVersion" style="white-space: nowrap;">' . $GLOBALS['current_smf_version'] . '</em>'), '
  1828. </div>
  1829. </div>';
  1830. // Show the warnings, or not.
  1831. if (template_warning_divs())
  1832. echo '
  1833. <h3>', $txt['install_all_lovely'], '</h3>';
  1834. // Say we want the continue button!
  1835. if (empty($incontext['error']))
  1836. $incontext['continue'] = 1;
  1837. // For the latest version stuff.
  1838. echo '
  1839. <script type="text/javascript"><!-- // --><![CDATA[
  1840. // Latest version?
  1841. function smfCurrentVersion()
  1842. {
  1843. var smfVer, yourVer;
  1844. if (!(\'smfVersion\' in window))
  1845. return;
  1846. window.smfVersion = window.smfVersion.replace(/SMF\s?/g, \'\');
  1847. smfVer = document.getElementById("smfVersion");
  1848. yourVer = document.getElementById("yourVersion");
  1849. setInnerHTML(smfVer, window.smfVersion);
  1850. var currentVersion = getInnerHTML(yourVer);
  1851. if (currentVersion < window.smfVersion)
  1852. document.getElementById(\'version_warning\').style.display = \'\';
  1853. }
  1854. addLoadEvent(smfCurrentVersion);
  1855. // ]]></script>';
  1856. }
  1857. // A shortcut for any warning stuff.
  1858. function template_warning_divs()
  1859. {
  1860. global $txt, $incontext;
  1861. // Errors are very serious..
  1862. if (!empty($incontext['error']))
  1863. echo '
  1864. <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;">
  1865. <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
  1866. <strong style="text-decoration: underline;">', $txt['upgrade_critical_error'], '</strong><br />
  1867. <div style="padding-left: 6ex;">
  1868. ', $incontext['error'], '
  1869. </div>
  1870. </div>';
  1871. // A warning message?
  1872. elseif (!empty($incontext['warning']))
  1873. echo '
  1874. <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;">
  1875. <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
  1876. <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br />
  1877. <div style="padding-left: 6ex;">
  1878. ', $incontext['warning'], '
  1879. </div>
  1880. </div>';
  1881. return empty($incontext['error']) && empty($incontext['warning']);
  1882. }
  1883. function template_chmod_files()
  1884. {
  1885. global $txt, $incontext;
  1886. echo '
  1887. <p>', $txt['ftp_setup_why_info'], '</p>
  1888. <ul style="margin: 2.5ex; font-family: monospace;">
  1889. <li>', implode('</li>
  1890. <li>', $incontext['failed_files']), '</li>
  1891. </ul>';
  1892. // This is serious!
  1893. if (!template_warning_divs())
  1894. return;
  1895. echo '
  1896. <hr />
  1897. <p>', $txt['ftp_setup_info'], '</p>';
  1898. if (!empty($incontext['ftp_errors']))
  1899. echo '
  1900. <div class="error_message">
  1901. <div style="color: red;">
  1902. ', $txt['error_ftp_no_connect'], '<br />
  1903. <br />
  1904. <code>', implode('<br />', $incontext['ftp_errors']), '</code>
  1905. </div>
  1906. </div>
  1907. <br />';
  1908. echo '
  1909. <form action="', $incontext['form_url'], '" method="post">
  1910. <table width="520" cellspacing="0" cellpadding="0" border="0" align="center" style="margin: 1em 0;">
  1911. <tr>
  1912. <td width="26%" valign="top" class="textbox"><label for="ftp_server">', $txt['ftp_server'], ':</label></td>
  1913. <td>
  1914. <div style="float: ', empty($txt['lang_rtl']) ? 'right' : 'left', '; margin-', empty($txt['lang_rtl']) ? 'right' : 'left', ': 1px;"><label for="ftp_port" class="textbox"><strong>', $txt['ftp_port'], ':&nbsp;</strong></label> <input type="text" size="3" name="ftp_port" id="ftp_port" value="', $incontext['ftp']['port'], '" class="input_text" /></div>
  1915. <input type="text" size="30" name="ftp_server" id="ftp_server" value="', $incontext['ftp']['server'], '" style="width: 70%;" class="input_text" />
  1916. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['ftp_server_info'], '</div>
  1917. </td>
  1918. </tr><tr>
  1919. <td width="26%" valign="top" class="textbox"><label for="ftp_username">', $txt['ftp_username'], ':</label></td>
  1920. <td>
  1921. <input type="text" size="50" name="ftp_username" id="ftp_username" value="', $incontext['ftp']['username'], '" style="width: 99%;" class="input_text" />
  1922. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['ftp_username_info'], '</div>
  1923. </td>
  1924. </tr><tr>
  1925. <td width="26%" valign="top" class="textbox"><label for="ftp_password">', $txt['ftp_password'], ':</label></td>
  1926. <td>
  1927. <input type="password" size="50" name="ftp_password" id="ftp_password" style="width: 99%;" class="input_password" />
  1928. <div style="font-size: smaller; margin-bottom: 3ex;">', $txt['ftp_password_info'], '</div>
  1929. </td>
  1930. </tr><tr>
  1931. <td width="26%" valign="top" class="textbox"><label for="ftp_path">', $txt['ftp_path'], ':</label></td>
  1932. <td style="padding-bottom: 1ex;">
  1933. <input type="text" size="50" name="ftp_path" id="ftp_path" value="', $incontext['ftp']['path'], '" style="width: 99%;" class="input_text" />
  1934. <div style="font-size: smaller; margin-bottom: 2ex;">', $incontext['ftp']['path_msg'], '</div>
  1935. </td>
  1936. </tr>
  1937. </table>
  1938. <div style="margin: 1ex; margin-top: 1ex; text-align: ', empty($txt['lang_rtl']) ? 'right' : 'left', ';"><input type="submit" value="', $txt['ftp_connect'], '" onclick="return submitThisOnce(this);" class="button_submit" /></div>
  1939. </form>
  1940. <a href="', $incontext['form_url'], '">', $txt['error_message_click'], '</a> ', $txt['ftp_setup_again'];
  1941. }
  1942. // Get the database settings prepared.
  1943. function template_database_settings()
  1944. {
  1945. global $incontext, $installurl, $txt;
  1946. echo '
  1947. <form action="', $incontext['form_url'], '" method="post">
  1948. <p>', $txt['db_settings_info'], '</p>';
  1949. template_warning_divs();
  1950. echo '
  1951. <table width="100%" cellpadding="0" cellspacing="0" border="0" style="margin: 1em 0;">';
  1952. // More than one database type?
  1953. if (count($incontext['supported_databases']) > 1)
  1954. {
  1955. echo '
  1956. <tr>
  1957. <td width="20%" valign="top" class="textbox"><label for="db_type_input">', $txt['db_settings_type'], ':</label></td>
  1958. <td>
  1959. <select name="db_type" id="db_type_input" onchange="toggleDBInput();">';
  1960. foreach ($incontext['supported_databases'] as $key => $db)
  1961. echo '
  1962. <option value="', $key, '"', isset($_POST['db_type']) && $_POST['db_type'] == $key ? ' selected="selected"' : '', '>', $db['name'], '</option>';
  1963. echo '
  1964. </select><div id="db_sqlite_warning" style="color: blue; display: none;" class="smalltext">', $txt['db_sqlite_warning'], '</div>
  1965. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_type_info'], '</div>
  1966. </td>
  1967. </tr>';
  1968. }
  1969. else
  1970. {
  1971. echo '
  1972. <tr style="display: none;">
  1973. <td>
  1974. <input type="hidden" name="db_type" value="', $incontext['db']['type'], '" />
  1975. </td>
  1976. </tr>';
  1977. }
  1978. echo '
  1979. <tr id="db_server_contain">
  1980. <td width="20%" valign="top" class="textbox"><label for="db_server_input">', $txt['db_settings_server'], ':</label></td>
  1981. <td>
  1982. <input type="text" name="db_server" id="db_server_input" value="', $incontext['db']['server'], '" size="30" class="input_text" /><br />
  1983. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_server_info'], '</div>
  1984. </td>
  1985. </tr><tr id="db_user_contain">
  1986. <td valign="top" class="textbox"><label for="db_user_input">', $txt['db_settings_username'], ':</label></td>
  1987. <td>
  1988. <input type="text" name="db_user" id="db_user_input" value="', $incontext['db']['user'], '" size="30" class="input_text" /><br />
  1989. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_username_info'], '</div>
  1990. </td>
  1991. </tr><tr id="db_passwd_contain">
  1992. <td valign="top" class="textbox"><label for="db_passwd_input">', $txt['db_settings_password'], ':</label></td>
  1993. <td>
  1994. <input type="password" name="db_passwd" id="db_passwd_input" value="', $incontext['db']['pass'], '" size="30" class="input_password" /><br />
  1995. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_password_info'], '</div>
  1996. </td>
  1997. </tr><tr id="db_name_contain">
  1998. <td valign="top" class="textbox"><label for="db_name_input">', $txt['db_settings_database'], ':</label></td>
  1999. <td>
  2000. <input type="text" name="db_name" id="db_name_input" value="', empty($incontext['db']['name']) ? 'smf' : $incontext['db']['name'], '" size="30" class="input_text" /><br />
  2001. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_database_info'], '
  2002. <span id="db_name_info_warning">', $txt['db_settings_database_info_note'], '</span></div>
  2003. </td>
  2004. </tr><tr id="db_filename_contain" style="display: none;">
  2005. <td valign="top" class="textbox"><label for="db_filename_input">', $txt['db_settings_database_file'], ':</label></td>
  2006. <td>
  2007. <input type="text" name="db_filename" id="db_filename_input" value="', empty($incontext['db']['name']) ? dirname(__FILE__) . '/smf_' . substr(md5(microtime()), 0, 10) : stripslashes($incontext['db']['name']), '" size="30" class="input_text" /><br />
  2008. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_database_file_info'], '</div>
  2009. </td>
  2010. </tr><tr>
  2011. <td valign="top" class="textbox"><label for="db_prefix_input">', $txt['db_settings_prefix'], ':</label></td>
  2012. <td>
  2013. <input type="text" name="db_prefix" id="db_prefix_input" value="', $incontext['db']['prefix'], '" size="30" class="input_text" /><br />
  2014. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['db_settings_prefix_info'], '</div>
  2015. </td>
  2016. </tr>
  2017. </table>';
  2018. // Allow the toggling of input boxes for SQLite etc.
  2019. echo '
  2020. <script type="text/javascript"><!-- // --><![CDATA[
  2021. function toggleDBInput()
  2022. {
  2023. // What state is it?';
  2024. if (!isset($incontext['supported_databases']['sqlite']))
  2025. echo '
  2026. var showAll = true;';
  2027. elseif (count($incontext['supported_databases']) < 2)
  2028. echo '
  2029. var showAll = false;';
  2030. // If we have more than one DB including SQLite, what should we be doing?
  2031. else
  2032. echo '
  2033. var showAll = document.getElementById(\'db_type_input\').value == \'sqlite\' ? false : true;';
  2034. echo '
  2035. document.getElementById(\'db_passwd_contain\').style.display = showAll ? \'\' : \'none\';
  2036. document.getElementById(\'db_server_contain\').style.display = showAll ? \'\' : \'none\';
  2037. document.getElementById(\'db_user_contain\').style.display = showAll ? \'\' : \'none\';
  2038. document.getElementById(\'db_name_contain\').style.display = showAll ? \'\' : \'none\';
  2039. document.getElementById(\'db_filename_contain\').style.display = !showAll ? \'\' : \'none\';
  2040. document.getElementById(\'db_sqlite_warning\').style.display = !showAll ? \'\' : \'none\';
  2041. if (document.getElementById(\'db_type_input\').value == \'postgresql\')
  2042. document.getElementById(\'db_name_info_warning\').style.display = \'none\';
  2043. else
  2044. document.getElementById(\'db_name_info_warning\').style.display = \'\';
  2045. }
  2046. toggleDBInput();
  2047. // ]]></script>';
  2048. }
  2049. // Stick in their forum settings.
  2050. function template_forum_settings()
  2051. {
  2052. global $incontext, $installurl, $txt;
  2053. echo '
  2054. <form action="', $incontext['form_url'], '" method="post">
  2055. <h3>', $txt['install_settings_info'], '</h3>';
  2056. template_warning_divs();
  2057. echo '
  2058. <table width="100%" cellpadding="0" cellspacing="0" border="0" style="margin: 1em 0;">
  2059. <tr>
  2060. <td width="20%" valign="top" class="textbox"><label for="mbname_input">', $txt['install_settings_name'], ':</label></td>
  2061. <td>
  2062. <input type="text" name="mbname" id="mbname_input" value="', $txt['install_settings_name_default'], '" size="65" class="input_text" />
  2063. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['install_settings_name_info'], '</div>
  2064. </td>
  2065. </tr><tr>
  2066. <td valign="top" class="textbox"><label for="boardurl_input">', $txt['install_settings_url'], ':</label></td>
  2067. <td>
  2068. <input type="text" name="boardurl" id="boardurl_input" value="', $incontext['detected_url'], '" size="65" class="input_text" /><br />
  2069. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['install_settings_url_info'], '</div>
  2070. </td>
  2071. </tr><tr>
  2072. <td valign="top" class="textbox">', $txt['install_settings_compress'], ':</td>
  2073. <td>
  2074. <input type="checkbox" name="compress" id="compress_check" checked="checked" class="input_check" /> <label for="compress_check">', $txt['install_settings_compress_title'], '</label><br />
  2075. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['install_settings_compress_info'], '</div>
  2076. </td>
  2077. </tr><tr>
  2078. <td valign="top" class="textbox">', $txt['install_settings_dbsession'], ':</td>
  2079. <td>
  2080. <input type="checkbox" name="dbsession" id="dbsession_check" checked="checked" class="input_check" /> <label for="dbsession_check">', $txt['install_settings_dbsession_title'], '</label><br />
  2081. <div style="font-size: smaller; margin-bottom: 2ex;">', $incontext['test_dbsession'] ? $txt['install_settings_dbsession_info1'] : $txt['install_settings_dbsession_info2'], '</div>
  2082. </td>
  2083. </tr>
  2084. <tr>
  2085. <td valign="top" class="textbox">', $txt['install_settings_utf8'], ':</td>
  2086. <td>
  2087. <input type="checkbox" name="utf8" id="utf8_check"', $incontext['utf8_default'] ? ' checked="checked"' : '', ' class="input_check"', $incontext['utf8_required'] ? ' disabled="disabled"' : '', ' /> <label for="utf8_check">', $txt['install_settings_utf8_title'], '</label><br />
  2088. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['install_settings_utf8_info'], '</div>
  2089. </td>
  2090. </tr>
  2091. <tr>
  2092. <td valign="top" class="textbox">', $txt['install_settings_stats'], ':</td>
  2093. <td>
  2094. <input type="checkbox" name="stats" id="stats_check" class="input_check" /> <label for="stats_check">', $txt['install_settings_stats_title'], '</label><br />
  2095. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['install_settings_stats_info'], '</div>
  2096. </td>
  2097. </tr>
  2098. </table>';
  2099. }
  2100. // Show results of the database population.
  2101. function template_populate_database()
  2102. {
  2103. global $incontext, $installurl, $txt;
  2104. echo '
  2105. <form action="', $incontext['form_url'], '" method="post">
  2106. <p>', !empty($incontext['was_refresh']) ? $txt['user_refresh_install_desc'] : $txt['db_populate_info'], '</p>';
  2107. if (!empty($incontext['sql_results']))
  2108. {
  2109. echo '
  2110. <ul>
  2111. <li>', implode('</li><li>', $incontext['sql_results']), '</li>
  2112. </ul>';
  2113. }
  2114. if (!empty($incontext['failures']))
  2115. {
  2116. echo '
  2117. <div style="color: red;">', $txt['error_db_queries'], '</div>
  2118. <ul>';
  2119. foreach ($incontext['failures'] as $line => $fail)
  2120. echo '
  2121. <li><strong>', $txt['error_db_queries_line'], $line + 1, ':</strong> ', nl2br(htmlspecialchars($fail)), '</li>';
  2122. echo '
  2123. </ul>';
  2124. }
  2125. echo '
  2126. <p>', $txt['db_populate_info2'], '</p>';
  2127. template_warning_divs();
  2128. echo '
  2129. <input type="hidden" name="pop_done" value="1" />';
  2130. }
  2131. // Create the admin account.
  2132. function template_admin_account()
  2133. {
  2134. global $incontext, $installurl, $txt;
  2135. echo '
  2136. <form action="', $incontext['form_url'], '" method="post">
  2137. <p>', $txt['user_settings_info'], '</p>';
  2138. template_warning_divs();
  2139. echo '
  2140. <table width="100%" cellspacing="0" cellpadding="0" border="0" style="margin: 2em 0;">
  2141. <tr>
  2142. <td width="18%" valign="top" class="textbox"><label for="username">', $txt['user_settings_username'], ':</label></td>
  2143. <td>
  2144. <input type="text" name="username" id="username" value="', $incontext['username'], '" size="40" class="input_text" />
  2145. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['user_settings_username_info'], '</div>
  2146. </td>
  2147. </tr><tr>
  2148. <td valign="top" class="textbox"><label for="password1">', $txt['user_settings_password'], ':</label></td>
  2149. <td>
  2150. <input type="password" name="password1" id="password1" size="40" class="input_password" />
  2151. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['user_settings_password_info'], '</div>
  2152. </td>
  2153. </tr><tr>
  2154. <td valign="top" class="textbox"><label for="password2">', $txt['user_settings_again'], ':</label></td>
  2155. <td>
  2156. <input type="password" name="password2" id="password2" size="40" class="input_password" />
  2157. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['user_settings_again_info'], '</div>
  2158. </td>
  2159. </tr><tr>
  2160. <td valign="top" class="textbox"><label for="email">', $txt['user_settings_email'], ':</label></td>
  2161. <td>
  2162. <input type="text" name="email" id="email" value="', $incontext['email'], '" size="40" class="input_text" />
  2163. <div style="font-size: smaller; margin-bottom: 2ex;">', $txt['user_settings_email_info'], '</div>
  2164. </td>
  2165. </tr>
  2166. </table>';
  2167. if ($incontext['require_db_confirm'])
  2168. echo '
  2169. <h2>', $txt['user_settings_database'], '</h2>
  2170. <p>', $txt['user_settings_database_info'], '</p>
  2171. <div style="margin-bottom: 2ex; padding-', empty($txt['lang_rtl']) ? 'left' : 'right', ': 50px;">
  2172. <input type="password" name="password3" size="30" class="input_password" />
  2173. </div>';
  2174. }
  2175. // Tell them it's done, and to delete.
  2176. function template_delete_install()
  2177. {
  2178. global $incontext, $installurl, $txt, $boardurl;
  2179. echo '
  2180. <p>', $txt['congratulations_help'], '</p>';
  2181. template_warning_divs();
  2182. // Install directory still writable?
  2183. if ($incontext['dir_still_writable'])
  2184. echo '
  2185. <em>', $txt['still_writable'], '</em><br />
  2186. <br />';
  2187. // Don't show the box if it's like 99% sure it won't work :P.
  2188. if ($incontext['probably_delete_install'])
  2189. echo '
  2190. <div style="margin: 1ex; font-weight: bold;">
  2191. <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete();" class="input_check" /> ', $txt['delete_installer'], !isset($_SESSION['installer_temp_ftp']) ? ' ' . $txt['delete_installer_maybe'] : '', '</label>
  2192. </div>
  2193. <script type="text/javascript"><!-- // --><![CDATA[
  2194. function doTheDelete()
  2195. {
  2196. var theCheck = document.getElementById ? document.getElementById("delete_self") : document.all.delete_self;
  2197. var tempImage = new Image();
  2198. tempImage.src = "', $installurl, '?delete=1&ts_" + (new Date().getTime());
  2199. tempImage.width = 0;
  2200. theCheck.disabled = true;
  2201. }
  2202. // ]]></script>
  2203. <br />';
  2204. echo '
  2205. ', sprintf($txt['go_to_your_forum'], $boardurl . '/index.php'), '<br />
  2206. <br />
  2207. ', $txt['good_luck'];
  2208. }
  2209. ?>