ID: 32948 User updated by: chaz_meister_rock at yahoo dot com Reported By: chaz_meister_rock at yahoo dot com Status: Open Bug Type: Documentation problem Operating System: * PHP Version: Irrelevant New Comment:
agreed, this really needs to be in the docs, because without some explanation, it sure sounds like a bug (with a setting like ALWAYS_populate_raw_post_data). does this mean that there is no way to get to a full enctype="multipart/form-data" HTTP request using php? Previous Comments: ------------------------------------------------------------------------ [2005-05-06 03:02:56] [EMAIL PROTECTED] HTTP_RAW_POST_DATA is NOT set for multipart forms. Would be nice if this was said in the manual too. ------------------------------------------------------------------------ [2005-05-05 03:10:34] chaz_meister_rock at yahoo dot com Description: ------------ $HTTP_RAW_POST_DATA is empty when using a form with enctype="multipart/form-data" set. php.ini contains always_populate_raw_post_data = On this issue looks similar to: http://bugs.php.net/bug.php?id=23765 Reproduce code: --------------- <?php echo $HTTP_RAW_POST_DATA; ?> <form enctype="multipart/form-data" method="post"> <input type="text" name="it" value="groovy" /> <input type="file" name="upFile" /> <input type="submit" /> </form> Expected result: ---------------- it=groovy&upFile= Actual result: -------------- Notice: Undefined index: HTTP_RAW_POST_DATA ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=32948&edit=1