|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-14 12:30 UTC] derick@php.net
[2001-11-14 13:13 UTC] mfischer@php.net
[2001-11-15 05:53 UTC] michiel at tincan dot co dot uk
[2001-11-15 05:55 UTC] bate@php.net
[2001-11-15 07:35 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 05:00:01 2025 UTC |
<!-- example that causes the error --> <!-- you don't need to upload any files, just clicking Submit will cause the crash --> <form method=post enctype="multipart/form-data"> <? if (is_array($file)) while (list($key,$val) = each($file)) print "$key => $val<br>\n"; # changing max to 33 will not cause the segfault, 34 will. $msx = 34; for ($i=0;$i<$msx;$i++) { print $i.'Upload file: <input type=file name="file['.$i.']"><br>'; } ?> <input type=submit> </form> <--end of example --> --with-mysql=/usr --enable-sysvshm=yes --enable-sysvsem=yes --enable-versioning --with-gd=/usr --enable-track-vars=yes --enable-force-cgi-redirect=yes --enable-memory-limit=yes --with-apache=../apache_1.3.19 --enable-debug=no --with-mcrypt Page works if I switch back to php 4.0.4-pl1