WordPress Bids Farewell to PHP 4 and MySQL 4

Posted by admin in WordPress, mysql, ph... | 07.25.2010 - 10:15 pm

After five years of dedicated support, WordPress will be leaving PHP 4 and MySQL 4 behind for the far more current and secure PHP 5 and MySQL 5. WordPress 3.2, planned to launch during the first half of 2011, will be the first release to require PHP 5.2 or higher and MySQL 5.0.15 or higher.
The change really comes as no surprise. Both PHP 5 and MySQL 5 are far more secure than their predecessors and they are actively developed. How long has it been since an update was made to PHP 4 and MySQL 4? The final version of PHP 4 was released during August of 2008, followed by the final version of MySQL 4 on December of 2008. Both PHP 4 and MySQL 4 have been discontinued for almost two years.
The WordPress team is confident that the change in requirements will be relatively inconsequential. According to Mark […]

Original post by James Huff

    Technorati Tags:


    Do You Have Class?

    Posted by admin in WordPress, mysql, ph... | 01.26.2010 - 2:37 am

    I have hard time understanding the basis of this article but I wanted to link to it because I know many in the WeblogToolsCollection audience are coders themselves and it would be interesting to see the conversation that arises from Andrew’s post. WordPress coders have no class. At least, that’s what Andrew says in his post that discusses object oriented code being used in a non-object oriented environment.
    What do I mean by a non-object oriented environment? Well, firstly WordPress still does not require PHP5 for core code so there are limits to how many of the techniques it can use anyway. Secondly, WordPress has been around for a long time and has been developed by many contributors looking to achieve specific things with each patch without having a particular architecture imposed, except by committee.
    WordPress developers tend to start as users who learn PHP in fits-and-starts when they need […]

    Original post by Jeff Chandler

      Technorati Tags:


      If, Then, Else

      Posted by admin in WordPress, mysql, ph... | 08.10.2008 - 3:27 am

      Ever become brave enough to look inside of a WordPress php file? Specifically, a php file from a theme? If you have, you may have noticed that they are filled with If, Then, and Else statements. If you have no idea what these mean, this post is for you.
      Php has always been a pain for me to understand, but if you think about it in a logical manner, it begins to make sense. If, then and else statements are used as a means of making decisions, similar to the way you and I make decisions in the real world. Here is an example of how this logic works in WordPress.
      < ?php if (have_posts()) : ?>
      The if statement within that php function is asking if there are posts. If the blog has posts, WordPress begins processing what is known as “The Loop“.
      <? php while (have_posts()) : the_post(); ?>
      This piece of code […]

      Original post by Jeff Chandler

        Technorati Tags: