|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-10 19:28 UTC] sniper@php.net
[2003-02-20 08:27 UTC] jpulk at unumprovident dot com
[2003-02-21 15:30 UTC] greg at getnetez dot com
[2003-03-06 20:01 UTC] pmoulding at tedis dot com dot au
[2003-03-27 02:08 UTC] lampa at brutusmud dot net
[2003-05-27 08:15 UTC] phpmail at jawbone dot freeserve dot co dot uk
[2004-08-05 07:25 UTC] philip@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 12:00:01 2025 UTC |
First off, I think you guys are great and I would be at a loss without you.... so many-many thanks.... But..... while troubleshooting a file upload issue with imp (standard thing reported many times in a number of different varieties upload_max_filesize ignored and the likewise post_max_size ignored and even memory_limit doesn't matter) I first looked to my php.ini and started adjusting these settings to no avail. My actual problem was a gem of a file httpd/conf.d/php.conf which contained -- <Files *.php> SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 524288 </Files> the cause of my httpd/errorlog file noting... "Requested content-length of 2172475 is larger than the configured limit of 524288" --> that's what I get for Red Hat RPMs instead of real files.... Anyway.... the possible "bug" is that the documentation specifically states that all three of these configuration directives are of type integer and the default is "8M"... it seems to me that should be 8000000 if the unit is bytes. And, even the units of the directive is a bit unclear and should be clearly stated, I think. Thanks for your patience and good work.... and if this isn't in line... well I fixed my problem so I'm still thrilled with you folks.