In the web.config. However when uploading a video 22mb in size, the video uploads without error. When I try to upload a video 33mb in size, I can see the percent climbing up at the bottom of Chrome, it get to 100% (I believe) then I get the following error:
Media file upload problem
Hi all,
I'm having a problem with media file uploading. I have set:
In the web.config. However when uploading a video 22mb in size, the video uploads without error. When I try to upload a video 33mb in size, I can see the percent climbing up at the bottom of Chrome, it get to 100% (I believe) then I get the following error:
The system cannot find the file specified.
Any ideas?
Hi Darryl,
Could it be that you reach the timeout, or that you do not have enough space on the server to save the file?
Cheers,
Michael.
We do only have 1.5gb left on the server, but that is way more than the file that I am trying to upload. We're not reaching 6 minutes either.
Sounds like a similar issue I had with another CMS.
I think it's an issue with IIS7, try looking at this:-
http://www.cyprich.com/2008/06/19/fixing-file-upload-size-limit-in-iis-7/
It says to add the following to the <system.webServer> node in your web.config file.
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2000000000″ />
</requestFiltering>
</security>
is working on a reply...