Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

504 Error On Server

I'm loading data into a text file and when the procedure takes long (lots of data) I get a 504 response (viewed in Fiddler) and obviously the file fails to generate. I thought I'd try increasing the session timeout in my web.config, but that didn't help.

Is there some property that determines the timeout for this?

Appreciate any help.

like image 446
Rivka Avatar asked Jun 11 '12 19:06

Rivka


1 Answers

This is most likely related to httpRuntime web.config element:

<httpRuntime
   maxRequestLength= "4096"     />

maxRequestLength is in integer value that specifies the limit for the input stream in KB. The default is 4096 (4 MB) set to this level with the intention to avoid users posting large files to the server.

Additionally you may need to add the executionTimeout="999999" attribute to this element.

Please note that Microsoft documentation indicates about debugging mode regarding the executionTimeout:

executionTimeout The default is "00:01:50" (110 seconds).

This time-out applies only if the debug attribute in the compilation element is False. To help to prevent shutting down the application while you are debugging, do not set this time-out to a large value.

like image 81
Dalorzo Avatar answered Oct 04 '22 19:10

Dalorzo