PageRenderTime 41ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/setup-config.php

https://bitbucket.org/aqge/deptandashboard
PHP | 275 lines | 209 code | 21 blank | 45 comment | 15 complexity | a2aeebb46565fc66e4c89eca10926d24 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1
  1. <?php
  2. /**
  3. * Retrieves and creates the wp-config.php file.
  4. *
  5. * The permissions for the base directory must allow for writing files in order
  6. * for the wp-config.php to be created using this page.
  7. *
  8. * @internal This file must be parsable by PHP4.
  9. *
  10. * @package WordPress
  11. * @subpackage Administration
  12. */
  13. /**
  14. * We are installing.
  15. *
  16. * @package WordPress
  17. */
  18. define('WP_INSTALLING', true);
  19. /**
  20. * We are blissfully unaware of anything.
  21. */
  22. define('WP_SETUP_CONFIG', true);
  23. /**
  24. * Disable error reporting
  25. *
  26. * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
  27. */
  28. error_reporting(0);
  29. /**#@+
  30. * These three defines are required to allow us to use require_wp_db() to load
  31. * the database class while being wp-content/db.php aware.
  32. * @ignore
  33. */
  34. define('ABSPATH', dirname(dirname(__FILE__)).'/');
  35. define('WPINC', 'wp-includes');
  36. define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
  37. define('WP_DEBUG', false);
  38. /**#@-*/
  39. require_once(ABSPATH . WPINC . '/load.php');
  40. require_once(ABSPATH . WPINC . '/version.php');
  41. wp_check_php_mysql_versions();
  42. require_once(ABSPATH . WPINC . '/compat.php');
  43. require_once(ABSPATH . WPINC . '/functions.php');
  44. require_once(ABSPATH . WPINC . '/class-wp-error.php');
  45. if (!file_exists(ABSPATH . 'wp-config-sample.php'))
  46. wp_die('Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.');
  47. $configFile = file(ABSPATH . 'wp-config-sample.php');
  48. // Check if wp-config.php has been created
  49. if (file_exists(ABSPATH . 'wp-config.php'))
  50. wp_die("<p>The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>.</p>");
  51. // Check if wp-config.php exists above the root directory but is not part of another install
  52. if (file_exists(ABSPATH . '../wp-config.php') && ! file_exists(ABSPATH . '../wp-settings.php'))
  53. wp_die("<p>The file 'wp-config.php' already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>.</p>");
  54. if (isset($_GET['step']))
  55. $step = $_GET['step'];
  56. else
  57. $step = 0;
  58. /**
  59. * Display setup wp-config.php file header.
  60. *
  61. * @ignore
  62. * @since 2.3.0
  63. * @package WordPress
  64. * @subpackage Installer_WP_Config
  65. */
  66. function display_header() {
  67. header( 'Content-Type: text/html; charset=utf-8' );
  68. ?>
  69. <!DOCTYPE html>
  70. <html xmlns="http://www.w3.org/1999/xhtml">
  71. <head>
  72. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  73. <title>WordPress &rsaquo; Setup Configuration File</title>
  74. <link rel="stylesheet" href="css/install.css" type="text/css" />
  75. </head>
  76. <body>
  77. <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1>
  78. <?php
  79. }//end function display_header();
  80. switch($step) {
  81. case 0:
  82. display_header();
  83. ?>
  84. <p>Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.</p>
  85. <ol>
  86. <li>Database name</li>
  87. <li>Database username</li>
  88. <li>Database password</li>
  89. <li>Database host</li>
  90. <li>Table prefix (if you want to run more than one WordPress in a single database) </li>
  91. </ol>
  92. <p><strong>If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>. </strong></p>
  93. <p>In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you&#8217;re all ready&hellip;</p>
  94. <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&amp;noapi'; ?>" class="button">Let&#8217;s go!</a></p>
  95. <?php
  96. break;
  97. case 1:
  98. display_header();
  99. ?>
  100. <form method="post" action="setup-config.php?step=2">
  101. <p>Below you should enter your database connection details. If you're not sure about these, contact your host. </p>
  102. <table class="form-table">
  103. <tr>
  104. <th scope="row"><label for="dbname">Database Name</label></th>
  105. <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
  106. <td>The name of the database you want to run WP in. </td>
  107. </tr>
  108. <tr>
  109. <th scope="row"><label for="uname">User Name</label></th>
  110. <td><input name="uname" id="uname" type="text" size="25" value="username" /></td>
  111. <td>Your MySQL username</td>
  112. </tr>
  113. <tr>
  114. <th scope="row"><label for="pwd">Password</label></th>
  115. <td><input name="pwd" id="pwd" type="text" size="25" value="password" /></td>
  116. <td>...and your MySQL password.</td>
  117. </tr>
  118. <tr>
  119. <th scope="row"><label for="dbhost">Database Host</label></th>
  120. <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
  121. <td>You should be able to get this info from your web host, if <code>localhost</code> does not work.</td>
  122. </tr>
  123. <tr>
  124. <th scope="row"><label for="prefix">Table Prefix</label></th>
  125. <td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>
  126. <td>If you want to run multiple WordPress installations in a single database, change this.</td>
  127. </tr>
  128. </table>
  129. <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="true" /><?php } ?>
  130. <p class="step"><input name="submit" type="submit" value="Submit" class="button" /></p>
  131. </form>
  132. <?php
  133. break;
  134. case 2:
  135. $dbname = trim($_POST['dbname']);
  136. $uname = trim($_POST['uname']);
  137. $passwrd = trim($_POST['pwd']);
  138. $dbhost = trim($_POST['dbhost']);
  139. $prefix = trim($_POST['prefix']);
  140. if ( empty($prefix) )
  141. $prefix = 'wp_';
  142. // Validate $prefix: it can only contain letters, numbers and underscores
  143. if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
  144. wp_die( /*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/ );
  145. // Test the db connection.
  146. /**#@+
  147. * @ignore
  148. */
  149. define('DB_NAME', $dbname);
  150. define('DB_USER', $uname);
  151. define('DB_PASSWORD', $passwrd);
  152. define('DB_HOST', $dbhost);
  153. /**#@-*/
  154. // We'll fail here if the values are no good.
  155. require_wp_db();
  156. if ( ! empty( $wpdb->error ) ) {
  157. $back = '<p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button">Try Again</a></p>';
  158. wp_die( $wpdb->error->get_error_message() . $back );
  159. }
  160. // Fetch or generate keys and salts.
  161. $no_api = isset( $_POST['noapi'] );
  162. require_once( ABSPATH . WPINC . '/plugin.php' );
  163. require_once( ABSPATH . WPINC . '/l10n.php' );
  164. require_once( ABSPATH . WPINC . '/pomo/translations.php' );
  165. if ( ! $no_api ) {
  166. require_once( ABSPATH . WPINC . '/class-http.php' );
  167. require_once( ABSPATH . WPINC . '/http.php' );
  168. wp_fix_server_vars();
  169. /**#@+
  170. * @ignore
  171. */
  172. function get_bloginfo() {
  173. return ( ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . str_replace( $_SERVER['PHP_SELF'], '/wp-admin/setup-config.php', '' ) );
  174. }
  175. /**#@-*/
  176. $secret_keys = wp_remote_get( 'https://api.wordpress.org/secret-key/1.1/salt/' );
  177. }
  178. if ( $no_api || is_wp_error( $secret_keys ) ) {
  179. $secret_keys = array();
  180. require_once( ABSPATH . WPINC . '/pluggable.php' );
  181. for ( $i = 0; $i < 8; $i++ ) {
  182. $secret_keys[] = wp_generate_password( 64, true, true );
  183. }
  184. } else {
  185. $secret_keys = explode( "\n", wp_remote_retrieve_body( $secret_keys ) );
  186. foreach ( $secret_keys as $k => $v ) {
  187. $secret_keys[$k] = substr( $v, 28, 64 );
  188. }
  189. }
  190. $key = 0;
  191. foreach ($configFile as $line_num => $line) {
  192. switch (substr($line,0,16)) {
  193. case "define('DB_NAME'":
  194. $configFile[$line_num] = str_replace("database_name_here", $dbname, $line);
  195. break;
  196. case "define('DB_USER'":
  197. $configFile[$line_num] = str_replace("'username_here'", "'$uname'", $line);
  198. break;
  199. case "define('DB_PASSW":
  200. $configFile[$line_num] = str_replace("'password_here'", "'$passwrd'", $line);
  201. break;
  202. case "define('DB_HOST'":
  203. $configFile[$line_num] = str_replace("localhost", $dbhost, $line);
  204. break;
  205. case '$table_prefix =':
  206. $configFile[$line_num] = str_replace('wp_', $prefix, $line);
  207. break;
  208. case "define('AUTH_KEY":
  209. case "define('SECURE_A":
  210. case "define('LOGGED_I":
  211. case "define('NONCE_KE":
  212. case "define('AUTH_SAL":
  213. case "define('SECURE_A":
  214. case "define('LOGGED_I":
  215. case "define('NONCE_SA":
  216. $configFile[$line_num] = str_replace('put your unique phrase here', $secret_keys[$key++], $line );
  217. break;
  218. }
  219. }
  220. if ( ! is_writable(ABSPATH) ) :
  221. display_header();
  222. ?>
  223. <p>Sorry, but I can't write the <code>wp-config.php</code> file.</p>
  224. <p>You can create the <code>wp-config.php</code> manually and paste the following text into it.</p>
  225. <textarea cols="98" rows="15" class="code"><?php
  226. foreach( $configFile as $line ) {
  227. echo htmlentities($line, ENT_COMPAT, 'UTF-8');
  228. }
  229. ?></textarea>
  230. <p>After you've done that, click "Run the install."</p>
  231. <p class="step"><a href="install.php" class="button">Run the install</a></p>
  232. <?php
  233. else :
  234. $handle = fopen(ABSPATH . 'wp-config.php', 'w');
  235. foreach( $configFile as $line ) {
  236. fwrite($handle, $line);
  237. }
  238. fclose($handle);
  239. chmod(ABSPATH . 'wp-config.php', 0666);
  240. display_header();
  241. ?>
  242. <p>All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;</p>
  243. <p class="step"><a href="install.php" class="button">Run the install</a></p>
  244. <?php
  245. endif;
  246. break;
  247. }
  248. ?>
  249. </body>
  250. </html>