PHP 5.2.10 Released

JackTon

Verified User
Joined
Nov 16, 2007
Messages
18
The PHP development team would like to announce the immediate availability of PHP 5.2.10. This release focuses on improving the stability of the PHP 5.2.x branch with over 100 bug fixes, one of which is security related. All users of PHP are encouraged to upgrade to this release.
Security Enhancements and Fixes in PHP 5.2.10:

  • Fixed bug #48378 (exif_read_data() segfaults on certain corrupted .jpeg files). (Pierre)
Further details about the PHP 5.2.10 release can be found in the release announcement, and the full list of changes are available in the ChangeLog.



Download
http://www.php.net/downloads.php
 
if you need to compile pecl extensions or pear extensions, DO NOT UPGRADE to 2.10 yet.

Code:
[root@web01 bin]# ./pecl install pecl_http
pecl.php.net is using a unsupported protocal - This should never happen.
install failed
[root@web01 bin]#

This is a known issue... the only solution is to overwrite some files with php 5.2.9 versions.
 
I noticed this problem, but I also noticed that pear works (on my system), unlike pecl.
 
it worked for me after doing this:

# rm -rf /usr/local/lib/php/.channels
# pear update-channels
 
Last edited:
Back
Top