Anyone have any ideas on this, i'm losing the will to live!
Apr 8, 2015
32
Level 51
Forge - 502 Bad Gateway
Although I have the following set in my config file.
max_execution_time = 900
; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
; long running scripts.
; Note: This directive is hardcoded to -1 for the CLI SAPI
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; http://php.net/max-input-time
max_input_time = 60
; Maximum input variable nesting level
; http://php.net/max-input-nesting-level
;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted
; max_input_vars = 1000
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 512M
post_max_size = 125M
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; http://php.net/upload-tmp-dir
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 512M
; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
But still I'm trying to upload a csv file that is 9MB in size and it does upload about 75% of it, but then returns a 502
Please or to participate in this conversation.