Technosailor
  • Home
  • Blog
  • Venture Files
  • Espanol
  • Technosailor Staff
  • Twitter Pitch Me!
  • Clients/Disclosures
Jan
21
2007

10 Things You Should Know About WordPress 2.1

Posted by: Aaron Brazell

Back in December of 2005, I was filling in for Darren Rowse at ProBlogger and I wrote an entry that was very highly read and commented on. The topic was 10 Things You Should Know About WordPress 2.0. The occasion was the release of the much-waited for release of the current major release of WordPress (We’re up to 2.0.7 but the “dot releases” have all been security/bugfix releases).

Tomorrow (January 22, 2007), WordPress 2.1 will be released and it signifies the first major release since the 2.0 branch was launched. As is typical of major releases, they do not only address security/bugfixes but they release new functionality.

So in the spirit of the original article, I give you ten things you should know about WordPress 2.1.

First though, it’s notable to point at the progress the entire WordPress community has made in the last year since 2.0 was released. Many things, such as themes, have been improved upon. For instance, theme authors can take advantage (and now do!) of screenshot.png, a screenshot image that can be included in a theme folder that provides a visual representation of what the theme is. This ability was implemented in 2.0 but since most themes were designed for WordPress 1.5 at the time, most themes did not have this feature implemented.

In addition, the addition of WordPress widgets as an add-on has provided theme authors and bloggers a phenomenal way to simply drag and drop sidebar elements. This takes the mystique out of placing modules in a sidebar when the vast majority of the WordPress users really don’t know how (or want to) mess with the HTML that makes up a sidebar.

Testing has been given serious effort with the release of WordPress.com hosted blogs. You just thought you were getting a free no fuss, no muss blog built on WordPress but what you little guinea pigs may not have known was that it has been the testing bed of most of the WordPress development code. It gives developers a real-time, real-life window into what works and what doesn’t and allows for extensive non-technical testing. Both WordPress 1.5 and 2.0 were plagued with bugs that were not thoroughly vetted out prior to release. While WordPress.com does not guarantee a bug-free release, the chances and scope of bugs are significantly reduced.

So what is new in WordPress 2.1?

Auto-save of Drafts - WordPress 2.1 adds an autosave function that is automatically implemented when writing new drafts. This functionality uses AJAX and operates without new pageloads. The title of the post must be filled out in order for autosaving to occur.

Better Image Upload Handling - If you do any image uploading under the 2.0 branch, you’ve probably been a little frustrated by the confusing menu that becomes available for those images. It was a bit of “back to basics” to implement radio-button style visual prompts assisting in the handling of these images. You can even Edit image attributes after the image is uploaded.picture-3.png

Deprecation of $tableposts, $tablecomments, etc - Deprecation is a mild word. Typically in software development, deprecation means that it is no longer a recommend approach but for backwards compatibility, the function or variable still exists. In this case, elimination would be a more appropriate term. This is going to affect a lot of people because there are still many plugins out there using these variables when generating queries within plugins. Instead, the method for querying wordpress table sis to use the $wpdb global. For instance, $tableposts should be termed $wpdb->posts. $tablecomments should now be $wpdb->comments. And so on. Plugins using the old format will cause SQL errors that might be displayed on a blog or simply break a blog altogether. I had a post recently on the WordPress Development blog which describes these changes.

Update: According to Ryan Boren from WordPress, these variables have been “ressurrected” andplaced in deprecated.php. This is critical as it means that most plugins that may have broke before, will be fine now.

Plugin Compatibility - As mentioned above, many plugins will no longer work in 2.1 due to deprecation of database table variables. However, whenever there is a new version of WordPress, the other possible “plugin breaks” extend farther. Fortunately, the WordPress community has been hard at work testing plugins with 2.1 determining compatibility. You can find a list of backwards-compatible plugins at the Codex.

Native WordPress Migration Functionality - I unequivocally can say that when I released the Wordpress-to-Wordpress migrator, I had no idea that it would bring me as much traffic or that the tool would recieve such warm welcome. So, it’s with mixed emotions that I say goodbye to the vast amount of traffic I recieved. The Wordpress migration tool was released to essentially mirror functionality that is in WordPress 2.1 (and thus WordPress.com). So while the 2.0 branch will remain available through 2010 (it is available in Debian Linux now) , the new 2.1 branch introduces the functionality that I provided to 2.0 customers with my tool.

MySQL Version - It should be noted that although most hosting providers have upgraded their MySQL version to 4.0+, many are still lingering at MySQL 3.23. WordPress 2.1 eliminates support for this older version of MySQL. An easy way to determine what version you are running is to drop this in a file called testdb.php and drop inside your web root:

< ?php
// Replace with your database connection info
mysql_connect("localhost","dbuser","dbpassword");
echo mysql_get_server_info();
?>

New Visual Editor Interface - A big problem (to many) in the WordPress 2.0 branch was the Rich Text Editor (RTE) powered by TinyMCE. I believe the RTE was a good idea but was before it’s time. Thankfully, the developers have heeded the concerns brought to bear on the RTE in WordPress 2.0 and have significantly improved it. Notably, there is now a tabbed interface in the Write screen that will allow bloggers to switch between the two views seamlessly.

picture-4.png

Merging of Links and Categories - This is another one of those things that tend to be more of a backend database thing, but there are notable semantics to be pointed out. In previous versions of WordPress, links and categories were handled as two separate entities. Links were seen as a thing used solely to power a blogroll and Categories were seen as a way to solely compartmentalize posts. In WordPress 2.1, the development philosophy shifted in such a way to recognize that these things actually tend to serve nearly similar purposes. While those philosophies can be discussed in other posts, the important thing to recognize is that the Categories table is now prepopulated with a Blogroll category and all links are assigned, by default, to the blogroll category. Folks who are upgrading will have this association made as part of the upgrade process.

Privacy Features - Probloggers will not find this feature particularly useful, nor will most bloggers who desire exposure. However, in WordPress 2.1, there are privacy features which allow you to block your site from search engines and directories. This is useful, however, if you were to want to keep a blog for family or friends or a purely personal blog intended for your own self.

Nonces - This is not really new in WordPress 2.1 but it is new since the original WordPress release. In fact, nonces were introducted in WordPress 2.0.3 and they are significant security items. It applies not only to WordPress but plugins so plugin authors take note of nonces. Mark Jaquith [fixed typo. Sorry Mark!] has more on nonces and how to use them. He details the specific implementation in a way my grandmother (who is dead) could understand. In a nutshell, nonces are unique “passwords” embedded in the comment moderation emails, among other things that prevent YOU from damaging YOUR blog. Each request is assigned a nonce which only lets ONE person do ONE thing within your wp-admin (i.e. approve a comment or delete a post). This replaces the “Are you sure?” dialog.

Table of contents for WordPress Release

  1. 10 Things You Should Know About WordPress 2.0
  2. 10 Things You Should Know About WordPress 2.1
  3. WordPress 2.1 Gotchas
  4. 10 Things You Should Know About WordPress 2.2
Previous in series Next in series
  • Add to Mixx!
  • Stumble it!
About the Author: Aaron Brazell is the lead editor of Technosailor.com and a social media expert. His passion is to see companies and individuals use the internet and web technologies wisely and effectively to promote their brands and companies. He served as Director of Technology at b5media from 2005-2008 and is currently an independent consultant.
Tagged: at 4:50 pm -

243 Responses to “10 Things You Should Know About WordPress 2.1”

  1. 1
    וורדפרס עברית » ארכיון » מה צפוי בוורדפרס 2.1 Says:

    [...] ב-TechnoSailor נתקלתי בפוסט מסקרן (אבל אולי רק אותי?) על מה שמצפה לנו בוורדפרס 2.1 שתשוחרר מחר. [...]

    January 21st, 2007 at 7:10 pm
  2. 2
    Jason Says:

    Great article on what I should know about WordPress 2.1. Over the past year I’ve become more and more acquainted with WordPress through my own personal blog as well as beginning to use the structure as a free CMS option for many of my clients. Thanks for all of this insight!

    January 21st, 2007 at 7:16 pm
  3. 3
    Emerging Earth - Things to Know About WordPress’ Next Release Says:

    [...] After all that time, I wish I would have had posts like the recent one by fellow b5′er Aaron Brazell. Over on his personal site, Technosailor, you can read 10 Things You should Know About WordPress 2.1. [...]

    January 21st, 2007 at 7:23 pm
  4. 4
    =) Bnpositive’s Blog » WordPress 2.1 Release Information Says:

    [...] 10 Things You Should Know About WordPress 2.1 by Aaron Brazell [...]

    January 21st, 2007 at 7:29 pm
  5. 5
    wayne Says:

    Good information, I’ve been using 2.1 beta for a while and so far no problem wiht many older plug-ins.

    Wayne

    January 21st, 2007 at 8:38 pm
  6. 6
    w4 network - technology, gadgets, web 2.0, smartphones, wordpress, mobile, blogs, news, money & affiliates » Blog Archive » 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media [...]

    January 21st, 2007 at 8:46 pm
  7. 7
    The Flow of Consciousness » Wordpress 2.1 features - finally, autosaving! Says:

    [...] Read more. [...]

    January 21st, 2007 at 9:19 pm
  8. 8
    Whatever I Feel Like » WordPress 2.1 Release - Amy's blog on life, love, recovery, beauty, TV and lots of other randomness Says:

    [...] update to their software, version 2.1 is going to be released tomorrow, 1/22. Exciting! Here is a great article on what you can expect to [...]

    January 21st, 2007 at 9:23 pm
  9. 9
    Jaslabs: High performance php » wordpress 2.1 to be released on Monday Says:

    [...] More information on this can be found here. [...]

    January 21st, 2007 at 9:24 pm
  10. 10
    Millions Livio Says:

    Indeed, good write up.

    Edit: link removed.

    January 21st, 2007 at 9:30 pm
  11. 11
    Waldo Jaquith Says:

    FYI, you’ve misspelled Mark Jaquith’s last name, inserting an “i” where there should be none.

    January 21st, 2007 at 9:48 pm
  12. 12
    Francesco Biacca blog: riflessioni sul mondo della tecnologia e sulla sfera personale » Wordpress 2.1 Says:

    [...] technorail) mysql, php, programmazione, Technology, [...]

    January 21st, 2007 at 9:50 pm
  13. 13
    Rirath Says:

    I think I use a few plugins that are going to break with the deprecation of $tableposts and $tablecomments, but hopefully the fix is as easy as it looks.

    January 21st, 2007 at 9:58 pm
  14. 14
    WordPress 2.1 - What You Should Know Says:

    [...] put together a worthwhile post for WordPress users wanting to upgrade to WP 2.1. It’s called 10 Things You should Know About WordPress 2.1 which outlines some of the new stuff that it has including auto-saving drafts, new image upload [...]

    January 21st, 2007 at 9:58 pm
  15. 15
    Tim Says:

    And after all this development, there is STILL no Postgres support, denying one of the best pieces of blogging software even more active users who would prefer PostgreSQL instead of MySQL for whatever reasons.

    That’s sad.

    January 21st, 2007 at 10:09 pm
  16. 16
    10 Things You should Know About WordPress 2.1 | BTT | Blog The Tech Says:

    [...] Read more… [...]

    January 21st, 2007 at 10:15 pm
  17. 17
    Ronald Lewis Says:

    Looking forward to the upgrade!

    January 21st, 2007 at 10:15 pm
  18. 18
    Jonic Says:

    Great article Aaron… I’m running RC1, but I’ll be sure to upgrade when the time comes…

    And what’s this about your tool? You saucy thing, you…

    January 21st, 2007 at 10:19 pm
  19. 19
    Aaron Brazell Says:

    Jonic, you’re stupid :D

    January 21st, 2007 at 10:22 pm
  20. 20
    Martin Neumann Says:

    Nice overview Aaron.

    Auto-Save drafts - YES! a real life saver.

    Good to see them working on image uploading as that was the one thing that really, really frustrated me way too many times.

    “many plugins will no longer work in 2.1″ - that I don’t like and I think may cause vast headaches for many bloggers.

    A quick look at the list of compatible plugins and my own plugins I use and I think 60% of my plugins are now useless.

    January 21st, 2007 at 10:35 pm
  21. 21
    Aaron Brazell Says:

    I’m sure plugin authors will upgrade their plugins once they realize that they are incompatible with 2.1

    January 21st, 2007 at 10:37 pm
  22. 22
    mike browne Says:

    New RTE. Hurray!

    January 21st, 2007 at 10:42 pm
  23. 23
    import this. » Blog Archive » WordPress 2.1 tomorrow Says:

    [...] like WordPress 2.1 will be released tomorrow. Here’s a list of some of the new features that will be [...]

    January 21st, 2007 at 10:46 pm
  24. 24
    Jonic Says:

    It’s my most endearing quality… Speaks volumes about the rest of my character really…

    I just realised the Easy Admin Access is now broken thanks to the post page changing from post.php to post-new.php

    I’ll get on that… It’s proved to be quite popular, so I’d better make sure it’s working properly!

    Congrats on the Digg by the way… You’ve grown up so fast! *sniff*

    January 21st, 2007 at 10:59 pm
  25. 25
    WordPress 2.1 will be released tomorrow. 10 things you need to know! « Digged Stories Says:

    [...] read more | digg story [...]

    January 21st, 2007 at 11:05 pm
  26. 26
    Jimiz.net - Jim Becher on the web » Blog Archive » WordPress 2.1 - Home of IIS Reporter Says:

    [...] http://www.technosailor.com/10-things-you-should-know-about-wordpress-21/ [...]

    January 21st, 2007 at 11:10 pm
  27. 27
    Weblog Tools Collection » Blog Archive » 10 Things about WordPress 2.1 Says:

    [...] has tried to shed some light on some of the new features in WordPress 2.1 in his article 10 Things You should Know About WordPress 2.1 (No Ratings Yet)  Loading [...]

    January 21st, 2007 at 11:10 pm
  28. 28
    411 on Wordpress 2.1 » JaypeeOnline Says:

    [...] Aaron Brazell talks about the 10 things you should know about Wordpress 2.1 [...]

    January 21st, 2007 at 11:33 pm
  29. 29
    Techiegeeks.com - » Wordpress 2.1 out tomorrow Says:

    [...] Anyway, check out the 10 thing to look for in 2.1 here. [...]

    January 21st, 2007 at 11:36 pm
  30. 30
    AlbanyWiFi.com » Blog Archive » 10 Things You should Know About WordPress 2.1 Says:

    [...] http://www.technosailor.com/10-things-you-should-know-about-wordpress-21/ [...]

    January 21st, 2007 at 11:38 pm
  31. 31
    Can Says:

    What about static homepage property ? i created a page and called it as home so it apperared at side block as home cool but it also says home in title and h1 tag on the page :( .Its my first time so probably messed something so is there a way or hack for able to name page as home but not title and h1

    January 22nd, 2007 at 12:14 am
  32. 32
    milo Says:

    Good news and post, thanks for the update.

    January 22nd, 2007 at 12:35 am
  33. 33
    virtus ad aethera tendit » 10 Things You should Know About WordPress 2.1 Says:

    [...] upgrade to the world’s best blogging software was released, Technosailor has come up with 10 things you should know about WordPress 2.1. This new version should be out tomorrow, and promises to be a blast! Tags:blog [...]

    January 22nd, 2007 at 12:41 am
  34. 34
    The Lyceum Project » WordPress 2.1 Says:

    [...] WordPress 2.1 is on its way. Aaron Brazell has posted a nice write-up of new features and things to watch out for (like plugin incompatibility).. [...]

    January 22nd, 2007 at 12:44 am
  35. 35
    HART (1-800-HART) Says:

    Hmm .. people still use that horrible tinyMCE? I hope the default is set to “NO THANKS” ..

    And speaking of thanks.. THANKS for linking to the page that shows the latest versions of plugins that WILL work .. it’s a good start for me personally!

    Later Dude/

    January 22nd, 2007 at 12:46 am
  36. 36
    HART-Empire.com » Finally: A Review of The Plugins Activated In My Blogs (HART-EMPIRE NETWORK) Says:

    [...] see Aaron linked to the List of Plugins Compatable with wordpress 2.1 // We minus 2.1 users thank you! Share [...]

    January 22nd, 2007 at 12:46 am
  37. 37
    HART (1-800-HART) Says:

    PS.. will you be updating Time Capsule? I’ve gotten used to that!

    January 22nd, 2007 at 12:52 am
  38. 38
    Aaron Brazell Says:

    I may have to. I didn’t know anyone actually used it. :-)

    Shoot, you may have to email me the plugin again. I’m not sure where I stashed it.

    January 22nd, 2007 at 12:53 am
  39. 39
    Problog Quest » Blog Archive » Things worth knowing on the Eve of Wordpress 2.1 Release Says:

    [...] Aaron Brazell, has put together 10 new developments and enhancements that will be experienced by users upgrading to Wordpress 2.1, the post is titled 10 Things You should Know About WordPress 2.1. [...]

    January 22nd, 2007 at 12:56 am
  40. 40
    HART (1-800-HART) Says:

    shot!

    January 22nd, 2007 at 1:03 am
  41. 41
    WordPress 2.1 looms… » Solo Technology Says:

    [...] 10 Things You should Know about WordPress 2.1. Some great stuff coming very very soon. I’d suggest a glance at this article before you upgrade, just to avoid surprises (some of them pleasant!). [...]

    January 22nd, 2007 at 1:14 am
  42. 42
    Sunday Quicklinks &laquo Techzoogle Says:

    [...] What to expect in Wordpress 2.1 (releasing tomorrow) [...]

    January 22nd, 2007 at 1:20 am
  43. 43
    MajorD Says:

    Great to hear this wonderful project is moving forward - wish they would implement a better spam guard.

    January 22nd, 2007 at 1:22 am
  44. 44
    john bollwitt blog » WordPress releases and betas Says:

    [...] This post about 10 things you should know about WordPress 2.1 is a really great read about the new version that should be coming out soon. In fact, this article [...]

    January 22nd, 2007 at 1:25 am
  45. 45
    Jason Says:

    Auto-save! This one feature would have been really useful a few weeks back, and now that it’s here!
    Thanks for the overview. This should be a great update for the WordPress community. Hopefully none of my custom plugins will require too much re-work.

    January 22nd, 2007 at 1:28 am
  46. 46
    Aaron Brazell Says:

    Jason: You may actually be upgrading right now because your site is a completely white page. But if you’re not upgrading, I hope now you’re aware that your site is a completely white page. :)

    January 22nd, 2007 at 1:32 am
  47. 47
    Themacthinker Says:

    Good stuff. I can’t wait to see it.

    January 22nd, 2007 at 1:34 am
  48. 48
    WordPress 2.1 will be released tomorrow. 10 things you need to know! at AY:HX - Au Yong’s Blog Says:

    [...] read more | digg story [...]

    January 22nd, 2007 at 1:58 am
  49. 49
    Nirlog.com » Blog Archive » 10 Things You should Know About WordPress 2.1 Says:

    [...] has an useful article about 10 Things You should Know About WordPress 2.1. This is a timely and useful post for those who’re planning to upgrade their Wordpress to [...]

    January 22nd, 2007 at 1:58 am
  50. 50
    MK Web - Blog » WordPress 2.1 will be released tomorrow. 10 things you need to know! Says:

    [...] read more | digg story                              Related Posts: [...]

    January 22nd, 2007 at 2:02 am
  51. 51
    » Wordpress 2.1 sort aujourd’hui ! Jeremie Berrebi Blog - Shopping, E-commerce & Internet 2.1 Says:

    [...] les fanas de Wordpress (dont je fais partie), vous trouverez ici 10 choses que vous devez savoir à propos de Wordpress 2.1 qui est la plus importante “release” de Wordpress depuis plus d’un an. Celle-ci [...]

    January 22nd, 2007 at 2:27 am
  52. 52
    WordPress 2.1 at chilibean Says:

    [...] The next major release of WordPress is version 2.1 and it should be available for download a little later today.  The new release includes better support for images and an auto-save feature for draft posts.  There may be some plugin compatability issues initially and you can find out which plugins are compatible here.  For more information on what is new in WordPress 2.1, take a look at this post on Technosailor. [...]

    January 22nd, 2007 at 2:38 am
  53. 53
    nova maneira de blogar at Caveat Emptor Says:

    [...] o mesmo caminho, especialmente os que usam vários plug-ins, é extremamente recomendável ler este post sobre as novidades da nova versão e como elas podem afetar seu [...]

    January 22nd, 2007 at 2:38 am
  54. 54
    Open WordPress » WordPress 2.1 to be released tomorrow Says:

    [...] Get ready for another update! WordPress 2.1 is set for release tomorrow. For a nice overview of what to expect in the new version, check out Technosailor’s post 10 things you should know about WordPress 2.1. [...]

    January 22nd, 2007 at 2:44 am
  55. 55
    WordPress 2.1 and what you need to know at 1FPS Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media, via ProBlogger [...]

    January 22nd, 2007 at 2:48 am
  56. 56
    | F A T M A N | » Blog Archive » Wordpress 2.10 Says:

    [...] Wordpress 2.10 slippes. Det er enda ikke kommet noen melding på hjemmesiden til Wordpress, men her finner du en veldig fin gjennomgang på hva som blir nytt og anderledes i den nye [...]

    January 22nd, 2007 at 2:59 am
  57. 57
    einfach persoenlich Sideblog Says:

    10 Things You should Know About WordPress 2.1…

    Wer sich mit einem Umstieg auf die kommende Version Wordpress 2.1 beschäftigt, für den fasst Technosailor die 10 wichtigsten Fakten zusammen, die Ihr dazu wissen solltet….

    January 22nd, 2007 at 3:02 am
  58. 58
    Ryan Boren Says:

    $table* were recently resurrected and placed in deprecated.php.

    January 22nd, 2007 at 3:14 am
  59. 59
    Kotyk.com » 10 Things about Wordpress 2.1 Says:

    [...] ten top things to know about WP 2.1 which is probably out now that you are reading this. To Do: Add to Digg | Add to Del.icio.us | [...]

    January 22nd, 2007 at 3:15 am
  60. 60
    game wallpapers Says:

    great article!

    January 22nd, 2007 at 4:27 am
  61. 61
    koz Says:

    Hello Unfonrtunately, I did not know your wordpress-t-o-wordpress migrator before I hosted my wordpress elsewhere (and did not want to try the migration of the database due to previous problems I encountered with this).

    My new blog as a 20 days existence (the other one : 1 year 1/2). Do you knwo if it will possible to use this new functionality without loosing my January’s date (entries & comments) ?

    If this is not the place to ask that question, well… sorry… and I’ll ask it elesewhere.

    And thank you for yourt article !

    January 22nd, 2007 at 4:52 am
  62. 62
    Wordpress 2.1 is closer than you think | eDragonu - the choice of a personal path Says:

    [...] “10 something thing” lists that spreaded over the blogosphere lately Aaron Brazell from technosailor puts together the latest functionality that you would expect from wordpress [...]

    January 22nd, 2007 at 4:58 am
  63. 63
    MyAppleStuff » 10 Things You should Know About WordPress 2.1 Says:

    [...] goes over my head BUT it is an area I am trying to know more about so I read it with interest. 10 Things You should Know About WordPress 2.1 #PrestoGifto{margin:0 auto;}#PrestoGifto td{vertical-align:top;text-align:center;}#PrestoGifto [...]

    January 22nd, 2007 at 5:01 am
  64. 64
    WordPress 2.1 - new and useful features » Inspiration Bit Says:

    [...] on January 22, 2007. It’s interesting to notice that if not for Technosailor’s 10 Things You should Know About WordPress 2.1 I wouldn’t be able to find out new WordPress features. Even WordPress blog links to [...]

    January 22nd, 2007 at 5:06 am
  65. 65
    Wordpress release version 2.1 Stable | Web News Says:

    [...] You can find a great overview of what’s new in Version 2.1 on the Technosailor site:  Ten things you should know about Wordpress 2.1 [...]

    January 22nd, 2007 at 5:23 am
  66. 66
    spencerp Says:

    Great article Aaron! I was going to do up an article similar to this, but, since I’ve been so busy lately, I just didn’t get to it yet.

    I know it will be too late now, with WordPress 2.1 being released sometime today. But, I might still do up an article which will be a follow-up to your’s.

    Thanks again for the great article! ;) :)

    January 22nd, 2007 at 5:39 am
  67. 67
    Torsten Curdt Says:

    These are the top 10 new features? Pretty disappointing.

    Categories are so out of date. Where is native and well integrated tagging support? What’s with Atom 1.0 support? What’s so special about this picture upload? Most people I know use flickr for their blog pictures anyway. What about proper geo support? What about an auto-update feature? With a security update every ew weeks the whole upgrade procedure is really annoying.

    Sorry, I fail to understand all the noise…

    January 22nd, 2007 at 5:43 am
  68. 68
    Újdonságok a 2.1-ben | WordPress Magyarország Says:

    [...] sablon nem fog rendesen működni, “ki tudja, mit művel” az adatbázissal, stb. Nos, Aaron Brazzel 10 új dolgot foglalt össze, amely nagyjából jellemzi az új [...]

    January 22nd, 2007 at 6:01 am
  69. 69
    Net 2.0 » Blog Archive » 10 things about Wordpress Says:

    [...] Brazell has written a beautiful and informative post about the 10 (perhaps most important) things that you should know about the latest version of Wordpress - Word…. Here are the points which are explained on the original post [...]

    January 22nd, 2007 at 6:27 am
  70. 70
    10 stvari o WordPress 2.1 - Blogowski Says:

    [...] Za sve blogere koji funkcionišu na WordPressu, interesantan članak Aaron Brazella na engleskom o 10 stvari koje bi trebali da znate o WordPress 2.1. [...]

    January 22nd, 2007 at 6:33 am
  71. 71
    Sara Says:

    I’m with Tim. It will be really nice when Wordpress offers support for Postgres users. Course I will still use Wordpress as it is a great piece of software, but I greatly prefer postgres to mysql.

    I think habari may give wordpress a run for their money especially because the software is database independent (MySQL, PostgreSQL, SQLite).

    January 22nd, 2007 at 6:56 am
  72. 72
    期待wordpress2.1 at 好吃不如饺子 Says:

    [...] WORDPRESS说22号要放出2.1版本~~~期待~~!老早就言称2.1里面有部分核心代码做了改动,部分插件可能无法正常运行。官方有个列表:A  list of plugin compatibile with WordPress version 2.1 ;Delicious和Digg里今天关于wordpress的最热门话题也是2.1啊2.1,高曝的一篇文章:10 Things You should Know About WordPress 2.1。 [...]

    January 22nd, 2007 at 7:30 am
  73. 73
    Nogg3r5 Says:

    Surely now we can All google for test.php, and steal peoples details???

    January 22nd, 2007 at 8:14 am
  74. 74
    Keith Says:

    I definitely would be delighted to get my hand dirty on this new version of WordPress. Hopefully it does meet up to expectations.

    January 22nd, 2007 at 8:23 am
  75. 75
    Franck Silvestre Says:

    I’ve just found your blog through Problogger.net.

    I will use it for my next Wordpress blogs, but for now I will hold on since I am afraid that plug-ins don’t work.

    It happen one time when I changed my template. I’ve lost my pages and sitemeter…

    January 22nd, 2007 at 8:26 am
  76. 76
    Freakitude Technology Blog » Blog Archive » Hot Picks - January 22, 2007 Says:

    [...] 10 Things You should Know About WordPress 2.1 - WordPress 2.1 will be released tomorrow. [...]

    January 22nd, 2007 at 8:34 am
  77. 77
    Wired For Gadgets » Blog Archive » Wordpress 2.1 to be released TODAY Says:

    [...] 10 Things You should Know About WordPress 2.1 [Technosailor via Digg] [...]

    January 22nd, 2007 at 8:41 am
  78. 78
    /dev/nikc/blog » Blog Archive » Kymmenen asiaa WordPress 2.1:stä Says:

    [...] 10 Things You should Know About WordPress 2.1 [...]

    January 22nd, 2007 at 8:43 am
  79. 79
    Frihetens vingar » Blog Archive » Idag släpps Wordpress 2.1 Says:

    [...] Läs mer om: Wordpress 2.1 [...]

    January 22nd, 2007 at 9:00 am
  80. 80
    Rene Kriest Says:

    Thanks for your explanations. I appreciate them.

    And BTW: I didn´t know about your wp-to-wp tools before this posting. ;)

    Regards,

    René

    January 22nd, 2007 at 9:01 am
  81. 81
    FreeCharity.org.uk » Impending release of Wordpress 2.1 Says:

    [...] It appears that Wordpress 2.1, upon which our hosting is based, will be released in the next few days, perhaps as soon as tomorrow. 2.1 is the first major release since 2.0 was released almost a year ago and promises several new features: [...]

    January 22nd, 2007 at 9:12 am
  82. 82
    Through My Lense » Blog Archive » Upgrading to WordPress 2.1 Says:

    [...] Article [...]

    January 22nd, 2007 at 9:31 am
  83. 83
    Aaron Brazell Says:

    Ryan: Thanks. Wonder how I missed that. I’ve updated the post to indicate that most plugins will not now break because the $table* variables have been, at least temporarily, re-enabled.

    January 22nd, 2007 at 10:00 am
  84. 84
    Mike Irwin Says:

    Cool article, thanks for the info. I am probably going to hold off for a little while before switching to 2.1 (I’m on 2.0.7 now), to make sure there are no major problems.

    January 22nd, 2007 at 10:06 am
  85. 85
    Wordpress 2.1: more than just a bugfix » All Tips and Tricks Says:

    [...] will include new functionality. If you think to upgrade your Wordpress version, you better read the 10 things you should know about Wordpress 2.1, published at [...]

    January 22nd, 2007 at 10:14 am
  86. 86
    Novidades do Wordpress 2.1 » Teknologico Says:

    [...] Brazell, do Technosailor, mostra-nos algumas das novas funcionalidades do Wordpress 2.1, que vai ser hoje [...]

    January 22nd, 2007 at 10:16 am
  87. 87
    10 Fakten die man über Wordpress 2.1 wissen sollte » Bloganbieter.de Says:

    [...] Aaron Brazell auf seinem Technosailor Blog zusammengetragen. Und nachdem heute der neue Major release 2.1 veröffentlich werden soll, sind [...]

    January 22nd, 2007 at 10:23 am
  88. 88
    brandy Says:

    might be worth noting the big bbPress update too. :)

    January 22nd, 2007 at 10:54 am
  89. 89
    Wordpress Releases WP 2.1 - 9tin20.com Says:

    [...] Aaron Brazell has a post written about the 10 Things You Should Know About WordPress 2.1 before it releases tomorrow. He writes about the new additions found in the latest release which [...]

    January 22nd, 2007 at 10:59 am
  90. 90
    nonsmokingarea.com » Blog Archive » roundup for 2007-01-22 Says:

    [...] 10 things you should know about wordpress 2.1, which should be released later today. [...]

    January 22nd, 2007 at 11:03 am
  91. 91
    sremington.com » Word Press 2.1 Says:

    [...] Some of us are aware that Wordpress 2.1 has been released. Technosailor from b5media gives us 10 Things You Should Know About Wordpress 2.1. [...]

    January 22nd, 2007 at 11:12 am
  92. 92
    WordPress 2.1 due out later today at Tom Raftery’s I.T. views Says:

    [...] WordPress - version 2.1 is to be released later today and Aaron Brazell has a good post outlining 10 features of WordPress 2.1 you should be aware [...]

    January 22nd, 2007 at 11:17 am
  93. 93
    Dmitriy’s Blog » Wordpress 2.1 Says:

    [...] I just upgraded to 2.0, and guess what? 2.1 is coming today. =] [...]

    January 22nd, 2007 at 11:30 am
  94. 94
    GfxDizayn » Ortaya karışık… Says:

    [...] Wordpress 2.1 hakkında bilmeniz gerekn 10 şey Pixel patterns Mollio ücretsiz XHTML/CSS şablonlar Bir tane daha [...]

    January 22nd, 2007 at 11:34 am
  95. 95
    DELETE YOURSELF! » Blog Archive » WordPress 2.1 - к чему готовиться? Says:

    [...] января), чего нам стоит от нее ожидать? В сети появился довольно большой пост на эту тему, но переводить его полностью я не вижу смысла, поэтому [...]

    January 22nd, 2007 at 12:21 pm
  96. 96
    What’s New in Wordpress 2.1? :: Cucirca.com Says:

    [...] it out. blog, wordpress 8 Views (No Ratings Yet)  Loading [...]

    January 22nd, 2007 at 12:58 pm
  97. 97
    TechDip » 10 Things You should Know About WordPress 2.1 Says:

    [...] Read full article Wordpress          [...]

    January 22nd, 2007 at 1:21 pm
  98. 98
    wehuberconsultingllc.com » Blog Archive » 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media Says:

    [...] Source: 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media [...]

    January 22nd, 2007 at 1:24 pm
  99. 99
    Kieran O'Shea Says:

    Thanks for the clear write up and explanation of the new features in WordPress 2.1

    I was previously going to hold off moving to 2.1 but now I hear that plugins using depricated code will still work I can migrate any that need tweaking at my own pace meaning upgrading should be much easier, and that I can make the most of the benefits of upgrading straight away.

    January 22nd, 2007 at 1:36 pm
  100. 100
    ProBlog Says:

    10 вещей, которые вы должны знать о WordPress 2.1…

    Сегодня должна быть выпущена новая версия Wordpress 2.1. Aaron Brazell написал интересную заметку , чего следует ожидать пользователям Wodrress в новой в…

    January 22nd, 2007 at 1:51 pm
  101. 101
    Marco Raaphorst Says:

    That makes everything clear. Thanks for the well written post!

    January 22nd, 2007 at 2:06 pm
  102. 102
    10 Things You should Know About WordPress 2.1 at BlogThe.Net Says:

    [...] Read it technosailor.com. [...]

    January 22nd, 2007 at 2:11 pm
  103. 103
    Linux For Dummies » Wordpress 2.1 Says:

    [...] Ecco una lista delle cose da sapere sulla nuova versione. [...]

    January 22nd, 2007 at 2:22 pm
  104. 104
    Link Roundup (1/22/2007) » The Bivings Report Says:

    [...] 10 Things You should Know About WordPress 2.1A breakdown of the key new features in the latest version of the blog platform, Wordpress.  Version 2.1 will be released sometime today on Wordpress.org. [...]

    January 22nd, 2007 at 2:37 pm
  105. 105
    7 seconden » 2.1 Says:

    [...] ja, en lees ook dit eventjes. Hoeft u mij niet lastig te vallen met de vraag wat er nu allemaal veranderd is. Door Michael [...]

    January 22nd, 2007 at 3:22 pm
  106. 106
    10 Things You Should Know About WordPress 2.1 : Losing it[1] Says:

    [...] Aaron Brazell has written a nice piece on the due to be released any minute now WordPress 2.1: 10 Things You should Know About WordPress 2.1. [...]

    January 22nd, 2007 at 3:58 pm
  107. 107
    Novedades de Wordpress 2.1 | Macropsia Says:

    [...] ver más detalles sobre estos cambios en el Codex de Wordpress o en el artículo 10 Things You should Know About WordPress 2.1; y los más ya ansiosos pueden bajar una versión release candidate de Wordpress [...]

    January 22nd, 2007 at 4:21 pm
  108. 108
    fullyproductive.com » Blog Archive » New Wordpress Release Says:

    [...] looks like there’s going to be some nice additions in Wordpress 2.1. I will be really pleased to get my [...]

    January 22nd, 2007 at 4:22 pm
  109. 109
    The Protagonist » Blog Archive » Wordpress 2.1 - Ten Things Says:

    [...] Technosailor: Ten Things You Should Know About Wordpress 2.1 [...]

    January 22nd, 2007 at 4:26 pm
  110. 110
    Čo prináša blogerom nový Wordpress 2.1? na depi.sk - IT & Life Weblog Says:

    [...] podrobností ohľadom zmien nájdete priamo v článku 10 Things You should Know About WordPress 2.1 a čoskoro určite aj všade okolo na blogoch :) Páčil sa Ti článok Čo prináša [...]

    January 22nd, 2007 at 4:50 pm
  111. 111
    Mayor compatiblidad de los plugins de Wordpress 2.0.x en Wordpress 2.1 « Soporte-Wordpress Says:

    [...] Fuente: Technosailor [...]

    January 22nd, 2007 at 4:51 pm
  112. 112
      10 Things You Should Know About WordPress 2.1 by Blogging Pro Says:

    [...] Brazell, one of the b5media members, and better known to me as Technosailor has put up a post about WordPress 2.1 that gives us some details we should know before its upcoming [...]

    January 22nd, 2007 at 4:57 pm
  113. 113
    Andrea Beggi » Cose da sapere su WordPress 2.1 Says:

    [...] Technosailor pubblica un elenco delle cose da sapere sull’ultima versione di WordPress. L’articolo non è sotto licenza Creative Commons, quindi non voglio tradurlo, ma ne faccio un veloce riassunto. [...]

    January 22nd, 2007 at 5:08 pm
  114. 114
    升级到 Wordpress 2.1 RC2 | 巧克力工厂 (Beta3) Says:

    [...] Wordpress 的问题。不升的理由没有了,于是今天忍不住我把 Blog 升了。(更新:According to Ryan Boren from WordPress, these variables have been “ressurrected” and placed [...]

    January 22nd, 2007 at 5:24 pm
  115. 115
    » Las novedades de Wordpress 2.1 =(o.o)= ctrl-F5 Says:

    [...] Traducido de: Technosailor [...]

    January 22nd, 2007 at 5:53 pm
  116. 116
    Edwin Says:

    Great article, I’m definitely going to upgrade tomorrow.

    January 22nd, 2007 at 6:16 pm
  117. 117
    WordPress 2.1 Scratches All My Itches at The Gong Show Says:

    [...] anyone blogging in WordPress, this list of “10 things you should know about WordPress” will get your heart [...]

    January 22nd, 2007 at 6:26 pm
  118. 118
    WordPress 2.1 Released - JakeJarvis.com Says:

    [...] released. Only a week after the last point release, this version brings not only bug fixes, but new features including improved image uploading, a new WYSIWYG editor, automatic saving of drafts, and more. [...]

    January 22nd, 2007 at 7:03 pm
  119. 119
    Wordpress 2.1 Now Available Says:

    [...] 2.1 - codenamed Ella. Can’t wait to take Ella for a test drive. This is a pretty significant upgrade with lots of new [...]

    January 22nd, 2007 at 7:16 pm
  120. 120
    Niklas’ blog » Blog Archive » WordPress 2.1 hits like a frikkin’ rock Says:

    [...] WordPress, the best blogging platform in the world, has gone v2.1 which means a bunch of things. [...]

    January 22nd, 2007 at 7:45 pm
  121. 121
    SearchRoads » final fantasy lesbian WordPress 2.1 will be released tomorrow. 10 things you need to know! Says:

    [...] updated visual editor with code tab, and image upload radio buttons. final fantasy hentai comicsread more | digg [...]

    January 22nd, 2007 at 7:52 pm
  122. 122
    Deep Jive Interests » Recommended Reads for January 22, 2007 Says:

    [...] 10 Things You should Know About WordPress 2.1 Aaron Brazell gives it the once over for all us WP fans. Know what I’m looking forward too? Auto-save, the improved image handling, and editing. Interesting tidbit? “Nonces”! (tags: 2.1 technosailor update wordpress) [...]

    January 22nd, 2007 at 8:01 pm
  123. 123
    EdVentures in Technology » Daily Links 01/22/2007 Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media  Annotated(4) Auto-save of Drafts [...]

    January 22nd, 2007 at 8:10 pm
  124. 124
    WordPress 2.1 has been released, and it may be the perfect platform for real estate web sites as well as weblogs . . . | BloodhoundBlog | There's always something to howl about... Says:

    [...] Ten Things You should Know About WordPress 2.1. Best news: A lot of legacy code that was to have been killed is retained, albeit deprecated, so most 2.0.x plug-ins should still work. [...]

    January 22nd, 2007 at 8:47 pm
  125. 125
    testblog » links for 2007-01-23 Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media (tags: wordpress) [...]

    January 22nd, 2007 at 8:50 pm
  126. 126
    Low Mileage Food » Nifty Stuff From Around the Web Says:

    [...] for free. A New Sith, or Revenge of the Hope: Reconsidering Star Wars IV in the light of I-III 10 Things You should Know About WordPress 2.1. Many of you run Wordpress, so I thought you might find this helpful. Some oops and other silly [...]

    January 22nd, 2007 at 9:25 pm
  127. 127
    Wordpress 2.1 Released at DieselFueled Says:

    [...] a link to the official Wordpress 2.1 page, and Aaron Brazell’s post, The 10 Things You Should Know About Wordpress 2.1. Tags: blogging, Wordpress Filed under: blogging   |   Tags: blogging, [...]

    January 22nd, 2007 at 10:37 pm
  128. 128
    Jeren testiblogi » Blog Archive » links for 2007-01-23 Says:

    [...] 10 Things You should Know About WordPress 2.1 2.1 should be published today. I’m really waiting for an update on WPMU. (tags: wordpress blogging) [...]

    January 22nd, 2007 at 10:41 pm
  129. 129
    苦牢之最後一年 Says:

    WordPress 2.1…

    又要升級了…

    一如預告所言,今天 WordPress 推出了 2.1,有很多重要的新功能,例如自動暫存、新編輯器、更有效率的資料庫存取動作… 之類的;大家之前很擔心的 plugin 相容性問題,…..

    January 22nd, 2007 at 10:43 pm
  130. 130
    Clickfire Webmaster News » Wordpress 2.1 Released Says:

    [...] Read more about what has been added or view the comments at the digg post Share this news:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]

    January 22nd, 2007 at 10:54 pm
  131. 131
    » Blog Archive » links for 2007-01-23 Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media So what is new in WordPress 2.1? (tags: WordPress) [...]

    January 22nd, 2007 at 11:23 pm
  132. 132
    WordPress 2.1 is out » Ajay - On the Road called Life! Says:

    [...] new version comes feature packed with several new additions. Technosailor gives you some detail while the WordPress Blog release post just lists them out for quick [...]

    January 22nd, 2007 at 11:44 pm
  133. 133
    Wordpress 2.1 Plugin Testing » BloggerDesign : Design Optimization Usability from TopRank Online Marketing Says:

    [...] 2.1 has been released and one of the biggest changes has to do with plugins. Reading 10 Things You should Know About WordPress 2.1 they said “many plugins will no longer work in [...]

    January 23rd, 2007 at 12:03 am
  134. 134
    Keanen Says:

    Anyone tried to upgrade with postie installed?

    January 23rd, 2007 at 1:08 am
  135. 135
    Madthiu’s PALACE :: 十件你應該認識 Wordpress 2.1 的事 Says:

    [...] WordPress 2.1 還沒推出的昨天,我在 Technosailor 就看到這篇 “10 Things You should Know About WordPress 2.1“。在對 WordPress 2.1 [...]

    January 23rd, 2007 at 1:42 am
  136. 136
    WordPress 2.1 - eindelijk at Enthousiasmeren Says:

    [...] Gezien het succes van zijn artikel op Problogger.net over 10 die je moet weten over WorPress 2.0 heeft Aaron Brazell 21 januari een mooi artikel geplaatst over de 10 dingen die je moet weten over WordPress 2.1. [...]

    January 23rd, 2007 at 2:16 am
  137. 137
    Daryl Teo Says:

    Just when I was in the middle of integrating Flash 9 and Wordpress 2.0.7, you do this to me! Noo!!!

    Hurry up and release it you dogs! - jk jk - =)

    January 23rd, 2007 at 2:39 am
  138. 138
    HART (1-800-HART) Says:

    WooHoo! 2.1 is released!

    Now then .. when will 2.1.1 be available?

    just kidding :)

    But .. I did just upgrade my Pap site directly from 1.5.2 to 2.1 version. My biggest problems that I had, was the pre/post compatibility issues of my template, and plugins. A lot of code for plugins in my templates had to be removed. My Random Excerpt plugin brought forth a death black screen, but there were plugins I activated that were “not on the approved list” that do work (so far that is - knock on wood)

    January 23rd, 2007 at 2:57 am
  139. 139
    Wordpress 2.1 è tra noi Says:

    [...] dovrebbero provare ad aggiornare una versione di test del proprio blog e leggere questo piccolo memorandum. PUBBLICITÀ PUBBLICITÀ postato da Fullo il martedì 23 gennaio 2007 [...]

    January 23rd, 2007 at 3:55 am
  140. 140
    Nailos » Blog Archive » WordPress 2.1 “Ella” Says:

    [...] has gone okay, all of my data and all of my plugins are working as supposed. You may want to read 10 things you should know about WordPress 2.1, by Aaron [...]

    January 23rd, 2007 at 4:08 am
  141. 141
    Stephen Says:

    Great article. I’ll try this upgrade on my other installed WP.

    January 23rd, 2007 at 4:15 am
  142. 142
    Wordpress 2.1 - “Ella” - veröffentlicht bei im web gefunden Says:

    [...] Änderungen, die es in Wordpress 2.1 gibt. Ergänzungen dazu findet man im Artikel “10 Things You should Know About WordPress 2.1” (via weblog tools collection), der weitere Details zur neuesten Wordpress-Version [...]

    January 23rd, 2007 at 4:16 am
  143. 143
    WP 2.1 - Safe for your blog? at Technological Winter Says:

    [...] plugins, how to test etc. Plugins Updated For WordPress 2.1 by Gamerz Wordpress 2.1 Plugin Testing 10 Things You should Know About WordPress 2.1 a big thanks to Josh Bancroft of tinyscreenfuls.com for finding this [...]

    January 23rd, 2007 at 4:31 am
  144. 144
    Swank Web Style » 10 things you should know about WP 2.1 Says:

    [...] 10 things you should know about WP 2.1. Posted terribly early in the morning by Swank   [...]

    January 23rd, 2007 at 4:34 am
  145. 145
    Matt Cutts: Gadgets, Google, and SEO » What did I miss last week? Says:

    [...] WordPress, especially since: - In bigger WordPress news, version 2.1 just came out. Here’s 10 things you might want to know about the new version. The high-order bit for me is that WordPress 2.1 introduces an autosave [...]

    January 23rd, 2007 at 4:40 am
  146. 146
    Wordpress 2.1 veröffentlicht | Mallorca Says:

    [...] Infos bei perun, wordpress.org und technosailor Weitere Artikel zu diesem Thema: - Ford setzt auf Wordpress  Das Mallorca Blog [...]

    January 23rd, 2007 at 4:49 am
  147. 147
    If It’s Free, There Must Be a Catch! » Jack Of All Blogs Says:

    [...] Aaron Brazell writes about the upcoming release of version 2.1 of WordPress. [...]

    January 23rd, 2007 at 5:16 am
  148. 148
    asianTom Says:

    wordpress is by far the best blog software i have ever used. Keep up the good work.  AsianTom -
    http://www.asiantom.com

    January 23rd, 2007 at 6:15 am
  149. 149
    Pragmatic Dictator » Blog Archive » links for 2007-01-22 Says:

    [...] 10 Things You should Know About WordPress 2.1 (tags: blogging blog software) [...]

    January 23rd, 2007 at 7:01 am
  150. 150
    The Blog Columnist » Blog Archive » Trying out WordPress 2.1 - First Thoughts: A Bit of a Yawn Says:

    [...] | The Gong Show | Duncan Riley | JohnTP.com | Eches Blog | Technological Winter | Technosailer [...]

    January 23rd, 2007 at 7:41 am
  151. 151
    интернетные штучки » Вышла новая версия Wordpress Says:

    [...] ссылок по теме, рекомендую статью Аарона Бразелля 10 Things You should Know About WordPress 2.1 и запись в официальном [...]

    January 23rd, 2007 at 8:10 am
  152. 152
    WordPress: Version 2.1 ist angekündigt :: frank huncks blog Says:

    [...] über die neuen Funktionen gibt es auf Technosailer.com (eher technische Aspekte, englisch), mallorca-blog.de (deutsch, erster [...]

    January 23rd, 2007 at 8:16 am
  153. 153
    ve WordPress v2.1 » Acemi Blogcu Says:

    [...] Technosailor: 10 Things You should Know About WordPress 2.1 [...]

    January 23rd, 2007 at 9:13 am
  154. 154
    Nick Starr.com : Nick Starr dot com » Wordpress 2.1 “Ella” Released Says:

    [...] Make sure to backup your database before you install and deactivate your plugins. Doesn’t seem to be much of a change between the RC1, but you can read all of the new features here, and 10 Things you should know about Wordpress 2.1. [...]

    January 23rd, 2007 at 9:23 am
  155. 155
    Wordpress 2.1 Released Says:

    [...] to upgrade your version of wordpress, some cool new features, as I previously highlighted. Here is 10 Things You should Know About WordPress 2.1. Tags:wordpressShare [...]

    January 23rd, 2007 at 10:58 am
  156. 156
    tanjadebie.nl » Alweer een Wordpress update, wel of niet doen?! Says:

    [...] er eerst even induiken wat de verbeteringen zijn. Na het lezen van de Development Blog, JohnTP en Technosailor was ik eigenlijk al [...]

    January 23rd, 2007 at 11:08 am
  157. 157
    Daryl Teo Says:

    Question. I’ve been digging through the mySql.

    wp_posts has a column called post_category. But there is a table dedicated for categorisation (wp_post2cat). So what is that field used for? Backward compatability? Seems silly… they’re all 0 (default)

    January 23rd, 2007 at 11:20 am
  158. 158
    links for 2007-01-23 · Lawsy.net Says:

    [...] 10 Things You should Know About WordPress 2.1 Before the newest release of Wordpress comes out you might want to be prepared for what to expect. Plugins will break, archives will be massacred oh the pain! (tags: wordpress webdev) [...]

    January 23rd, 2007 at 12:12 pm
  159. 159
    BabyBusiness Says:

    Excellent write-up. I often get the question of “why do you need to upgrade?” and “If it’s not broken, don’t fix it”.

    You just gave me some ammo to fight of pesky questions about upgrades of WP.

    I found that the ditching of support for old MySql 3 was a MAJOr issue as some of the folks I deal with still run that old bugger ;)
    Thanks!

    January 23rd, 2007 at 12:22 pm
  160. 160
    Aaron Brazell Says:

    Baby: There is talk of setting the min MySQL to 4.1 in 2.2 ;)

    January 23rd, 2007 at 12:28 pm
  161. 161
    Asslig Says:

    I would really like to see Wordpress 2.1 running on my server. But I think I will wait some weeks before updating. Many plugins I use still don’t support WP 2.1.

    January 23rd, 2007 at 12:28 pm
  162. 162
    Learning Reiot » Blog Archive » Wordpress 2.1 업그레이드? Says:

    [...] 했다. 일단은 까페24에 mysql 버전업에 대해서 문의해둔 상태다. 역시 WP2.1을 깔기 전에 알아야 할 10가지를 빠뜨린 탓 [...]

    January 23rd, 2007 at 12:40 pm
  163. 163
    ZB Now on WordPress 2.1 - from The Zero Boss by Jay Andrew Allen Says:

    [...] self-hosted installation of WordPress as your blogging platform, I recommend considering the jump. Check out Aaron Brazell’s summary of the new features and current compatibility conflicts to decide whether now’s the [...]

    January 23rd, 2007 at 1:24 pm
  164. 164
    Marketing in Pakistan Says:

    I also want to see WordPress on my website but I only have one concern i.e. what if there is a serious & critical security bug discovered (e.g. MySpace Spam King issue) and I don’t upgrade my installation. Somebody will hack my blog. And I have experienced it few years back while experimenting with PHPNuke which was the then great CMS alternative!

    January 23rd, 2007 at 2:00 pm
  165. 165
    CIO Jerry Says:

    I had a problem after upgrading wordpress 2.0.7 server to 2.1 on a FC6 server this morning. The editor is ‘code’ only and no tabs shown at all to switch between the two modes. I have a
    screenshot here for anybody interested to help me troubleshoot. Any pointer is appreciated.

    January 23rd, 2007 at 3:26 pm
  166. 166
    links for 2007-01-23 - Aspiring Spirit Says:

    [...] 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media (tags: wordpress) [...]

    January 23rd, 2007 at 3:28 pm
  167. 167
    Aaron Brazell Says:

    You probably have the option set on your profile page to not use the Visual Text Editor.

    January 23rd, 2007 at 3:29 pm
  168. 168
    CIO Jerry Says:

    I thought of that too, so I checked all the options under the Admin’s dashboard, esp. options/writing. Can you be more specific on where this ‘profile page’ is?

    January 23rd, 2007 at 3:52 pm
  169. 169
    WordPress 2.1 Plugin Compatability Says:

    [...] new features and over 550 bug fixes which you can read at your leisure using the above link. Technosailor has provided a nice overview of the new 2.1 release if you don’t fancy reading through all [...]

    January 23rd, 2007 at 3:54 pm
  170. 170
    the8thsign » Wordpress 2.1 Released Says:

    [...] [10 Things You sh