summaryrefslogtreecommitdiffstats
path: root/wp-load.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-load.php')
-rw-r--r--wp-load.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/wp-load.php b/wp-load.php
index 423edf5..3627168 100644
--- a/wp-load.php
+++ b/wp-load.php
@@ -36,14 +36,14 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) {
// A config file doesn't exist
// Set a path for the link to the installer
- if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
- else $path = 'wp-admin/';
+ if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '../';
+ else $path = '';
// Die with an error message
require_once( ABSPATH . '/wp-includes/classes.php' );
require_once( ABSPATH . '/wp-includes/functions.php' );
require_once( ABSPATH . '/wp-includes/plugin.php' );
- wp_die(sprintf(/*WP_I18N_NO_CONFIG*/"There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%ssetup-config.php' class='button'>Create a Configuration File</a>"/*/WP_I18N_NO_CONFIG*/, $path), /*WP_I18N_ERROR_TITLE*/"WordPress &rsaquo; Error"/*/WP_I18N_ERROR_TITLE*/);
+ wp_die(sprintf(/*WP_I18N_NO_CONFIG*/"There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started.<p><a href='%sindex.php' class='button'>Create a Configuration File</a>"/*/WP_I18N_NO_CONFIG*/, $path), /*WP_I18N_ERROR_TITLE*/"WordPress &rsaquo; Error"/*/WP_I18N_ERROR_TITLE*/);
}