Uploaded file is too large. The current value of post_max_filesize is 128M
Permalink
Hey,
How do I upload the max file size upload limit. I read somewhere something to do with changing the php.ini file and some providers have a max. Well I have no restrictions on how much i can upload as far as I know. If I do they are very high.
I want to essentially have it around 500Mb- 1GB
Thanks
How do I upload the max file size upload limit. I read somewhere something to do with changing the php.ini file and some providers have a max. Well I have no restrictions on how much i can upload as far as I know. If I do they are very high.
I want to essentially have it around 500Mb- 1GB
Thanks
Add this:
; Maximum allowed size for uploaded files.
upload_max_filesize = 40M
; Must be greater than or equal to upload_max_filesize
post_max_size = 40M
change the 40 to whatever you want.
https://stackoverflow.com/questions/2184513/change-the-maximum-uploa...