Upgrading To WordPress 2.3 This Weekend - Any Tips?


I didn’t want to upgrade to WordPress 2.3 until the tagging functionality improved, as the functionality in the Simple Tagging plugin is much better.

However, the Simple Tagging team have released the Simple Tags plugin for WordPress 2.3 that has even more functionality, and WordPress 2.3.1 is out now, so I’m going to take the plunge this weekend.

If you’ve already upgraded to WordPress 2.3, do you have any tips for me?

Bookmark & Share

Related Posts

About the Author

author photo

Everton is based in London and has worked in the internet and mobile space for over ten years now, and before that worked in corporate strategy and consulting. He has a degree in Economics from Cambridge University, and currently runs the Portal and online operations for one of the largest ISPs in the UK. He also writes for Windows 7 News.

See All Posts by This Author

There Are 16 Responses So Far. »

  1. #1

    Here are some tips :)

    1. Backup everything !
    2. Remove the code for the tagging plugin in your blog to avoid errors
    3. Deactivate the tagging plugin and the sitemap plugin
    4. Copy the new tagging plugin to your plugin directory
    5. Copy the new Wordpress files over your old ones (worked fine for me, if you are cautious delete the old files, upload the new ones)
    6. Check the site for errors, if none proceed. If you see errors remove the corresponding code
    7. activate the new taggin plugin.
    8. import the tags from your old plugin, run it twice if you get a timeout
    9. add the new tagging code to your blog

    well that’s it basically. the new tagging code is the default Wordpress function for tags, you find it in the default theme in single.php

    Please note that some tags will be changed which leads to several 404s on your site. I think _ will be - or the other way round. not a huge problem though.

  2. #2

    I really didn’t find much in the way of gotchas but I’m also not making use of tags at this point - simply a category list in the sidebar.

    There were several things I did before moving to 2.3 though:

    1. Reviewed the current WordPress.org list of 2.3 compatible plugins.
    2. Tested 2.3 with my theme in a subdomain.
    3. Backed up - a copy of the database and the WordPress specific files just in case.
    4. Disabled all plugins

    The actual WordPress installation was uneventful. Best of luck!

  3. #3

    First, WP2.3 is MUCH more system load intensive than previous versions for some reason. after installing it a week or so ago, our system load (UNIX load) went from average of 0.10 to average of 0.60 or so… under the same regular circumstances. ended up installing a separate lighweight web server to serve our images and lower the load - lighthttpd I think. that really helped.

    Also, for tags: The UTW tag importer changed all multi-word tags to have a “dash” instead of a space. which added about 30 minutes to the migration until I figured out (found) a working mysql sql command to clean that up. I think I used all the following 3 queries from PHPMyAdmin.

    USE THIS KNOWLEDGE WITH CAUTION and only as a starting point. and back up first. what you do to your data is your business. :-)

    // get a look at the broken terms:
    SELECT *
    FROM `wp_terms`
    WHERE name LIKE ‘%-%’;

    // see what the broken and fixed terms would look like
    SELECT term_id, name, replace(name, ‘-’, ‘ ‘), slug
    FROM `wp_terms`
    WHERE name LIKE ‘%-%’
    and term_id

  4. #4

    Use the WordPress Upgrade Preflight Check to check if there could be some problems with some plugins on your website. This plugin is not perfect, some plugins still worked after upgrade, even if it shows that this specific plugin might not work in 2.3

    Check also the compatibility of your plugins with 2.3 at http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.3

    You can also install the WP Plugins Tracker to check if you have the newest version of your plugins installed. After upgrade you can deinstall it, since this kind of function is in WP already included.

    Just some more information, which wasn’t already mentioned above.

    Good luck, should be a smooth ride :)

  5. #5

    you choose the right time.
    weekend will be the perfect day.

    all suggestion above are correct. it just, i think you may try an automatic upgrade here.

  6. #6

    i used the instant upgrade plugin, i had to deactivate pmetrics first because of a pkzip error but after that it went through fine, the import tags from UTW worked well to. dead easy!

  7. #7

    I am noticing these 405 errors with wp-comments. Anyone else notice it?

  8. #8

    It really is a mighty big step, do be sure to backup your DB and files. You can upgrade to 2.3.1 right away.

    Do check out my post on how to upgrade your theme to Wordpress 2.3 too!

  9. #9

    pchere Yep i got this errors too.

  10. #10

    Hmmm.. notice that there hasn’t been any new posts as of late? Is it because the upgrade faltered?

  11. #11

    no, just been very busy!

  12. #12

    great upgrade
    im use more than 1 week

  13. #13

    Hey Everton, someone is commenting with my name and changing the url link to: http://www.allnewsandvideos.com. Can this be fixed? (I did not write the above comment)

  14. #14

    I think there’s just more than one Micah out there. Maybe add your last initial in the future?

  15. #15

    [...] Upgrading To WordPress 2.3 This Weekend - Any Tips? (16.732) [...]

  16. #16

    [...] phpMyAdmin plugin. There’s a useful tutorial for geeks that explains the procedure. And here’s a guide for doing any form of upgrade to a Wordpress site. Rule no: 1 - backup everything. Which is what Chris [...]

Subscribe without commenting

Post a Response


Comment Policy: Any comments are permitted only because the site owner is letting you post, and any comments could be removed for any reason at the absolute discretion of the site owner.