how do you change the maximum upload file size, i want people to only be aloud to upload 25mb video files on my site, can you do that?
like in a .htaccess File But Without Getting A 500 ERROR
UPDATE: http://www.triggervid.com/
when a user uploaded's a video i want it to say Something like - Sorry The file you are trying to upload is to big or it exceeds the maximum limit, only if it is over 25mb. sorry im not very Well At explaining things :)
P.S im using PHP mainly
LimitRequestBody
directive in your .htaccess file - but I'm never tried it myself. The issue here is that it controls the overall request size, not the file size. So, if your user can upload two files on the same form, this limit will be applied to the total content size, not each file separately. – Aleks G