Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:45604 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 59055 invoked from network); 19 Sep 2009 00:48:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Sep 2009 00:48:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=php-php-dev@m.gmane.org; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=news@ger.gmane.org; sender-id=pass Received-SPF: pass (pb1.pair.com: domain m.gmane.org designates 80.91.229.12 as permitted sender) X-PHP-List-Original-Sender: php-php-dev@m.gmane.org X-Host-Fingerprint: 80.91.229.12 lo.gmane.org Linux 2.6 Received: from [80.91.229.12] ([80.91.229.12:33243] helo=lo.gmane.org) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4D/80-54420-94A24BA4 for ; Fri, 18 Sep 2009 20:48:10 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1Moo7S-0001Og-8O for internals@lists.php.net; Sat, 19 Sep 2009 02:48:06 +0200 Received: from dslb-084-057-171-006.pools.arcor-ip.net ([84.57.171.6]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 19 Sep 2009 02:48:06 +0200 Received: from carsten_sttgt by dslb-084-057-171-006.pools.arcor-ip.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 19 Sep 2009 02:48:06 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: internals@lists.php.net Date: Sat, 19 Sep 2009 02:47:43 +0200 Lines: 40 Message-ID: References: <36F4FCC6-012D-4E21-9D86-2A1ED4EE53AB@prohost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: dslb-084-057-171-006.pools.arcor-ip.net User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) In-Reply-To: <36F4FCC6-012D-4E21-9D86-2A1ED4EE53AB@prohost.org> Sender: news Subject: Re: [PHP-DEV] PHP 5.2.11 Released! From: carsten_sttgt@gmx.de (Carsten Wiedmann) Ilia Alshanetsky schrieb: > The PHP development team would like to announce the immediate > availability of PHP 5.2.11. ... All users of PHP 5.2 are encouraged to > upgrade to this release. So that's the next PHP release with a broken IPv6 support (after 5.2.10 and 5.3.0) and so it's not possible to update for some peoples. | Carsten Wiedmann@CARSTEN-1 D:\ | # cd \PHP\php-5.2.11-win32 | | Carsten Wiedmann@CARSTEN-1 D:\PHP\php-5.2.11-win32 | # php -n -i | grep "IPv6" | IPv6 Support => enabled | | Carsten Wiedmann@CARSTEN-1 D:\PHP\php-5.2.11-win32 | # php -n -r "var_dump(fopen('http://[::1]', 'r'));" | | Warning: fopen(http://[::1]): failed to open stream: operation | failed in Command line code on line 1 | bool(false) In contrast to: | Carsten Wiedmann@CARSTEN-1 D:\PHP\php-5.2.11-win32 | # cd \PHP\php-5.2.9-2-win32 | | Carsten Wiedmann@CARSTEN-1 D:\PHP\php-5.2.9-2-win32 | # php -n -i | grep "IPv6" | IPv6 Support => enabled | | Carsten Wiedmann@CARSTEN-1 D:\PHP\php-5.2.9-2-win32 | # php -n -r "var_dump(fopen('http://[::1]', 'r'));" | resource(7) of type (stream) (and of course the same problem with fsockopen or stream_socket_client) Regards, Carsten