History log of /php-src/NEWS (Results 9001 – 9025 of 15459)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 89159926 12-May-2013 Anatol Belski

updated NEWS

# d6505acb 12-May-2013 Anatol Belski

Fixed bug #64821 Custom Exceptions crash when internal properties overridden

If user inherits Exception and overrides the properties to arbitrary data types,
or simply doesn't run parent

Fixed bug #64821 Custom Exceptions crash when internal properties overridden

If user inherits Exception and overrides the properties to arbitrary data types,
or simply doesn't run parent::__construct(), here we go. Just convert everything
to the appropriate data type, like Exception::__toString() does.

show more ...

# 98302ee3 08-May-2013 Gustavo Lopes

Fix NEWS (wrong bug # AND wrong section...)

It's bug #64508, not #64506.

# 8687332e 08-May-2013 Gustavo Lopes

Fix bug #64506: fix build with --disable-ipv6

# 7b09e5fe 08-May-2013 Anatol Belski

Fixed news, rc1 is already branched

# 4091e946 08-May-2013 Anatol Belski

Fixed bug #64769 mbstring PHPTs crash on Windows x64

The tricky business going there in oniguruma is saving a pointer
in an int variable, passing that variable into a function and making

Fixed bug #64769 mbstring PHPTs crash on Windows x64

The tricky business going there in oniguruma is saving a pointer
in an int variable, passing that variable into a function and making
it a pointer again. On 64bit windows casting a pointer to a 32 bit
int will truncate that pointer. This kind of things won't work on
Windows x64.

[SNIPPET]
unsigned long ul0[2], ul1, *ul2;

ul0[0] = 42uL;
ul0[0] = 24uL;

ul1 = (unsigned long)ul0;
ul2 = (unsigned long *)ul1;

/* now it's broken, accessing ul2[0] will crash. */
[/SNIPPET]

To make it portable, ULONG_PTR should be used in this case.

In oniguruma this behaviour is to see at least in the following
codepath:

ext/mbstring/oniguruma/enc/unicode.c:10938
ext/mbstring/oniguruma/st.c:308
ext/mbstring/oniguruma/enc/unicode.c:10859

show more ...

# 288f04c4 08-May-2013 David Soria Parra

News for RC2

# e30dbcce 08-May-2013 David Soria Parra

NEWS for RC1

# 1cc2162b 08-May-2013 Johannes Schlüter

PHP 5.3.25 NEWS

# d981c191 04-May-2013 Remi Collet

NEWS

# f7830e4f 03-May-2013 Anatol Belski

updated NEWS

# b1c24d1e 03-May-2013 Anatol Belski

updated NEWS

# b1ea0b7a 03-May-2013 Anatol Belski

Fixed bug #64770 stream_select() fails with pipes

returned by proc_open() on Windows x64

# 2c336c9c 03-May-2013 Boris Lytochkin

Fixed bug #64159 (Truncated snmpget)

# e36adfe9 03-May-2013 Boris Lytochkin

Fixed bug #64159 (Truncated snmpget)

# cbe2870b 03-May-2013 Boris Lytochkin

update NEWS

# a39282b6 03-May-2013 Boris Lytochkin

update NEWS

# 432b09f2 03-May-2013 Remi Collet

NEWS

# 9996c310 03-May-2013 Remi Collet

NEWS

# 4a34d4a8 03-May-2013 Remi Collet

NEWS

# 3f2f534a 30-Apr-2013 Gustavo Lopes

Remove trailing space in NEWS

# 1656b337 30-Apr-2013 Gustavo Lopes

NEWS for 514afd67

# 36b968ae 30-Apr-2013 Remi Collet

NEWS

# 4a92ae34 30-Apr-2013 Remi Collet

When Apache use RewriteRule to redirect, via mod_proxy_fgi, to php-fpm
the SCRIPT_FILENAME may contains the QUERY_STRING.

Ex : RewriteRule ^(.*)\.php$ fcgi://127.0.0.1:9000/$1.php [P]

When Apache use RewriteRule to redirect, via mod_proxy_fgi, to php-fpm
the SCRIPT_FILENAME may contains the QUERY_STRING.

Ex : RewriteRule ^(.*)\.php$ fcgi://127.0.0.1:9000/$1.php [P]

From apache debug (build with -DFCGI_DUMP_ENV_VARS)
AH01062: sending env var 'SCRIPT_FILENAME' value 'proxy:fcgi://127.0.0.1:9000/var/www/html/info.php?foo'
AH01071: Got error 'Primary script unknown\n'

show more ...

# c782cf7f 30-Apr-2013 Dmitry Stogov

Added SoapClient constructor option 'ssl_method' to specify ssl method

1...<<361362363364365366367368369370>>...619