[PHP-DEV] CVS Account Request: muesli

2004-03-16 Thread Jens Volgmann
Dear PHP Developer Group, I'd like to have an CVS account to code new PEAR classes. This step is descriped on this page: http://pear.php.net/manual/en/developers.contributing.howto.php Regards, Jens -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

[PHP-DEV] IFX - new_link stuff

2004-03-16 Thread Corne' Cornelius
Hi, The Informix extension has some issues with it's connection resources. When a connection resource is busy, -439 errors are returned from the following functions: ifx_connect() ifx_pconnect() ifx_query() ifx_prepare() I want to add a new_link parameter to the ifx_(p)connect() functions,

[PHP-DEV] Fw: #27614 [NEW]: backtrace information inappropriate for PHP 5

2004-03-16 Thread Nuno Lopes
Is this true? From: jan at horde dot org Operating system: PHP version: Irrelevant PHP Bug Type: Documentation problem Bug description: backtrace information inappropriate for PHP 5 Description: The instructions on

Re: [PHP-DEV] Fw: #27614 [NEW]: backtrace information inappropriate for PHP 5

2004-03-16 Thread Wez Furlong
Seems unlikely; generating a backtrace is the same for pretty much all software. Jan must be doing something wrong (tm). --Wez. - Original Message - From: Nuno Lopes [EMAIL PROTECTED] To: PHPdev [EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 2:50 PM Subject: [PHP-DEV] Fw: #27614

Re: [PHP-DEV] Fw: #27614 [NEW]: backtrace information inappropriate for PHP 5

2004-03-16 Thread Red Wingate
Actually it seams like it crashes my Apache2 when used within an error_handler. Backtracing the error generated by $boolean = FALSE ; $boolean[2] += 1 ; will tear down the whole Apache2 process on Win32 Servers --red Am Dienstag, 16. Mrz 2004 15:49 schrieb Wez Furlong: Seems unlikely;

[PHP-DEV] Re: reproduce script (Re: [PHP-DEV] No static method callbacks anmore?)

2004-03-16 Thread Andi Gutmans
Should be fixed now. Thanks for the reproducing test case. At 11:51 AM 3/15/2004 -0500, Hans Lellelid wrote: Here's a script to reproduce the problem w/ static callbacks. The problem only seems to happen when the function calling the static function using preg_replace_callback() is not declared

[PHP-DEV] CVS Account Request: asnagy

2004-03-16 Thread Andrew Nagy
I will be adding a package to the pear library. I am requesting access to the pear module in CVS -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [PATCH} ZTS fix for zend_execute_API.c

2004-03-16 Thread Frank M. Kromann
Hello, Here is a diff for zend_execute_API.c, fixing ZTS builds. - Frank Index: zend_execute_API.c === RCS file: /repository/ZendEngine2/zend_execute_API.c,v retrieving revision 1.280 diff -u -r1.280 zend_execute_API.c ---

RE: [PHP-DEV] [PATCH} ZTS fix for zend_execute_API.c

2004-03-16 Thread Steph
Thanks Frank, I thought it was just me! -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: 16 March 2004 17:39 To: [EMAIL PROTECTED] Subject: [PHP-DEV] [PATCH} ZTS fix for zend_execute_API.c Hello, Here is a diff for zend_execute_API.c, fixing ZTS

[PHP-DEV] Re: reproduce script (Re: [PHP-DEV] No static method callbacks anmore?)

2004-03-16 Thread Jan Schneider
Zitat von Andi Gutmans [EMAIL PROTECTED]: Should be fixed now. Thanks for the reproducing test case. Yeah, works fine now, thanks. Jan. -- http://www.horde.org - The Horde Project http://www.ammma.de - Neue Wege des Lernens http://www.tip4all.de - Deine private Tippgemeinschaft -- PHP Internals

Re: [PHP-DEV] RC1 of RC1

2004-03-16 Thread Timm Friebe
On Mon, 2004-03-15 at 07:10, Andi Gutmans wrote: Hey, I rolled RC1 of RC1 (didn't change the version from -dev on purpose because RC1RC1 is kind of odd and I didn't want it to confuse people :). I will roll RC1 on the 17th so if there are serious show stoppers speak up. [EMAIL

[PHP-DEV] Exception::__toString() not called

2004-03-16 Thread Timm Friebe
Hi, Both of the following examples used to output the Exception::__toString() output, which they don't anymore: $ php-dev -r '$e= new Exception(); echo $e, \n;' Object id #1 $ php-dev -r '$e= new Exception(); echo (string)$e, \n;' Object id #1 Works fine for userland objects: $ php-dev -r

Re: [PHP-DEV] RC1 of RC1

2004-03-16 Thread Timm Friebe
On Tue, 2004-03-16 at 22:28, Marcus Boerger wrote: Hello Timm, this is fixed now. Verified. - Timm -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Exception::__toString() not called

2004-03-16 Thread Marcus Boerger
Hello Timm, hello Andi, i htought i had a better solution to the __toString() problem. But then i found out why we made it so complex. The reason IIRC was to prevent __toString() being called everywhere automatically when it is a user function. Havin said this the solution is very easy. We

[PHP-DEV] ClibPDF Configure Option

2004-03-16 Thread Nathan Sullivan
Just a suggestion, the library is known as ClibPDF, the docs call it ClibPDF, fair enough php.net/cpdf is the abbreviation, but why is the configure option --with-cpdflib? :) Im sure thats a little backwards. If someone updates php-src, ill fix the docs :) Nathan. -- PHP Internals - PHP

[PHP-DEV] curl-multi-info-read not functioning

2004-03-16 Thread jason
Hello! I am writing a php-cgi server, using curl-multi. It needs to start a bunch of curl 'threads', and steadily process the results of finished 'threads' and start new ones in their place. It seems to be working other than curl_multi_info_read() - this function does not return any data