| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2003-01-15 09:33 UTC] sniper@php.net
  [2003-01-15 11:09 UTC] peter at zore dot co dot uk
  [2003-01-15 14:11 UTC] sniper@php.net
  [2003-01-15 14:12 UTC] sniper@php.net
  [2003-01-16 03:57 UTC] peter at zore dot co dot uk
  [2003-01-17 20:52 UTC] sniper@php.net
  [2003-05-19 02:04 UTC] shane@php.net
  | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 05:00:01 2025 UTC | 
Freshly installed 4.3.0 installed as CGI on IIS5. Minimal changes to default php.ini I use the following page to demonstrate/test the problem: <? if ( isset( $_REQUEST['test']) ) { $ttt = $_REQUEST['test']; } else { ?> <form action=test.php method=post> <textarea name=test></textarea> <input type=submit> </form> <? } ?> Very simple post test form which assigns post data to a variable. This particular script functions correctly with small amounts of data but above around 500 characters (seems to change depending on number of fields in form) the page will sit there for about 5 minutes until i get a CGI Timeout error from IIS (also logged to event viewer). Items from phpinfo() relating to post are set to defaults: always_populate_raw_post_data Off post_max_size 8M A similar ASP page on the same web server functions perfectly up to thousands of characters. As far as I am aware all other PHP functions are working correctly.