Changeset 9126
- Timestamp:
- 10/12/2008 05:40:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r9119 r9126 16 16 */ 17 17 define('WP_INSTALLING', true); 18 //These three defines are required to allow us to use require_wp_db() to load the database class while being wp-content/db.php aware 18 19 /**#@+ 20 * These three defines are required to allow us to use require_wp_db() to load 21 * the database class while being wp-content/db.php aware. 22 * @ignore 23 */ 19 24 define('ABSPATH', dirname(dirname(__FILE__)).'/'); 20 25 define('WPINC', 'wp-includes'); 21 26 define('WP_CONTENT_DIR', ABSPATH . 'wp-content'); 27 /**#@-*/ 22 28 23 29 require_once('../wp-includes/compat.php'); … … 136 142 137 143 // Test the db connection. 144 /**#@+ 145 * @ignore 146 */ 138 147 define('DB_NAME', $dbname); 139 148 define('DB_USER', $uname); 140 149 define('DB_PASSWORD', $passwrd); 141 150 define('DB_HOST', $dbhost); 151 /**#@-*/ 142 152 143 153 // We'll fail here if the values are no good.
Note: See TracChangeset
for help on using the changeset viewer.