Changeset 9443
- Timestamp:
- 10/31/2008 07:24:45 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-admin/setup-config.php (modified) (1 diff)
-
wp-load.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r9146 r9443 44 44 45 45 // Check if wp-config.php exists above the root directory 46 if (file_exists('../../wp-config.php') )46 if (file_exists('../../wp-config.php') && ! file_exists('../../wp-load.php')) 47 47 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>"); 48 48 -
trunk/wp-load.php
r8168 r9443 27 27 require_once( ABSPATH . 'wp-config.php' ); 28 28 29 } elseif ( file_exists( dirname(ABSPATH) . '/wp-config.php' ) ) {29 } elseif ( file_exists( dirname(ABSPATH) . '/wp-config.php' ) && ! file_exists( dirname(ABSPATH) . '/wp-load.php' ) ) { 30 30 31 31 /** The config file resides one level below ABSPATH */
Note: See TracChangeset
for help on using the changeset viewer.