Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Document Management - Upload Breaking with large files

web-app

What I know

1) According to the web.config file I should be able to upload a 40MB file to your software. (maxRequestLength="44096" KB = 40 MB)

2) I was able to upload a 23.77 MB file no problem.

29 MB produces the following error after about 45 seconds.

Error:

Server Error 404 - File or directory not found. The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.

Your help is greatly appreciated,

Angela

angelalaw
· 1
angelalaw
Replies (4)
helpful
0
not helpful

You are probably experiencing timeout.
Please increase it:
<httpRuntime executionTimeout="90" maxRequestLength="44096" useFullyQualifiedRedirectUrl="false"/>


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

It was 90 I made it 3.5 times longer to 300

<httpRuntime executionTimeout="300" maxRequestLength="44096" useFullyQualifiedRedirectUrl="false"/>

<forms name=".Gemini36" loginUrl="Default.aspx" timeout="300" path="/">

and it still does it. And I didn't do 5 minutes again 45 seconds and then it produced the error.

I closed out my browser to ensure a new version was load.

I restarted the website and recycled the application pool.

System log shows no error.

Have you tested it on your system to see if you are having the problem?


angelalaw
· 1
angelalaw
helpful
0
not helpful

Are you running IIS7? If so please add the following under the system.webserver section:

    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="44000000"/>
      </requestFiltering>
    </security>


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Thank you Sarah ;D Yes that was the problem we do have IIS 7.0.

Thanks again!


angelalaw
· 1
angelalaw