Forums

[resolved] WordPress upgrade problem, says newest version is aready installed (4 posts)

  1. freakysheep
    Member
    Posted 2 years ago #

    Hi there, I'm using Version 2.8.6 and wanted to upgrade to 2.9.
    When I go to update-core.php, it says that I already installed the latest version. Is there some kind of cashing or file permission problem? It looks to me as if my wordpress just cant find the upgrade server? How can I see on what url wordpress looks for it?

    Thanks for your help.

  2. thredz12
    Member
    Posted 2 years ago #

    I am going through the same thing. i am very new to this, any help would be extremely appreciated. sorry I dont have any solution for ya feakysheep, but if i find the solution anywhere i will post it back here.

  3. spamma
    Member
    Posted 2 years ago #

    '.__('Already Installed').'
    
    '.__('You appear to have already installed WordPress. To reinstall please clear your old database tables first.').'
    ');} $php_version = phpversion(); $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); if ( !$mysql_compat && !$php_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); elseif ( !$php_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'), $wp_version, $required_php_version, $php_version ); elseif ( !$mysql_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, $required_mysql_version, $mysql_version ); if ( !$mysql_compat || !$php_compat ) { display_header(); die('
    ' . __('Insufficient Requirements') . '
    
    ' . $compat . '
    '); } switch($step) { case 0: case 1: // in case people are directly linking to this display_header(); ?>
    
    ReadMe documentation at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'), '../readme.html'); ?>
    
    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: username@example.com') ); $error = true; } if ( $error === false ) { $wpdb->show_errors(); $result = wp_install($weblog_title, 'admin', $admin_email, $public); extract($result, EXTR_SKIP); ?>
    
    	admin
    	'. $password .'
    '; } echo '
    
    '. $password_message .'
    '; ?>

    That's the page that opens up for me, when I open wp-admin/install. :/

  4. mrmist
    Forum Janitor
    Posted 2 years ago #

    You should really start a new thread for unrelated topics. In your case it looks like your host is not running php.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.