504 GATEWAY_TIMEOUT When i upload bunch of images

749 Views Asked by At

I have application in which i uploads multiple images using zip file.

It is working fine in my local system and also working fine on server if I upload only 2 images but when I am trying to upload more than 20 images in a single zip it gives me following error :

Failed to load resource: the server responded with a status of 504 (GATEWAY_TIMEOUT)

I am using centos + apache + passenger on server.

environment

OS: Centos7

ruby: 2.2.3 installed with rvm

passenger 5.5.0

rails: 4

PostgreSQL: latest version

apache installed with passenger

If you have any solution please answer.

1

There are 1 best solutions below

3
On

Normally, server need continues connection for file or image upload, but when file size is large and if you don't need to do any processing on file then we need to set background job for same.

So, server upload that file gradually and not throw any kind of error like 504 GATEWAY_TIMEOUT.

Hope, this will help you.