What is and how to solve net :: ERR_CONNECTION_RESET?

0

Good afternoon,

I developed a system to manage the FTP of the company where I work, in this way, locally works perfectly and when I upload to the server and try to send a file larger than 30mb, it fails to upload and returns the following message in the browser's CONSOLE :

net :: ERR_CONNECTION_RESET

I searched the internet and could not identify the real cause of this problem.

Thank you.

    
asked by anonymous 11.06.2014 / 21:34

1 answer

2

Error net::ERR_CONNECTION_RESET informs you that the connection has been redone. This can occur for a number of reasons, such as failure to connect.

Try to access your system from a different connection, browser, and computer. With this it is possible to eliminate the possibility of being a problem with your machine or in your network, since when this on a local server it works normally. There is also the possibility of being a problem with a firewall or the internet provider .

Second step is to check how the server is configured, see if there is any upload size limit, or maximum server connection time. Since you are accessing the service at a lower speed, it is common to take more time and this may cause some problem.

    
13.06.2014 / 22:00