Hi
I'm trying to upload a 30mb movie file with the media module and getting the following error:
Brettle.Web.NeatUpload.UploadTooLargeException: Total size > 4194304 bytes
I've got the following settings in my web.config:
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="40000" requestLengthDiskThreshold="20000" executionTimeout="9000" />
<neatUpload useHttpModule="true" maxRequestLength="40000" defaultProvider="FilesystemUploadStorageProvider">
<providers>
<add name="FilesystemUploadStorageProvider" type="Brettle.Web.NeatUpload.FilesystemUploadStorageProvider, Brettle.Web.NeatUpload" />
</providers>
</neatUpload>
Thank's
John