Support » Fixing WordPress » Upgrade to 2.3.2

  • I have made a back up and then I downloaded the new WordPress 2.3.2 on the PC then I uploaded the files to the server. Unfortunatelly right now I can’t upgrade it (http://example.com/wordpress/wp-admin/upgrade.php) .
    My blog is at http://www.motorparasi.com . The last time upgraded to wp 2.3.1, I had the same problem which you helped me alot with the code provided by my webhosting company.

    The following code :
    Original taxonomy.php line 11 ~ 13
    $wp_taxonomies = array();$wp_taxonomies[‘category’] = (object) array(‘name’ => ‘category’, ‘object_type’ => ‘post’, ‘hierarchical’ => true, ‘update_count_callback’ => ‘_update_post_term_count’);$wp_taxonomies[‘post_tag’] = (object) array(‘name’ => ‘post_tag’, ‘object_type’ => ‘post’, ‘hierarchical’ => false, ‘update_count_callback’ => ‘_update_post_term_count’);$wp_taxonomies[‘link_category’] = (object) array(‘name’ => ‘link_category’, ‘object_type’ => ‘link’, ‘hierarchical’ => false);

    Modified taxonomy.php line 11 ~ 13
    $wp_taxonomies = array();$wp_taxonomies[‘category’] = array(‘name’ => ‘category’, ‘object_type’ => ‘post’, ‘hierarchical’ => true, ‘update_count_callback’ => ‘_update_post_term_count’);$wp_taxonomies[‘post_tag’] = array(‘name’ => ‘post_tag’, ‘object_type’ => ‘post’, ‘hierarchical’ => false, ‘update_count_callback’ => ‘_update_post_term_count’);$wp_taxonomies[‘link_category’] = array(‘name’ => ‘link_category’, ‘object_type’ => ‘link’, ‘hierarchical’ => false);

    Any help is appreciated

  • The topic ‘Upgrade to 2.3.2’ is closed to new replies.