Hallo,

put this in httpd.conf:

MinSpaceServers 1
MaxSpareServers 1
StartServers 1

script one:
bug13711a.php:
<?php set_time_limit(1); ?>

script two:
bug13711b.php:
<?php
for($i=0; $i<1000000; $i++) {
  base64_encode(md5($i));
}
?>

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 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 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 created two scripts.
> > > > >
> > > > > <?php set_time_limit(1); ?>
> > > > >
> > > > > <?php
> > > > > for($i=0; $i<1000000; $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.
> > > >
> > > >Reproducing under Linux was very easy for me, I just set the following
> > > >things in httpd.conf:
> > > >
> > > >MinSpareServers 1
> > > >MaxSpareServers 1
> > > >StartServers 1
> > > >
> > > >And voila, reproduced. SO this is a real problem, and need to be addressed
> > > >before release.
> > > >
> > > >I used the CVS of last night, following configure line:
> > > >
> > > >./configure \
> > > >--with-apache=/dat/dev/php/$APACHE_DIR \
> > > >--with-gd \
> > > >--with-ttf --with-mysql --with-pdflib=/usr/local \
> > > >--enable-pdflib --with-config-file-path=/etc/httpd \
> > > >--enable-track-vars --enable-magiq-quotes --enable-memory-limit \
> > > >--enable-ftp --with-srm=/opt/srm --with-mcrypt \
> > > >--with-ctype --with-gmp --with-ldap \
> > > >--with-ncurses \
> > > >--enable-shmop --enable-sockets --enable-sysvsem \
> > > >--enable-sysvshm --enable-wddx --with-zlib
> > > >
> > > >(and yes, I know that magic-quotes does not work :)
> > > >
> > > >regards,
> > > >
> > > >Derick
> > > >
> > > >
> > > >
> > > >--
> > > >PHP Development Mailing List <http://www.php.net/>
> > > >To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > >For additional commands, e-mail: [EMAIL PROTECTED]
> > > >To contact the list administrators, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > > --
> > > PHP Development Mailing List <http://www.php.net/>
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> > >
>


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to