PageRenderTime 46ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/wordpress3.4.2/wp-admin/setup-config.php

https://bitbucket.org/ch3tag/mothers
PHP | 287 lines | 211 code | 26 blank | 50 comment | 18 complexity | 48c7a1be54da4fa03921aa1806093391 MD5 | raw file
  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(ABSPATH . WPINC . '/load.php');
  40. require(ABSPATH . WPINC . '/version.php');
  41. // Check for the required PHP version and for the MySQL extension or a database drop-in.
  42. wp_check_php_mysql_versions();
  43. require_once(ABSPATH . WPINC . '/functions.php');
  44. // Also loads plugin.php, l10n.php, pomo/mo.php (all required by setup-config.php)
  45. wp_load_translations_early();
  46. // Turn register_globals off.
  47. wp_unregister_GLOBALS();
  48. require_once(ABSPATH . WPINC . '/compat.php');
  49. require_once(ABSPATH . WPINC . '/class-wp-error.php');
  50. require_once(ABSPATH . WPINC . '/formatting.php');
  51. // Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
  52. wp_magic_quotes();
  53. if ( ! file_exists( ABSPATH . 'wp-config-sample.php' ) )
  54. wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) );
  55. $config_file = file(ABSPATH . 'wp-config-sample.php');
  56. // Check if wp-config.php has been created
  57. if ( file_exists( ABSPATH . 'wp-config.php' ) )
  58. wp_die( '<p>' . sprintf( __( "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='%s'>installing now</a>." ), 'install.php' ) . '</p>' );
  59. // Check if wp-config.php exists above the root directory but is not part of another install
  60. if ( file_exists(ABSPATH . '../wp-config.php' ) && ! file_exists( ABSPATH . '../wp-settings.php' ) )
  61. wp_die( '<p>' . sprintf( __( "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>."), 'install.php' ) . '</p>' );
  62. $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
  63. /**
  64. * Display setup wp-config.php file header.
  65. *
  66. * @ignore
  67. * @since 2.3.0
  68. * @package WordPress
  69. * @subpackage Installer_WP_Config
  70. */
  71. function display_header() {
  72. global $wp_version;
  73. header( 'Content-Type: text/html; charset=utf-8' );
  74. ?>
  75. <!DOCTYPE html>
  76. <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
  77. <head>
  78. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  79. <title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
  80. <link rel="stylesheet" href="css/install.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
  81. </head>
  82. <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
  83. <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png?ver=20120216" /></h1>
  84. <?php
  85. }//end function display_header();
  86. switch($step) {
  87. case 0:
  88. display_header();
  89. ?>
  90. <p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ) ?></p>
  91. <ol>
  92. <li><?php _e( 'Database name' ); ?></li>
  93. <li><?php _e( 'Database username' ); ?></li>
  94. <li><?php _e( 'Database password' ); ?></li>
  95. <li><?php _e( 'Database host' ); ?></li>
  96. <li><?php _e( 'Table prefix (if you want to run more than one WordPress in a single database)' ); ?></li>
  97. </ol>
  98. <p><strong><?php _e( "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>
  99. <p><?php _e( "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>
  100. <p class="step"><a href="setup-config.php?step=1<?php if ( isset( $_GET['noapi'] ) ) echo '&amp;noapi'; ?>" class="button"><?php _e( 'Let&#8217;s go!' ); ?></a></p>
  101. <?php
  102. break;
  103. case 1:
  104. display_header();
  105. ?>
  106. <form method="post" action="setup-config.php?step=2">
  107. <p><?php _e( "Below you should enter your database connection details. If you're not sure about these, contact your host." ); ?></p>
  108. <table class="form-table">
  109. <tr>
  110. <th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
  111. <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
  112. <td><?php _e( 'The name of the database you want to run WP in.' ); ?></td>
  113. </tr>
  114. <tr>
  115. <th scope="row"><label for="uname"><?php _e( 'User Name' ); ?></label></th>
  116. <td><input name="uname" id="uname" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'username', 'example username' ), ENT_QUOTES ); ?>" /></td>
  117. <td><?php _e( 'Your MySQL username' ); ?></td>
  118. </tr>
  119. <tr>
  120. <th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th>
  121. <td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" /></td>
  122. <td><?php _e( '&hellip;and your MySQL password.' ); ?></td>
  123. </tr>
  124. <tr>
  125. <th scope="row"><label for="dbhost"><?php _e( 'Database Host' ); ?></label></th>
  126. <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
  127. <td><?php _e( 'You should be able to get this info from your web host, if <code>localhost</code> does not work.' ); ?></td>
  128. </tr>
  129. <tr>
  130. <th scope="row"><label for="prefix"><?php _e( 'Table Prefix' ); ?></label></th>
  131. <td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>
  132. <td><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td>
  133. </tr>
  134. </table>
  135. <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="1" /><?php } ?>
  136. <p class="step"><input name="submit" type="submit" value="<?php echo htmlspecialchars( __( 'Submit' ), ENT_QUOTES ); ?>" class="button" /></p>
  137. </form>
  138. <?php
  139. break;
  140. case 2:
  141. foreach ( array( 'dbname', 'uname', 'pwd', 'dbhost', 'prefix' ) as $key )
  142. $$key = trim( stripslashes( $_POST[ $key ] ) );
  143. $tryagain_link = '</p><p class="step"><a href="setup-config.php?step=1" onclick="javascript:history.go(-1);return false;" class="button">' . __( 'Try Again' ) . '</a>';
  144. if ( empty( $prefix ) )
  145. wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' . $tryagain_link ) );
  146. // Validate $prefix: it can only contain letters, numbers and underscores.
  147. if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
  148. wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' . $tryagain_link ) );
  149. // Test the db connection.
  150. /**#@+
  151. * @ignore
  152. */
  153. define('DB_NAME', $dbname);
  154. define('DB_USER', $uname);
  155. define('DB_PASSWORD', $pwd);
  156. define('DB_HOST', $dbhost);
  157. /**#@-*/
  158. // We'll fail here if the values are no good.
  159. require_wp_db();
  160. if ( ! empty( $wpdb->error ) )
  161. wp_die( $wpdb->error->get_error_message() . $tryagain_link );
  162. // Fetch or generate keys and salts.
  163. $no_api = isset( $_POST['noapi'] );
  164. if ( ! $no_api ) {
  165. require_once( ABSPATH . WPINC . '/class-http.php' );
  166. require_once( ABSPATH . WPINC . '/http.php' );
  167. wp_fix_server_vars();
  168. /**#@+
  169. * @ignore
  170. */
  171. function get_bloginfo() {
  172. return ( ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . str_replace( $_SERVER['PHP_SELF'], '/wp-admin/setup-config.php', '' ) );
  173. }
  174. /**#@-*/
  175. $secret_keys = wp_remote_get( 'https://api.wordpress.org/secret-key/1.1/salt/' );
  176. }
  177. if ( $no_api || is_wp_error( $secret_keys ) ) {
  178. $secret_keys = array();
  179. require_once( ABSPATH . WPINC . '/pluggable.php' );
  180. for ( $i = 0; $i < 8; $i++ ) {
  181. $secret_keys[] = wp_generate_password( 64, true, true );
  182. }
  183. } else {
  184. $secret_keys = explode( "\n", wp_remote_retrieve_body( $secret_keys ) );
  185. foreach ( $secret_keys as $k => $v ) {
  186. $secret_keys[$k] = substr( $v, 28, 64 );
  187. }
  188. }
  189. $key = 0;
  190. // Not a PHP5-style by-reference foreach, as this file must be parseable by PHP4.
  191. foreach ( $config_file as $line_num => $line ) {
  192. if ( '$table_prefix =' == substr( $line, 0, 16 ) ) {
  193. $config_file[ $line_num ] = '$table_prefix = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
  194. continue;
  195. }
  196. if ( ! preg_match( '/^define\(\'([A-Z_]+)\',([ ]+)/', $line, $match ) )
  197. continue;
  198. $constant = $match[1];
  199. $padding = $match[2];
  200. switch ( $constant ) {
  201. case 'DB_NAME' :
  202. case 'DB_USER' :
  203. case 'DB_PASSWORD' :
  204. case 'DB_HOST' :
  205. $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . addcslashes( constant( $constant ), "\\'" ) . "');\r\n";
  206. break;
  207. case 'AUTH_KEY' :
  208. case 'SECURE_AUTH_KEY' :
  209. case 'LOGGED_IN_KEY' :
  210. case 'NONCE_KEY' :
  211. case 'AUTH_SALT' :
  212. case 'SECURE_AUTH_SALT' :
  213. case 'LOGGED_IN_SALT' :
  214. case 'NONCE_SALT' :
  215. $config_file[ $line_num ] = "define('" . $constant . "'," . $padding . "'" . $secret_keys[$key++] . "');\r\n";
  216. break;
  217. }
  218. }
  219. unset( $line );
  220. if ( ! is_writable(ABSPATH) ) :
  221. display_header();
  222. ?>
  223. <p><?php _e( "Sorry, but I can't write the <code>wp-config.php</code> file." ); ?></p>
  224. <p><?php _e( '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( $config_file as $line ) {
  227. echo htmlentities($line, ENT_COMPAT, 'UTF-8');
  228. }
  229. ?></textarea>
  230. <p><?php _e( 'After you\'ve done that, click "Run the install."' ); ?></p>
  231. <p class="step"><a href="install.php" class="button"><?php _e( 'Run the install' ); ?></a></p>
  232. <?php
  233. else :
  234. $handle = fopen(ABSPATH . 'wp-config.php', 'w');
  235. foreach( $config_file as $line ) {
  236. fwrite($handle, $line);
  237. }
  238. fclose($handle);
  239. chmod(ABSPATH . 'wp-config.php', 0666);
  240. display_header();
  241. ?>
  242. <p><?php _e( "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"><?php _e( 'Run the install' ); ?></a></p>
  244. <?php
  245. endif;
  246. break;
  247. }
  248. ?>
  249. </body>
  250. </html>