0

When trying to upload a 130mb file I get 413 Request Entity Too Large. Using Network Solutions web hosting.

I've used .htaccess:

LimitRequestBody 10485760000

and php.ini:

memory_limit = 10000M
upload_max_filesize = 10000M
post_max_size = 10000M
Stephen
  • 1
  • 1

1 Answers1

0

In your htaccess file try to set the limit as

LimitRequestBody 150000000

Because as per apache server it should range between 0 - 2147483647(bytes).

This may solve your problem

Refrence: Apache Server

And if then also its not working you need to set the mod_reqtimeout for apache modules as per your file and needs

You can refer it here Apache Module mod_reqtimeout

Kunal Raut
  • 2,495
  • 2
  • 9
  • 25