• Resolved emirhan

    (@emirhan)


    I saw a link to upgrade WordPress in my wordpress admin panel. I clicked on the link, downloaded it, copied the files to my directory. Uploaded them and now nothing is there on my website. I didn’t make a backup because I just thought all you would have to do is download the new zip file, unzip, copy to your folder and upload. I’m new at wordpress.
    I’ve tried to get to the install page, the page can’t be found. My wp-config file has all the same information. What can I do? this is a disaster for me.

Viewing 8 replies - 16 through 23 (of 23 total)
  • Thread Starter emirhan

    (@emirhan)

    I’ve downloaded the new WP 2.3.1, unzipped it and uploaded every except wp-content which was left there. I tried the upgrade file but there is still nothing there.

    Now, somewhere in your FTP program there should be a setting to “show hidden files“. Find it.
    Connect again to your server. Check again for a .htaccess file.

    Thread Starter emirhan

    (@emirhan)

    I did the show hidden files. I don’t see .htaccess in the root.

    Then it’s time that you send over you ftp access info in an email – I can’t do anything else remotely, sorry.

    If you want I can take a look at it, email me at my name here AT transycan net

    Thread Starter emirhan

    (@emirhan)

    I just sent it.

    You mean to “moshu AT transycan DOT net”?
    Didn’t get it… yet.

    Thread Starter emirhan

    (@emirhan)

    yes

    Thread Starter emirhan

    (@emirhan)

    Thought I should post this code which solved the problem:

    The webhosting company said:

    it seems is due to the code is not compatible with PHP 5. Below is the code we changed for your reference, in case you need to re-upload the files and may need to modified it. Please try the installation and see it will work for you now.

    Orgaina 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);

Viewing 8 replies - 16 through 23 (of 23 total)
  • The topic ‘Upgrading to 2.3.1’ is closed to new replies.