Unable to submit n8n form trigger using Hostinger VPS

Describe the problem/error/question

I am trying to use the n8n form trigger node to submit a form using Hostinger VPS. It fails everytime with the error message below. Any help would be awesome.

What is the error message (if any)?

Problem submitting response
Please try again or contact support if the problem persists

Please share your workflow

Share the output returned by the last node

Problem submitting response
Please try again or contact support if the problem persists

Information on your n8n setup

  • n8n version: 1.117.3
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker on Hostinger VPS
  • Operating system: Windows 10

Hi there! I tested your flow in n8n Cloud and my self-hosted instance and it worked fine, this points to a configuration issue with your Hostinger VPS setup. I suggest the following troubleshooting steps to narrow down the problem:

1. Test without file uploads (text-only inputs)

  • Temporarily remove the three file upload fields from your form

  • This will tell us if it’s a general form submission issue or specifically related to file uploads

  • If it works without files, we know it’s a file size/upload configuration issue

2. Try a smaller image file

  • Upload a very small image (under 1MB) to see if it’s hitting a file size limit

3. Check browser Developer Tools

  • Press F12 to open Developer Tools

  • Go to the “Console” tab and look for any red error messages

  • Then switch to the “Network” tab, clear it, and submit the form

  • Look for the POST request to your webhook and check the status code (like 413, 502, 504)

  • Screenshot any errors - this will show exactly where the request is being blocked

4. Test in incognito mode

  • Try submitting in a private/incognito window to rule out browser extensions or cache issues
2 Likes

Appreciate you @Jon_James

Will revert soonest.

I tested with only the required image out of the image inputs and it worked then I tried 2 and then 3 and it worked as well. Super weird. It failed at least 10 times in a row on my first attempt hence the post.

Thanks again @Jon_James

EDIT: I bumped N8N_PAYLOAD_SIZE_MAX and N8N_FORMDATA_FILE_SIZE_MAX to 50

Glad you found the solution!! Nice work :raising_hands:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.