Request Entity Too Large Problem

video uploads in error;

Request Entity Too Large

The requested resource
/cgi-bin/uu_upload.pl
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

why?

It's exactly what the error

It's exactly what the error message says, you're uploading files too large for what you have specified either in php.ini or ostube setup.

post_max_size =

post_max_size = 200M
upload_max_filesize = 200M

you might also want to adjust

max_execution_time = 120
max_input_time = 240
memory_limit = 64M

post_max_size=500M upload_max

post_max_size=500M
upload_max_filesize=500M

max_execution_time = 120
max_input_time = 240
memory_limit = 64M

server required complete but;

again error(s) :( ...

Request Entity Too Large

The requested resource
/cgi-bin/uu_upload.pl
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

did you restart apache after

did you restart apache after updating the php.ini > service httpd restart?

Hi @all

The perl script itself also has a limit configured. The standard value configured in its configuration file cgi-bin/uu_default_config.pm is:
max_upload => 509715200,

which means 486,1 MB!

If you want to upload 500 MB files you should configure it to:
max_upload => 524288000,
or a bit more.

Regards

-- osTube Entwicklerteam, Karsten

yes restart but again error

yes restart but again error again :( ...

halid

Did you edited uberuploader's config file as I described?

Regards

-- osTube Entwicklerteam, Karsten

uberuploader's config file

uberuploader's config file not edit.

my phpinfo() page url;

http://www.nurtube.net/php_info.php

Hi again halid

you should edit uberuploader's configuration file as well if you want to upload files larger than 486,1 MB! That is the LIMIT of the uberuploader. Edit that configuration file as I described 4 posts above: http://www.ostube.de/node/2205#comment-3388

Regards

-- osTube Entwicklerteam, Karsten

cgi-bin/uu_default_config.pm

cgi-bin/uu_default_config.pm uberuploader's configuration file edited.

not response :( again error(s)

again; Request Entity Too Lager Problem. :(

Hi again halid

Please check your Apache configuration file. Especially the LimitRequestBody directive. Set it to '0', restart the Apache and try again.

Regards

-- osTube Entwicklerteam, Karsten

/usr/local/apache/conf/httpd.

/usr/local/apache/conf/httpd.conf ? HTTPD Conf File?

LimitRequestBody not value...??

Sample "LimitRequestBody" line please..

Oh dear

are you still using Apache 1.3? Why - if I'm alloed to ask? What Linux in which version are you using there?

The sample line in the Apache2 config file (in most systems /etc/apache2/apache2.conf) would look like this:
LimitRequestBody 0

Regards

-- osTube Entwicklerteam, Karsten

Mod_security :) thanks ;)

Mod_security :)

thanks ;)

Hi halid

oh dear... you found it ^_^
Well... thanx for letting me know. I didn't had this one yet.

Regards

-- osTube Entwicklerteam, Karsten