Re[2]: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Andrew Sitnikov
Hello , This reproducable for me to on: php4.0.5 + Linux 2.4.2 #4 SMP Best regards, Andrew Sitnikov e-mail : [EMAIL PROTECTED] GSM: (+372) 56491109 -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0 (fwd)

2001-11-18 Thread derick
-- Forwarded message -- Date: Sun, 18 Nov 2001 15:52:48 -0800 From: Sander Roobol <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0 > > What versions of apache are you guys running? > > I'm runni

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Markus Fischer
On Sun, Nov 18, 2001 at 03:47:22PM +0100, [EMAIL PROTECTED] wrote : > On Sun, 18 Nov 2001, Stefan Esser wrote: > > > What versions of apache are you guys running? > > I'm running 1.3.22 I was running 1.3.20 - Markus -- PHP Development Mailing List To unsubscrib

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread derick
On Sun, 18 Nov 2001, Stefan Esser wrote: > What versions of apache are you guys running? I'm running 1.3.22 Derick -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administra

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Stefan Esser
What versions of apache are you guys running? -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
Works fine for me :I At 03:42 PM 11/18/2001, [EMAIL PROTECTED] wrote: >Hallo, > >put this in httpd.conf: > >MinSpaceServers 1 >MaxSpareServers 1 >StartServers 1 > >script one: >bug13711a.php: > > >script two: >bug13711b.php: >for($i=0; $i<100; $i++) { > base64_encode(md5($i)); >} >?> > >res

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread derick
Hallo, put this in httpd.conf: MinSpaceServers 1 MaxSpareServers 1 StartServers 1 script one: bug13711a.php: script two: bug13711b.php: restart HTTPD load script one load script two That's all, Derick On Sun, 18 Nov 2001, Zeev Suraski wrote: > Can you describe the exact steps you made i

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
set_time_limit() just enforces a time limit, it doesn't save anything anywhere. The timeout is then supposed to get the global setting at the beginning of the next request, so I don't yet understand where this issue is coming from... Zeev At 03:01 PM 11/18/2001, James Moore wrote: >could thi

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
Can you describe the exact steps you made in order to reproduce it? It appears to be working fine on my box. Zeev At 02:50 PM 11/18/2001, [EMAIL PROTECTED] wrote: >On Sun, 18 Nov 2001, Zeev Suraski wrote: > > > Uhm, what exactly did you reproduce? > >That set_time_limit() affects the whole apa

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
Looks like I misread the bug, I'll look into it. At 03:11 PM 11/18/2001, Zeev Suraski wrote: >Ah, well, the bug was discussing something else (I think). I'll look into it. > >Zeev > >At 02:50 PM 11/18/2001, [EMAIL PROTECTED] wrote: >>On Sun, 18 Nov 2001, Zeev Suraski wrote: >> >> > Uhm, what exa

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
Ah, well, the bug was discussing something else (I think). I'll look into it. Zeev At 02:50 PM 11/18/2001, [EMAIL PROTECTED] wrote: >On Sun, 18 Nov 2001, Zeev Suraski wrote: > > > Uhm, what exactly did you reproduce? > >That set_time_limit() affects the whole apache child, and not only the >cur

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread James Moore
could this be similar to the engine=on/engine=off thing that we had quite a while ago?? Or is it due to global rather than local settings being overridden in set_time_limit? - James -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Jan Lehnardt
Hi, On Sun, 18 Nov 2001 13:19:29 +0100 (CET) Derick Rethans <[EMAIL PROTECTED]> wrote: > On Sun, 18 Nov 2001, Sander Roobol wrote: > Reproducing this bug on Linux is hard. On Windows, it's very easy. > On Linux, > > you should repeatedly load both the first and the second script. > > Reproducing

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread derick
On Sun, 18 Nov 2001, Zeev Suraski wrote: > Uhm, what exactly did you reproduce? That set_time_limit() affects the whole apache child, and not only the current script. Derick > > Zeev > > At 02:19 PM 11/18/2001, Derick Rethans wrote: > >On Sun, 18 Nov 2001, Sander Roobol wrote: > > > > > I creat

Re: [PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Zeev Suraski
Uhm, what exactly did you reproduce? Zeev At 02:19 PM 11/18/2001, Derick Rethans wrote: >On Sun, 18 Nov 2001, Sander Roobol wrote: > > > I created two scripts. > > > > > > > > > for($i=0; $i<100; $i++) { > > base64_encode(md5($i)); > > } > > ?> > > > > Reproducing this bug on Linux is ha

[PHP-DEV] set_time_limit() bug - pending for PHP 4.1.0

2001-11-18 Thread Derick Rethans
On Sun, 18 Nov 2001, Sander Roobol wrote: > I created two scripts. > > > > for($i=0; $i<100; $i++) { > base64_encode(md5($i)); > } > ?> > > Reproducing this bug on Linux is hard. On Windows, it's very easy. On Linux, > you should repeatedly load both the first and the second script. Repr