Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LimitRequestBody cause me problems :(

Status
Not open for further replies.

haneo

Programmer
Jan 2, 2002
274
CA
I have installed squirrel+apache (httpd-2.0.40-8.rpm), in RedHat 8.0 with postfix (postfix-1.1.11-5.rpm) (SCSI hard disk 100 GO + 1Go of RAM+ 4x1.3Ghz Intel CPU)

All is working well, just a problem the joint file can't be more than 524288 byte as i read it from
/var/log/httpd/error_log

like this:

[Wed Apr 02 08:45:56 2003] [error] [client 10.0.0.1] Requested content-length of 543529
is larger than the configured limit of 524288,
referer:


I have added the line "LimitRequestBody 0" to the begin of /etc/httpd/conf/httpd.conf

but the same probleme remain the same :(

i have added the same line in another place like this:

<Directory />
Options FollowSymLinks
AllowOverride None
LimitRequestBody 0
</Directory>


I restart apache. But always the same problem the limite is still 524288.

Please help is there some thing i am missing ?
 
I just solved the probleme.
The file /etc/httpd/conf.d/php.conf
must be changed:

LimitRequestBody 524288
to
LimitRequestBody 3000000


Et voila !!!!!!!!! ;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top