<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:php="http://php.net/ns/news" xmlns:xi="http://www.w3.org/2001/XInclude">
  <title>PHP.net news &amp; announcements</title>
  <updated>2012-05-08T12:44:07-05:00</updated>
  <link href="http://www.php.net/feed.atom" rel="self"/>
  <icon>http://php.net/images/news/php-logo.gif</icon>
  <id>http://php.net/archive/index.php</id>
  <author>
    <name>Webmaster</name>
    <uri>http://php.net/contact</uri>
    <email>php-webmaster@lists.php.net</email>
  </author>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-05-08-1.xml">
  <title>PHP 5.4.3 and PHP 5.3.13 Released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-05-08-1</id>
  <published>2012-05-08T19:44:07+02:00</published>
  <updated>2012-05-08T19:44:07+02:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-05-08-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-05-08-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The PHP development team would like to announce the immediate
     availability of PHP 5.4.3 and PHP 5.3.13. All users are encouraged
     to upgrade to PHP 5.4.3 or PHP 5.3.13</p>

     <p>The releases complete a fix for a <a href="http://www.php.net/archive/2012.php#id2012-05-03-1">vulnerability</a>
     in CGI-based setups (CVE-2012-2311). <i>Note: mod_php and php-fpm are not vulnerable to this attack.</i></p>

     <p>PHP 5.4.3 fixes a buffer overflow vulnerability in the
     <a href="http://php.net/manual/function.apache-request-headers.php">apache_request_headers()</a> (CVE-2012-2329).
     The PHP 5.3 series is not vulnerable to this issue.</p>

     <p>For source downloads of PHP 5.4.3 and PHP 5.3.13 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
     Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
     The list of changes are recorded in the <a href="http://www.php.net/ChangeLog-5.php">ChangeLog</a>.</p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-05-06-1.xml">
  <title>PHP 5.3.12 and 5.4.2 and the CGI flaw (CVE-2012-1823)</title>
  <id>http://www.php.net/archive/2012.php#id2012-05-06-1</id>
  <published>2012-05-06T23:00:36+02:00</published>
  <updated>2012-05-06T23:00:36+02:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <link href="http://www.php.net/index.php#id2012-05-06-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-05-06-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
    <p>PHP 5.3.12/5.4.2 do not fix all variations of the CGI issues described
    in CVE-2012-1823. It has also come to our attention that some sites use
    an insecure cgiwrapper script to run PHP. These scripts will use <strong>$*</strong>
    instead of <strong>"$@"</strong> to pass parameters to php-cgi which causes a number of
    issues. Again, people using mod_php or php-fpm are not affected.</p>

    <p>
    One way to address these CGI issues is to reject the request if the query string
    contains a '-' and no '='. It can be done using Apache's mod_rewrite like this:

    <pre>
    RewriteCond %{QUERY_STRING} ^[^=]*$
    RewriteCond %{QUERY_STRING} %2d|\- [NC]
    RewriteRule .? - [F,L]
    </pre>

    Note that this will block otherwise safe requests like ?top-40 so if you
    have query parameters that look like that, adjust your regex accordingly.</p>
    
    <p>Another set of releases are planned for Tuesday, May, 8th. These
    releases will fix the CGI flaw and another CGI-related issue in
    apache_request_header (5.4 only).</p>

    <p>We apologize for the inconvenience created with these releases and the
    (lack of) communication around them.</p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-05-03-1.xml">
  <title>PHP 5.3.12 and PHP 5.4.2 Released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-05-03-1</id>
  <published>2012-05-03T18:00:36+02:00</published>
  <updated>2012-05-03T22:58:36+01:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-05-03-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-05-03-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     
     <p>There is a vulnerability in certain CGI-based setups <b>(Apache+mod_php and nginx+php-fpm are not affected)</b>
     that has gone unnoticed for at least 8 years. <a href="http://tools.ietf.org/html/draft-robinson-www-interface-00#section-7">Section
     7 of the CGI spec</a> states:</p>
     
     <cite>
        Some systems support a method for supplying a [sic] array of strings to the
        CGI script. This is only used in the case of an `indexed' query. This
        is identified by a "GET" or "HEAD" HTTP request with a URL search
        string not containing any unencoded "=" characters.
     </cite>
     
     <p>So, requests that do not have a "=" in the query string are treated
     differently from those who do in some CGI implementations. For PHP this
     means that a request containing ?-s may dump the PHP source code for the
     page, but a request that has ?-s&amp;=1 is fine.</p>
     
     <p>A large number of sites run PHP as either an Apache module through
     mod_php or using php-fpm under nginx. Neither of these setups are
     vulnerable to this. Straight shebang-style CGI also does not appear to
     be vulnerable.</p>
     
     <p>If you are using Apache mod_cgi to run PHP you may be vulnerable. To see
     if you are, just add ?-s to the end of any of your URLs. If you see your
     source code, you are vulnerable. If your site renders normally, you are not.</p>
     
     <p>To fix this, update to PHP 5.3.12 or PHP 5.4.2. </p>
     
     <p>We recognize that since CGI is a rather outdated way to run PHP, it may not be feasible to
     upgrade these sites to a modern version of PHP. An alternative is to
     configure your web server to not let these types of requests with query
     strings starting with a "-" and not containing a "=" through. Adding a
     rule like this should not break any sites. For Apache using mod_rewrite
     it would look like this:</p>
     
     <pre>
         RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC]
         RewriteRule ^(.*) $1? [L]
     </pre>
     
     <p>If you are writing your own rule, be sure to take the urlencoded ?%2ds
     version into account.</p>
     
     <p>Making a bad week worse, we had a bug in our bug system that toggled the
     private flag of a bug report to public on a comment to the bug report
     causing this issue to go public before we had time to test solutions to
     the level we would like. Please report any issues via <a href="https://bugs.php.net/">bugs.php.net</a>.</p>
     
     <p>For source downloads of PHP 5.3.12 and PHP 5.4.2 please visit
     our <a href="/downloads.php">downloads page</a>, Windows binaries can be found
     on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. A
     <a href="/ChangeLog-5.php#5.4.2">ChangeLog</a> exists.</p>
     

    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2012-04-27-1.xml">
  <title>DevConf 2012</title>
  <id>http://www.php.net/archive/2012.php#id2012-04-27-1</id>
  <published>2012-04-27T05:20:52+00:00</published>
  <updated>2012-04-27T05:20:52+00:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-06-10</default:finalTeaserDate>
  <category term="conferences" label="Conference announcement"/>
  <link href="http://www.php.net/conferences/index.php#id2012-01-20-1" rel="alternate" type="text/html"/>
  <default:newsImage xmlns="http://php.net/ns/news" link="http://devconf.ru" title="DevConf 2012">devconfru2012.png</default:newsImage>
  <link href="http://devconf.ru" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
      DevConf 2012 in Moscow, Russia on Jun 9 - Jun 10
     </p>
	 <p>
      DevConf is the ultimate meeting place for russian-speaking web-developers, 
      combining several language-specific conferences under one roof.  
     </p>
	 <p>
      This year DevConf will include the following sections:
     </p>
     <ul>
      <li>DevConf::PHP();</li>
      <li>DevConf::Perl();</li>
      <li>DevConf::RoR();</li>
      <li>DevConf::Python();</li>
      <li>DevConf::Javascript();</li>
     </ul>
     <p>
       Each section will feature several talks from the active contributors/authors of the language. 
       Among the invited speakers are Derick Rethans (<a href="http://xdebug.org">XDebug</a> creator), 
	   David Soria Parra (active PHP contributor), Andrey Aksyonov (author of <a href="http://sphinxsearch.com">Sphinx</a>), 
	   Alexander Makarov (one of the main contributors to <a href="http://www.yiiframework.com">Yii</a>), 
	   Sergey Petrunya (of <a href="http://mariadb.org">MariaDB</a> fame), Ilya Alekseev (<a href="http://openstack.org">OpenStack</a> Nova contributor) 
	   and many others, see more details on <a href="http://devconf.ru">the official website</a>.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-04-26-1.xml">
  <title>PHP 5.3.11 And PHP 5.4.1 Released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-04-26-1</id>
  <published>2012-04-26T10:50:38+00:00</published>
  <updated>2012-04-26T10:50:38+00:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-04-26-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-04-26-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The PHP development team announces the immediate availability of PHP 5.3.11 and PHP 5.4.1. These releases focuses on improving the stability of the current PHP branches with over 60 bug fixes, some of which are security related.</p>
     
     <p>Security Enhancements for both PHP 5.3.11 and PHP 5.4.1:</p>
     
     <ul>
     <li>Fixed bug #54374 (Insufficient validating of upload name leading to corrupted $_FILES indices). (CVE-2012-1172).</li>
     <li>Add open_basedir checks to readline_write_history and readline_read_history.</li>
     </ul>
     
     <p>Security Enhancement affecting PHP 5.3.11 only:</p>
     
     <ul>
     <li>Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831).</li>
     </ul>
     
     <p>Key enhancements in these releases include:</p>
     
     <ul>
     <li>Added debug info handler to DOM objects.</li>
     <li>Fixed bug #61172 (Add Apache 2.4 support).</li>
     </ul>
     
     <p>For a full list of changes in PHP 5.3.11 and PHP 5.4.1, see the <a href="/ChangeLog-5.php">ChangeLog</a>. For source downloads please visit
     our <a href="/downloads.php">downloads page</a>, Windows binaries can be found
     on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.</p>
     
     <p>All users of PHP are strongly encouraged to upgrade to PHP 5.3.11 or PHP 5.4.1.</p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-04-13-1.xml">
  <title>PHP 5.4.1RC2 Released for Testing</title>
  <id>http://www.php.net/archive/2012.php#id2012-04-13-1</id>
  <published>2012-04-13T13:37:44+02:00</published>
  <updated>2012-04-13T15:56:23+01:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-04-13-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-04-13-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
      <p>
        The PHP development team would like to announce the 2nd
        <a href="http://qa.php.net">release candidate</a> of PHP 5.4.1.
         Windows binaries can be downloaded from the
        <a href="http://windows.php.net/qa/">Windows QA site</a>.
      </p>
      <p>
        <strong>
          THIS IS A RELEASE CANDIDATE - DO NOT USE IT IN PRODUCTION!
        </strong>
      </p>
      <p>
        This is the 2nd release candidate. The release candidate phase is
        intended as a period of bug fixing prior to the stable release.
        The release candidate fixes a critical issue when using the internal
        classes in multiple threads.
      </p>
      <p>
        A complete list of changes since the last release candidate can be
        found in the
        <a href="http://git.php.net/?p=php-src.git;a=blob;f=NEWS;h=d647f8de7cf080b599a73e092d683273fbf744e8;hb=fa1437b144683eae4d253473c35e375f7b743811">NEWS</a>
        file.
      </p>
      <p>
        Please help us to identify
        bugs in order to ensure that the release is solid and all things behave
        as expected by taking the time to test this release candidate against
        your code base and reporting any problems that you encounter to
        the <a href="mailto:php-qa@lists.php.net">QA mailing list</a> and/or
        the <a href="https://bugs.php.net/">PHP bug tracker</a>.
      </p>
      <p>
        PHP 5.4.1 final will be released on April 26.
      </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-03-20-1.xml">
  <title>PHP migrates to Git</title>
  <id>http://www.php.net/archive/2012.php#id2012-03-20-1</id>
  <published>2012-03-20T10:25:52+08:00</published>
  <updated>2012-03-20T10:25:52+08:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <link href="http://www.php.net/index.php#id2012-03-20-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-03-20-1" rel="via" type="text/html"/>
  <content type="html">
   <div xmlns="http://www.w3.org/1999/xhtml">
    <p>
     The migration of the PHP source code from Subversion to Git is complete.
     You can clone or fork the source from our
     <a href="https://github.com/php/php-src">GitHub mirror</a>, and we also
     now support pull requests made via GitHub. The source is also available
     via <a href="http://git.php.net/">git.php.net</a>, and full instructions
     on cloning the php-src tree can be found at
     <a href="http://php.net/git">php.net/git</a>.
    </p>

    <p>
     One immediate benefit is that future PHP release tags will be signed by
     the PHP development team. We will be releasing GPG keys for verification
     purposes in the next few days.
    </p>

    <p>
     More information on the migration and the new workflow can be found at the
     <a href="https://wiki.php.net/vcs/gitfaq">Moving to Git FAQ</a> on the PHP
     Wiki.
    </p>

    <p>
     Please note that the PHP manual, including translations, continues to be
     hosted in Subversion for the time being and will be migrated to Git at a
     later date.
    </p>

    <p>
     Many thanks to David Soria Parra for his hard work on making the conversion
     to Git a reality, and to Alexander Moskaliov, Florian Anderiasch and
     Johannes Schlüter for their work on the scripts required to support
     the conversion. Let the forking begin!
    </p>
   </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-03-01-1.xml">
  <title>PHP 5.4.0 released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-03-01-1</id>
  <published>2012-03-01T19:40:35+01:00</published>
  <updated>2012-03-01T19:40:35+01:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-03-01-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-03-01-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
      The PHP development team is proud to announce the immediate availability of PHP
      <a href="http://php.net/downloads.php#v5.4.0">5.4.0</a>.
      This release is a major leap forward in the 5.x series, which includes a
      large number of new features and bug fixes.
     </p>

     <p>
      Some of the key new features include:
      <a href="http://php.net/traits">traits</a>,
      <a href="http://docs.php.net/manual/en/language.types.array.php">a shortened array syntax</a>,
      <a href="http://php.net/manual/en/features.commandline.webserver.php">
      a built-in webserver for testing purposes</a>
      and more. PHP 5.4.0 significantly improves performance, memory footprint and fixes over
      100 bugs.
     </p>

     <p>
      For users upgrading from PHP 5.3 there is a
      <a href="http://php.net/migration54">migration guide</a>
      available here, detailing the changes between those
      releases and <a href="http://php.net/downloads.php#v5.4.0">PHP 5.4.0</a>.
     </p>

     <p>
      Further details about the
      <a href="http://php.net/downloads.php#v5.4.0">PHP 5.4.0</a> release
      can be found in the
      <a href="http://php.net/releases/5_4_0.php">release announcement</a>,
      and the full list of changes are available in the
      <a href="http://php.net/ChangeLog-5.php">ChangeLog</a>.
     </p>
     <p>
     Please note that it may take a while until the release is available
     on all mirrors.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-02-24-1.xml">
  <title>PHP 5.4.0 RC8 released</title>
  <id>http://www.php.net/archive/2012.php#id2012-02-24-1</id>
  <published>2012-02-24T12:18:18+01:00</published>
  <updated>2012-02-24T12:18:18+01:00</updated>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-02-24-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-02-24-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
       The PHP development team would like to announce the 8th
       <a href="http://qa.php.net">release candidate</a> of PHP 5.4.
       PHP 5.4 includes new language features and removes several legacy
       (deprecated) behaviours. Windows binaries can be downloaded from the
       <a href="http://windows.php.net/qa/">Windows QA site</a>.
     </p>
     <p>
       <strong>
         THIS IS A RELEASE CANDIDATE - DO NOT USE IT IN PRODUCTION!
       </strong>.
     </p>
     <p>
       This is the 8th release candidate. The release candidate phase is
       intended as a period of bug fixing prior to the stable release. No new
       features should be included before the final version of PHP 5.4.0.
     </p>
     <p>
       The 7th and 8th release candidates focus on fixing critical bugs and
       security vulnerabilities, including:
     </p>
     <ul>
       <li>
         A buffer overflow in htmlspecialchars() and htmlentities()
         (<a href="https://bugs.php.net/60965">bug #60965</a>).
       </li>
       <li>
         Improving the max_input_vars configuration directive to check nested
         variables.
       </li>
     </ul>
     <p>
       A complete list of changes since the last release candidate can be
       found in the
       <a href="https://svn.php.net/repository/php/php-src/tags/php_5_4_0RC8/NEWS">NEWS</a>
       file.
     </p>
     <p>
       We've received a lot of feedback that has helped to improve the
       upcoming release of PHP 5.4.0. Please continue to help us to identify
       bugs in order to ensure that the release is solid and all things behave
       as expected by taking the time to test this release candidate against
       your code base and reporting any problems that you encounter to
       the <a href="mailto:php-qa@lists.php.net">QA mailing list</a> and/or
       the <a href="https://bugs.php.net/">PHP bug tracker</a>.
     </p>
     <p>
       The next release candidate will be released on
       March 1.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2012-02-09-1.xml">
  <title>Northeast PHP conference - Call for Papers!</title>
  <id>http://www.php.net/archive/2012.php#id2012-02-09-1</id>
  <published>2012-02-09T14:36:09+01:00</published>
  <updated>2012-04-04T22:27:04+01:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-08-11</default:finalTeaserDate>
  <category term="cfp" label="Call for Papers"/>
  <link href="http://www.php.net/conferences/index.php#id2012-02-09-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-02-09-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>Please note: This call for papers closes on 12 April, 2012.</p>
     <p>Wanting to share your experiences with a larger PHP community? Please submit your name and topic ideas
     (even if you are only suggesting topics and not wishing to actually present them) - each topic requires
     a separate submission, submit as many as you like:</p>
     <p><a href="http://speakers.northeastphp.org">http://speakers.northeastphp.org</a></p>
     
     <p>We hope to have topics and hands-on workshops in four tracks:
     <ul>
         <li>Core PHP topics (Intermediate to Advanced levels)</li>
         <li>Web development related topics</li>
         <li>Training track (workshop style)</li>
         <li>UX related topics</li>
     </ul>
     </p>
     
     <p>
         This event is co-organized by 3 User Groups in the Northeast of North America,
         namely: <a href="http://acphpug.paladin-bs.com/">Atlantic Canada</a>,
         Vermont and Area, and <a href="http://bostonphp.org/">Boston</a>.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-02-02-1.xml">
  <title>PHP 5.3.10 Released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-02-02-1</id>
  <published>2012-02-02T20:32:47+01:00</published>
  <updated>2012-02-02T20:32:47+01:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-02-02-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-02-02-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The PHP development team would like to announce the immediate
     availability of PHP 5.3.10. This release delivers a critical security
     fix.</p>
     
     <p>Security Fixes in PHP 5.3.10:</p>
     
     <ul>
       <li>Fixed arbitrary remote code execution vulnerability reported by Stefan
         Esser, CVE-2012-0830.</li>
     </ul>
     
     <p>All users are strongly encouraged to upgrade to PHP 5.3.10.</p>
     
     <p>For source downloads please visit
            our <a href="/downloads.php">downloads page</a>, Windows binaries can be found
            on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.</p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-01-24-1.xml">
  <title>PHP 5.4.0 RC6 released</title>
  <id>http://www.php.net/archive/2012.php#id2012-01-24-1</id>
  <published>2012-01-24T13:05:33+01:00</published>
  <updated>2012-01-24T13:05:33+01:00</updated>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-01-24-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-01-24-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
         The PHP development team announces the 6th
         <a href="http://qa.php.net">release candidate</a> of PHP 5.4.
         PHP 5.4 includes new language features and removes several legacy
         (deprecated) behaviours. Windows binaries can be downloaded from the
         <a href="http://windows.php.net/qa/">Windows QA site</a>.
     </p>
     <p>
         <strong>THIS IS A RELEASE CANDIDATE - DO NOT USE IT IN PRODUCTION!</strong>.
     </p>
     <p>
         This is the 6th release candidate. The release candidate phase is intended as
         a period of bug fixing prior to the stable release. No new features should
         be included before the final version of PHP 5.4.0. </p>
     <p>
         The 6th release candidate focused on improving traits. Please test
         them carefully and help us to identify bugs in
         order to ensure that the release is solid and all things behave
         as expected. Please take the time to test this release candidate
         against your code base and report any problems that you encounter
         to the <a href="mailto:php-qa@lists.php.net">QA mailing list</a> and/or
         the <a href="https://bugs.php.net/">PHP bug tracker</a>.
     </p>
     <p>
         A complete list of changes since the last release candidate can be
         found at <a href="https://svn.php.net/repository/php/php-src/tags/php_5_4_0RC6/NEWS">NEWS</a>
     </p>
     <p>
         The next candidate will be released on Feb 2.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2012-01-20-1.xml">
  <title>ConFoo 2012</title>
  <id>http://www.php.net/archive/2012.php#id2012-01-20-1</id>
  <published>2012-01-20T05:20:52+00:00</published>
  <updated>2012-01-20T05:20:52+00:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-03-02</default:finalTeaserDate>
  <category term="conferences" label="Conference announcement"/>
  <link href="http://www.php.net/conferences/index.php#id2012-01-20-1" rel="alternate" type="text/html"/>
  <link href="http://confoo.ca/" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
      ConFoo 2012 in Montreal, Canada on Feb 29 - Mar 02
     </p>
     <p>
      ConFoo is the unique web conference in Canada gathering different
      tech communities in one place.
     </p>
     <ul>
      <li>find working solutions for your day to day challenges;</li>
      <li>discover new tools that increase your productivity;</li>
      <li>network with people from some of the world’s biggest companies;</li>
      <li>160 presentations focusing on core competencies improvement;</li>
     </ul>
     <p>
      Don't miss this great opportunity and <a href="http://confoo.ca/en/register">register today</a>! 
      Also check out our two <a href="http://confoo.ca/en/2012/training">training days</a>
      around PHP, HTML5, Symfony2 and security topics right before the
      conference.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-01-10-1.xml">
  <title>PHP 5.3.9 Released!</title>
  <id>http://www.php.net/archive/2012.php#id2012-01-10-1</id>
  <published>2012-01-10T22:29:58+01:00</published>
  <updated>2012-01-10T22:29:58+01:00</updated>
  <category term="frontpage" label="PHP.net frontpage news"/>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-01-11-1" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-01-11-1" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>The PHP development team would like to announce the immediate
     availability of PHP 5.3.9. This release focuses on improving the
     stability of the PHP 5.3.x branch with over 90 bug fixes, some of
     which are security related.</p>
     
     <p>Security Enhancements and Fixes in PHP 5.3.9:</p>
     
     <ul>
       <li>Added max_input_vars directive to prevent attacks based on hash collisions. (CVE-2011-4885)</li>
       <li>Fixed bug #60150 (Integer overflow during the parsing of invalid exif
         header). (CVE-2011-4566)</li>
     </ul>
     
     <p>Key enhancements in PHP 5.3.9 include:</p>
     
     <ul>
       <li>Fixed bug #55475 (is_a() triggers autoloader, new optional 3rd argument to
         is_a and is_subclass_of).</li>
       <li>Fixed bug #55609 (mysqlnd cannot be built shared)</li>
       <li>Many changes to the FPM SAPI module</li>
     </ul>
     
     <p>For a full list of changes in PHP 5.3.9, see the <a href="/ChangeLog-5.php#5.3.9">ChangeLog</a>. For source downloads please visit
       our <a href="/downloads.php">downloads page</a>, Windows binaries can be found
       on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.</p>

     <p>All users are strongly encouraged to upgrade to PHP 5.3.9.</p>

    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xml:base="entries/2012-01-07-2.xml">
  <title>PHP 5.4.0 RC5 released</title>
  <id>http://www.php.net/archive/2012.php#id2012-01-07-2</id>
  <published>2012-01-07T15:44:56+01:00</published>
  <updated>2012-01-07T16:16:56+01:00</updated>
  <category term="releases" label="New PHP release"/>
  <link href="http://www.php.net/index.php#id2012-01-07-2" rel="alternate" type="text/html"/>
  <link href="http://www.php.net/archive/2012.php#id2012-01-07-2" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
            <p>
                The PHP development team announces the 5th
                <a href="http://qa.php.net">release candidate</a> of PHP 5.4.
                PHP 5.4 includes new language features and removes several legacy
                (deprecated) behaviours. Windows binaries can be downloaded from the
                <a href="http://windows.php.net/qa/">Windows QA site</a>.
            </p>
            <p>
                <strong>THIS IS A RELEASE CANDIDATE - DO NOT USE IT IN PRODUCTION!</strong>.
            </p>
            <p>
                This is the 5th release candidate. The release candidate phase is intended as
                a period of bug fixing prior to the stable release. No new features should
                be included before the final version of PHP 5.4.0.
            </p>
            <p>
                We got a lot of feedback that helped us to improve the upcoming
                PHP version.  Please continue to help us to identify bugs in
                order to ensure that the release is solid and all things behave
                as expected. Please take the time to test this release candidate
                against your code base and report any problems that you encounter
                to the <a href="mailto:php-qa@lists.php.net">QA mailing list</a> and/or
                the <a href="https://bugs.php.net/">PHP bug tracker</a>.
            </p>
            <p>
                A complete list of changes since the last release candidate can be
                found at <a href="https://svn.php.net/repository/php/php-src/tags/php_5_4_0RC5/NEWS">NEWS</a>
            </p>
            <p>
                The next and probably last release candidate will be released in 14 days.
            </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2012-01-07-1.xml">
  <title>PHPBenelux 2012</title>
  <id>http://www.php.net/archive/2012.php#id2012-01-07-1</id>
  <published>2012-01-07T14:47:25+01:00</published>
  <updated>2012-01-07T14:47:25+01:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-01-27</default:finalTeaserDate>
  <category term="conferences" label="Conference announcement"/>
  <link href="http://www.php.net/conferences/index.php#id2012-01-07-1" rel="alternate" type="text/html"/>
  <default:newsImage xmlns="http://php.net/ns/news" link="http://conference.phpbenelux.eu/2012" title="PHPBenelux 2012">phpbnl2012.png</default:newsImage>
  <link href="http://conference.phpbenelux.eu/2012" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
     The PHPBenelux Conference is ready for its third edition and takes place
     January 27th &amp; 28th in Antwerp (Belgium).
     </p>
     <p>We're very proud to have a great
     lineup this year and some awesome social events. All information about the
     conference  can be found on our conference website
     <a href="http://conference.phpbenelux.eu/2012">http://conference.phpbenelux.eu/2012</a>.
     </p>
     <p>
     There are some tickets still available, get them at <a href="http://shop.phpbenelux.eu">http://shop.phpbenelux.eu</a>.
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2011-12-23-1.xml">
  <title>Dutch PHP Conference 2012</title>
  <id>http://www.php.net/archive/2011.php#id2011-12-23-1</id>
  <published>2011-12-23T11:11:49+01:00</published>
  <updated>2011-12-23T11:11:49+01:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-06-09</default:finalTeaserDate>
  <category term="conferences" label="Conference announcement"/>
  <link href="http://www.php.net/conferences/index.php#id2011-12-23-1" rel="alternate" type="text/html"/>
  <default:newsImage xmlns="http://php.net/ns/news" link="http://www.phpconference.nl/" title="Dutch PHP Conference 2012">dpc_2012.png</default:newsImage>
  <link href="http://www.phpconference.nl/" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>Ibuildings is proud to organise the sixth Dutch PHP Conference on June 8 and 9, plus a pre-conference tutorial day on June 7. Both programs will be completely in English so the only Dutch thing about it is the location. Keywords for these days: Know-how, Technology, Best Practices, Networking, Tips &amp; Tricks.
     </p>
     <p>
         Website: <a href="http://www.phpconference.nl/">http://www.phpconference.nl/</a>
     </p>
    </div>
  </content>
</entry>
  <entry xmlns="http://www.w3.org/2005/Atom" xmlns:default="http://php.net/ns/news" xml:base="entries/2011-11-17-1.xml">
  <title>Italian phpDay 2012</title>
  <id>http://www.php.net/archive/2011.php#id2011-11-17-1</id>
  <published>2011-11-17T11:05:04+01:00</published>
  <updated>2011-11-17T11:05:04+01:00</updated>
  <default:finalTeaserDate xmlns="http://php.net/ns/news">2012-02-28</default:finalTeaserDate>
  <category term="cfp" label="Call for Papers"/>
  <link href="http://www.php.net/conferences/index.php#id2011-11-17-1" rel="alternate" type="text/html"/>
  <default:newsImage xmlns="http://php.net/ns/news" link="http://www.phpday.it/" title="Italian phpDay">phpday2012.png</default:newsImage>
  <link href="http://www.phpday.it/" rel="via" type="text/html"/>
  <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">
     <p>
         The <a href="http://www.grusp.it">Italian PHP user group GrUSP</a> is pleased to
         announce the 9th edition of the <a href="http://www.phpday.it">Italian phpDay conference</a>, taking place
         on May 18th and 19th, 2012 in Verona. We will show new development
         traits, best-practices and success cases related to quality, revision
         control, test-driven development, continuous integration and so on.
         There are also talks about design, project management, agile and various
         php-related technologies.
     </p>
     <p>
         phpDay is the first historic Italian conference dedicated solely to PHP
         development, technologies and management. It is aimed to IT managers,
         developers and innovators. Each year it renews the opportunity to link
         to new business partners.
     </p>
     <p>
         The call for papers is open and will run until Feb 28th 2012. For more
         information, please visit our website: <a href="http://www.phpday.it">http://www.phpday.it</a>
     </p>
    </div>
  </content>
</entry>
</feed>

