Reputation: 495
Hello I have problem when upload large file more than 30MB approximately from the admin panel otherwise the browser throws
"The connection to the server was reset while the page was loading"
on Firefox or
"Error 101 (net::ERR_CONNECTION_RESET): Unknown error"
on Chrome.
Upvotes: 1
Views: 759
Reputation: 21
This problem should be the Upload limit on Web server, try to increase it.
If you are using NGinx, add client_max_body_size 35m;
at http block or change the value if exists.
Maybe you can increase using a .htaccess file on Apache Web Server.
Upvotes: 2