You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I send file(s) with comment but after upload module I do not see anything but file1.* and file2.* fields.
nginx config:
location @mptst { js_content tst.mptst; }
location /mptst {
### Pass altered request body to this location
upload_pass @mptst;
### Store files to this directory
### The directory is hashed, subdirectories 0 1 2 3 4 5 6 7 8 9 should exist
upload_store /tmp;
### Allow uploaded files to be read only by user
upload_store_access user:r;
### Set specified fields in request body
upload_set_form_field $upload_field_name.name "$upload_file_name";
upload_set_form_field $upload_field_name.type "$upload_content_type";
upload_set_form_field $upload_field_name.path "$upload_tmp_path";
### Inform backend about hash and size of a file
upload_aggregate_form_field $upload_field_name.sha1 "$upload_file_sha1";
upload_aggregate_form_field $upload_field_name.size "$upload_file_size";
upload_pass_form_field ".*";
upload_cleanup 400 404 499 500-505;
}
The text was updated successfully, but these errors were encountered:
Using this form
I send file(s) with comment but after upload module I do not see anything but file1.* and file2.* fields.
nginx config:
The text was updated successfully, but these errors were encountered: