summaryrefslogtreecommitdiffstats
path: root/wpmu-settings.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-07-12 17:06:12 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-07-12 17:06:12 +0000
commit7761670f76834d5780042c9a4a5ac89efc4b51ad (patch)
treea669dc12d7bbfaf7db36add688547af20ae2cf60 /wpmu-settings.php
parent09f9d533c60fb16d8b31c6a821658dd1d38b0fe6 (diff)
downloadwordpress-mu-7761670f76834d5780042c9a4a5ac89efc4b51ad.tar.gz
wordpress-mu-7761670f76834d5780042c9a4a5ac89efc4b51ad.tar.xz
wordpress-mu-7761670f76834d5780042c9a4a5ac89efc4b51ad.zip
Reword error message and remove link to support forum so ordinary users are not confused.
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@666 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wpmu-settings.php')
-rw-r--r--wpmu-settings.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/wpmu-settings.php b/wpmu-settings.php
index b98ca02..6cd55c9 100644
--- a/wpmu-settings.php
+++ b/wpmu-settings.php
@@ -162,10 +162,11 @@ function is_installed() {
$base = stripslashes( $base );
if( defined( "WP_INSTALLING" ) == false ) {
$check = $wpdb->get_results( "SELECT * FROM $wpdb->site" );
+ $msg = "If your blog does not display, please contact the owner of this site.<br /><br />If you are the owner of this site please check that MySQL is running properly and all tables are error free.<br /><br />";
if( $check == false ) {
- $msg = '<strong>Database Tables Missing.</strong><br /> The table <em>' . DB_NAME . '::' . $wpdb->site . '</em> is missing. Delete the .htaccess file and run the installer again!<br />';
+ $msg .= "<strong>Database Tables Missing.</strong><br />Database tables are missing. This means that MySQL is either not running, WPMU was not installed properly, or someone deleted {$wpdb->site}. You really <em>should</em> look at your database now.<br />";
} else {
- $msg = '<strong>Could Not Find Blog!</strong><br />';
+ $msg .= '<strong>Could Not Find Blog!</strong><br />';
$msg .= "Searched for <em>" . $domain . $path . "</em> in " . DB_NAME . "::" . $wpdb->blogs . " table. Is that right?<br />";
}
$msg .= "<br />\n<h1>What do I do now?</h1>";
@@ -178,7 +179,7 @@ function is_installed() {
<li> $wpdb->sitemeta </li>
<li> $wpdb->sitecategories </li>
</ul>";
- $msg .= "If you suspect a problem please report it to <a href='http://mu.wordpress.org/forums/'>support forums</a> but follow the <a href='http://trac.mu.wordpress.org/wiki/DebuggingWpmu'>guidelines</a>!<br /><br />";
+ $msg .= "If you suspect a problem please report it to the support forums but you must include the information asked for in the <a href='http://trac.mu.wordpress.org/wiki/DebuggingWpmu'>WPMU bug reporting guidelines</a>!<br /><br />";
if( is_file( 'release-info.txt' ) ) {
$msg .= 'Your bug report must include the following text: "';
$info = file( 'release-info.txt' );