Changeset 666
- Timestamp:
- 07/12/06 17:06:12 (2 years ago)
- Files:
-
- trunk/wpmu-settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wpmu-settings.php
r664 r666 163 163 if( defined( "WP_INSTALLING" ) == false ) { 164 164 $check = $wpdb->get_results( "SELECT * FROM $wpdb->site" ); 165 $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 />"; 165 166 if( $check == false ) { 166 $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 />';167 $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 />"; 167 168 } else { 168 $msg = '<strong>Could Not Find Blog!</strong><br />';169 $msg .= '<strong>Could Not Find Blog!</strong><br />'; 169 170 $msg .= "Searched for <em>" . $domain . $path . "</em> in " . DB_NAME . "::" . $wpdb->blogs . " table. Is that right?<br />"; 170 171 } … … 179 180 <li> $wpdb->sitecategories </li> 180 181 </ul>"; 181 $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 />";182 $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 />"; 182 183 if( is_file( 'release-info.txt' ) ) { 183 184 $msg .= 'Your bug report must include the following text: "';
