|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-02-12 03:23 UTC] sniper@php.net
[2005-02-18 09:24 UTC] giulio dot pons at archebit dot com
[2005-02-18 10:28 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 25 02:00:01 2025 UTC |
Description: ------------ same problem of another bug reported here (#21660), same test.php. my PHP version is 4.3.10. server is microsoft windows 2000. iis is version 5. php as cgi. i've tried many versions of php cause i don't have this problem on another server with php version 4.3.3. the textarea posted hang php when it contains a text longer than 377 bytes. do i have to post other data to you so you can understand better? thank you very much. giulio Reproduce code: --------------- <? if ( isset( $_REQUEST['test']) ) { $ttt = $_REQUEST['test']; } else { ?> <form action=test.php method=post> <textarea name=test></textarea> <input type=submit> </form> <? } ?> Expected result: ---------------- blank page Actual result: -------------- the php.exe hangs. you can see it in the task manager. it doesn't use CPU, only memory. nothing happens till iis goes in timeout and return the CGI timeout message.