[PHP-DEV] CVS Account Request: nforbes

2004-03-05 Thread Noel Forbes
I intend to help with the documentation project (the tree is phpdoc according to the comments above, even though it probably should be obvious). If you need any more information about me, you can contact me at that email address. Thanks in advance. -- PHP Internals - PHP Runtime Development M

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Red Wingate
Finally found a script to reproduce the Crash: http://download.erisx.de/crash.txt Red Wingate wrote: Allright tried running PHP as a CGI and the crash is gone. I gave the source a closer look and found this to be the line which caused the crash: $database['user_logins_failed'] += 1 ; ( $database

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Red Wingate
Allright tried running PHP as a CGI and the crash is gone. I gave the source a closer look and found this to be the line which caused the crash: $database['user_logins_failed'] += 1 ; ( $database is set to FALSE ) but i cannot find the context in which this causes the problem as it seams to appear

Re: [PHP-DEV] Re: RC1

2004-03-05 Thread Andi Gutmans
At 09:29 PM 3/5/2004 +0100, Pierre-Alain Joye wrote: On Fri, 05 Mar 2004 22:18:09 +0200 [EMAIL PROTECTED] (Andi Gutmans) wrote: > definitely be fixed. A couple of others don't look like show > stoppers. If there's anyone here who can look at the non-Zend > Engine ones that would be nice. Is it ok t

[PHP-DEV] Re: RC1

2004-03-05 Thread Pierre-Alain Joye
On Fri, 05 Mar 2004 22:18:09 +0200 [EMAIL PROTECTED] (Andi Gutmans) wrote: > definitely be fixed. A couple of others don't look like show > stoppers. If there's anyone here who can look at the non-Zend > Engine ones that would be nice. Is it ok to commit this patch (attachment) to fix #27238? (D

[PHP-DEV] RC1

2004-03-05 Thread Andi Gutmans
Hey, I told Sterling I'm going to wait for a patch that he worked on with Zeev on the Cruise which is crucial to make SimpleXML work nicely. So I'm holding off until that comes in (and that MySQL stuff if it comes in on time). In the meanwhile, I'm also going to look into the bugs which were bro

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Andi Gutmans
It would be nice if someone could look at this but PHP has always been experimental in multi-threaded environments (especially Apache 2). Do you get the same problems with PHP as a CGI? Andi At 09:16 PM 3/5/2004 +0100, Red Wingate wrote: This one is kinda annoying as well: http://bugs.php.net/

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Red Wingate
This one is kinda annoying as well: http://bugs.php.net/bug.php?id=26286&edit=1 Just ran into this just a few minutes ago. Tried to solve the problem using a new Snapshot but this didn't solve my problem, also using a diffrent apache2 version didn't change anything either. Red Walter A. Boring I

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Adam Maccabee Trachtenberg
On Fri, 5 Mar 2004, Antony Dovgal wrote: > On Fri, 05 Mar 2004 15:07:42 +0200 > Andi Gutmans <[EMAIL PROTECTED]> wrote: > > > Hey, > > > > I've fixed all of the major bugs I wanted to get done for RC1. > > What about this bug - http://bugs.php.net/?id=27504 ? > It looks as rather major to me. Or

Re: [PHP-DEV] static crashes

2004-03-05 Thread Christian Stocker
On 3/5/04 6:18 PM, Andi Gutmans wrote: I actually couldn't reproduce the crash with your script but I found problems with my patch using valgrind. Commit coming up in a second. Let me know if it solves your problem. as pierre already said, it works again on my server thanks for the quick fix c

RE: [PHP-DEV] Re: Perl extension

2004-03-05 Thread David Zhuo
Dmitry, there are a couple of reasons why i am going away with the: perl_eval('@x = 1..10'); var_dump(perl_var('@x')); approach: 1. i don't want to force the users to use 2 statments just to get a single value out. 2. some variables don't have names and i want my users to be able to do stuff li

[PHP-DEV] Re: class constants crash PHP

2004-03-05 Thread Pierre-Alain Joye
On Fri, 05 Mar 2004 19:10:34 +0100 [EMAIL PROTECTED] (Ard Biesheuvel) wrote: > This script crashes with the latest HEAD. > I don't know if it is something that did work at an earlier time. Works here, can you try a fresh update? pierre -- PHP Internals - PHP Runtime Development Mailing List To

Re: [PHP-DEV] static crashes

2004-03-05 Thread Pierre-Alain Joye
On Fri, 05 Mar 2004 19:18:09 +0200 [EMAIL PROTECTED] (Andi Gutmans) wrote: > I actually couldn't reproduce the crash with your script but I > found problems with my patch using valgrind. > Commit coming up in a second. > Let me know if it solves your problem. > Thanks for the short reproducing scr

[PHP-DEV] class constants crash PHP

2004-03-05 Thread Ard Biesheuvel
This script crashes with the latest HEAD. I don't know if it is something that did work at an earlier time. class Image { const RESOURCE_FORMAT = ResourceFormat::IMG; } print_r(constant('Image::RESOURCE_FORMAT')); ?> -- Ard -- PHP Internals - PHP Runtime Development Mailing List To unsubsc

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Walter A. Boring IV
It seems this one should be addressed before RC1 IMO http://bugs.php.net/bug.php?id=27227 Walt Quoting Andi Gutmans <[EMAIL PROTECTED]>: > Hey, > > I've fixed all of the major bugs I wanted to get done for RC1. > The only thing we should finalize is the hasMore() thing (I wouldn't want > to ch

Re: [PHP-DEV] static crashes

2004-03-05 Thread Andi Gutmans
I actually couldn't reproduce the crash with your script but I found problems with my patch using valgrind. Commit coming up in a second. Let me know if it solves your problem. Thanks for the short reproducing script. Andi At 07:12 PM 3/5/2004 +0200, Andi Gutmans wrote: Can't reproduce this. At

Re: [PHP-DEV] static crashes

2004-03-05 Thread Andi Gutmans
Can't reproduce this. At 05:37 PM 3/5/2004 +0100, Christian Stocker wrote: Hi The following segfaults on my linux server... if you comment out the "static $instance" line, it works... fresh HEAD checkout 15 minutes ago.. strangely enough, this works on OSX... backtrace can be found here -> h

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Andi Gutmans
At 02:58 PM 3/5/2004 +0100, Georg Richter wrote: > Hey, > > I've fixed all of the major bugs I wanted to get done for RC1. > The only thing we should finalize is the hasMore() thing (I wouldn't want > to change such an API after RC1). > Did we decide to go with isValid()? Marcus what do you sya? I

[PHP-DEV] static crashes

2004-03-05 Thread Christian Stocker
Hi The following segfaults on my linux server... if you comment out the "static $instance" line, it works... fresh HEAD checkout 15 minutes ago.. strangely enough, this works on OSX... backtrace can be found here -> http://trash.chregu.tv/bt.txt chregu -- christian stocker | Bitflux GmbH |

[PHP-DEV] Re: Rolling RC1

2004-03-05 Thread Jay Smith
Andi Gutmans wrote: > Hey, > > I've fixed all of the major bugs I wanted to get done for RC1. > The only thing we should finalize is the hasMore() thing (I wouldn't want > to change such an API after RC1). > Did we decide to go with isValid()? Marcus what do you sya? > > Andi I'd also like to c

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Andi Gutmans
I wouldn't consider that a major bug but I'll see if I can do something about it. Definitely not a show stopper. At 04:15 PM 3/5/2004 +0300, Antony Dovgal wrote: On Fri, 05 Mar 2004 15:07:42 +0200 Andi Gutmans <[EMAIL PROTECTED]> wrote: > Hey, > > I've fixed all of the major bugs I wanted to get

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Daniel Convissor
On Fri, Mar 05, 2004 at 03:07:42PM +0200, Andi Gutmans wrote: > > I've fixed all of the major bugs I wanted to get done for RC1. Wondering about your opinion on "register_long_arrays breaks superglobals" http://bugs.php.net/bug.php?id=25724 This seems prety major to me. That bug also causes $_S

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Georg Richter
> Hey, > > I've fixed all of the major bugs I wanted to get done for RC1. > The only thing we should finalize is the hasMore() thing (I wouldn't want > to change such an API after RC1). > Did we decide to go with isValid()? Marcus what do you sya? I have to add some conditional defines as soon as

Re: [PHP-DEV] Rolling RC1

2004-03-05 Thread Antony Dovgal
On Fri, 05 Mar 2004 15:07:42 +0200 Andi Gutmans <[EMAIL PROTECTED]> wrote: > Hey, > > I've fixed all of the major bugs I wanted to get done for RC1. What about this bug - http://bugs.php.net/?id=27504 ? It looks as rather major to me. --- WBR, Antony Dovgal aka tony2001 [EMAIL PROTECTED] || [EM

[PHP-DEV] Rolling RC1

2004-03-05 Thread Andi Gutmans
Hey, I've fixed all of the major bugs I wanted to get done for RC1. The only thing we should finalize is the hasMore() thing (I wouldn't want to change such an API after RC1). Did we decide to go with isValid()? Marcus what do you sya? Andi -- PHP Internals - PHP Runtime Development Mailing Lis

[PHP-DEV] mysqli_options behaviour

2004-03-05 Thread Juergen Mueller
hi, I established a really strange behaviour of mysqli_options(). with the following commands, I got a sucessfull connection object, without setting the connection params (host, user, passwd) in mysqli_real_connect(). Is this a Bug? $link = mysqli_init(); mysqli_options($link, MYSQLI_CLIENT_COMP

Re: [PHP-DEV] PHP 4.3.5 final?

2004-03-05 Thread Thomas Seifert
Derick Rethans wrote: On Fri, 5 Mar 2004, Thomas Seifert wrote: We had to delay the release a bit, and as most people are on the cruise now (including ilia), we'll have to wait until they get back. Derick k Thanks for your reply. Sounds quite reasonable :). Thomas -- PHP Internals - PHP Runtim