I am trying to upload images to nginx server. I have changed in php.ini such as upload_max_filesize = 12M and in nginx.conf such as client_max_body_size = 30M. i am trying to upload 3 images at a time. If size of 3 image are less than 6mb , images are successfully uploaded but when images are greater than 6mb , it returns only '' and images are not uploaded. How to solve this issue??
proxy_send_timeout = 300andproxy_read_timeout = 300in your nginx settings this means 300 seconds the default is60. this if you have apache behind nginx - Mostafa Hussein