|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-10 05:16 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 08:00:01 2025 UTC |
Set_time_limit() is completely ignored. All php.ini-values are on default (especially safe mode is off). For example, execution of the following test-script never stops: set_time_limit(10); while(true) { echo "sleeping...<br>\n"; flush(); sleep(1); } This bug has already been descriped in http://www.php.net/bugs.php?id=5518 but the fix provided by Rasmus doesn't seem to work (any longer). conf-line: './configure' '--with-apache=/home/maverick/src/lamp/apache_1.3.19' '--with-mysql=/usr/mysql' '--with-zlib-dir=/usr/lib' '--with-ftp' '--with-gd' '--with-jpeg-dir=/usr/local/lib' '--enable-versioning' '--enable-track-vars=yes' '--enable-url-includes' '--enable-sysvshm=yes' '--enable-sysvsem=yes' '--with-config-file-path=/etc' '--enable-sockets' '--with-mcrypt' '--with-openssl' '--with-xpm-dir=/usr/X11R6/lib' Daniel Fuehrer