Attempting to Install New Blog with WordPress 2.8
-
I have been attempting to create a new blog and have uploaded it several times. Every time, I have received error messages. The most recent installation uses WordPress 2.8. The error message I receive when I click on the /wp-admin/install.php link from the html readme page follows:
error) ) wp_die($wpdb->error->get_error_message()); display_header(); // Fill in the data we gathered $weblog_title = isset($_POST[‘weblog_title’]) ? stripslashes($_POST[‘weblog_title’]) : ”; $admin_email = isset($_POST[‘admin_email’]) ? stripslashes($_POST[‘admin_email’]) : ”; $public = isset($_POST[‘blog_public’]) ? (int) $_POST[‘blog_public’] : 0; // check e-mail address $error = false; if (empty($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘you must provide an e-mail address.’) ); $error = true; } else if (!is_email($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘that isn’t a valid e-mail address. E-mail addresses look like: [email protected]’) ); $error = true; } if ( $error === false ) { $wpdb->show_errors(); $result = wp_install($weblog_title, ‘admin’, $admin_email, $public); extract($result, EXTR_SKIP); ?>
I have checked and double checked the wp-config.php page as advised but have found no errors.
Thanks much!
Carrie L. Lewis
- The topic ‘Attempting to Install New Blog with WordPress 2.8’ is closed to new replies.