Active Workflow does not work

Hey guys, I have a problem with running workflow in active mode.
I’ve created HTML forms, which are connected with my webhook trigger. So, when I submit the form workflow should start to work. In test mode in runs perfectly, but when it comes to Activating the workflow, it is not being run. So, I changed the URL in my HTML code to production URL, and when I submit it, the page says that the workflow executed perfectly and n8n executions history considers this execution as successful, however, no data is being passed to the Webhook node and other subsequent nodes.
Maybe someone met this problem? I would really appreciate if you could share your experience and give solutions to this issue.

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow


Share the output returned by the last node

Information on your n8n setup

  • **n8n version:**1.111.1
  • Running n8n via: localhost, via Node.js
  • Operating system: Windows 11

Please share your workflow as well as the code form your HTML page that makes the request to the form.

Pardon me, I meant the Javascript that makes the request, not the HTML

Here’s my workflow:

{
“nodes”: [
{
“parameters”: {
“operation”: “xlsx”,
“options”: {
“headerRow”: true,
“includeEmptyCells”: true,
“range”: “A1:J5”
}
},
“type”: “n8n-nodes-base.extractFromFile”,
“typeVersion”: 1,
“position”: [
-368,
-320
],
“id”: “7bcdfd5b-4c69-43eb-b427-6a94ba567c0b”,
“name”: “Extract from BOM”
},
{
“parameters”: {
“operation”: “xlsx”,
“options”: {
“headerRow”: true,
“includeEmptyCells”: true,
“range”: “A1:J6”
}
},
“type”: “n8n-nodes-base.extractFromFile”,
“typeVersion”: 1,
“position”: [
-368,
-144
],
“id”: “062c333f-88b3-4d6b-b010-52fa9b91e773”,
“name”: “Extract from Template”
},
{
“parameters”: {
“httpMethod”: “POST”,
“path”: “form-submit”,
“options”: {}
},
“type”: “n8n-nodes-base.webhook”,
“typeVersion”: 2.1,
“position”: [
-896,
-240
],
“id”: “a4cee41f-d76e-4309-9235-11dceaf16e65”,
“name”: “BOM submission”,
“webhookId”: “7f41c3e5-8b08-43e1-8d28-0226295841a5”
},
{
“parameters”: {
“mergeByFields”: {
“values”: [
{
“field1”: “__EMPTY”,
“field2”: “__EMPTY”
}
]
},
“options”: {}
},
“type”: “n8n-nodes-base.compareDatasets”,
“typeVersion”: 2.3,
“position”: [
-144,
-272
],
“id”: “62445edd-36e6-4d72-9664-ffa0bb2771c3”,
“name”: “Check with the template”,
“alwaysOutputData”: true
},
{
“parameters”: {
“operation”: “download”,
“fileId”: {
“__rl”: true,
“value”: “= {{ $json.body.specificLink }}”,
“mode”: “url”
},
“options”: {}
},
“type”: “n8n-nodes-base.googleDrive”,
“typeVersion”: 3,
“position”: [
-592,
-320
],
“id”: “05296baa-884f-41bb-8772-faaeaf6bfa61”,
“name”: “Download BOM”,
“credentials”: {
“googleDriveOAuth2Api”: {
“id”: “kLKqyCDEv75YOqc2”,
“name”: “Main”
}
}
},
{
“parameters”: {
“operation”: “download”,
“fileId”: {
“__rl”: true,
“value”: “``https://docs.google.com/spreadsheets/d/1mqauoI7rAdmkMNm9SG-f6G1IKp-Jf8zK/edit?gid=763764905#gid=763764905”``,
“mode”: “url”
},
“options”: {}
},
“type”: “n8n-nodes-base.googleDrive”,
“typeVersion”: 3,
“position”: [
-592,
-128
],
“id”: “884c6b57-4316-4e79-b211-4bbeb8aea805”,
“name”: “Template”,
“credentials”: {
“googleDriveOAuth2Api”: {
“id”: “kLKqyCDEv75YOqc2”,
“name”: “Main”
}
}
}
],
“connections”: {
“Extract from BOM”: {
“main”: [
[
{
“node”: “Check with the template”,
“type”: “main”,
“index”: 0
}
]
]
},
“Extract from Template”: {
“main”: [
[
{
“node”: “Check with the template”,
“type”: “main”,
“index”: 1
}
]
]
},
“BOM submission”: {
“main”: [
[
{
“node”: “Download BOM”,
“type”: “main”,
“index”: 0
},
{
“node”: “Template”,
“type”: “main”,
“index”: 0
}
]
]
},
“Check with the template”: {
“main”: [
,
,
,

]
},
“Download BOM”: {
“main”: [
[
{
“node”: “Extract from BOM”,
“type”: “main”,
“index”: 0
}
]
]
},
“Template”: {
“main”: [
[
{
“node”: “Extract from Template”,
“type”: “main”,
“index”: 0
}
]
]
}
},
“pinData”: {},
“meta”: {
“templateCredsSetupCompleted”: true,
“instanceId”: “0464d9d19150a0a34d1944614c23ce2f16d5ed30c613203d67a1a84598ccc1ff”
}
}

Here’s HTML code:

Submit Email and Link body { font-family: Arial, sans-serif; max-width: 600px; margin: 20px auto; padding: 20px; } .form-group { margin-bottom: 15px; } label { display: block; margin-bottom: 5px; font-weight: bold; } input { width: 100%; padding: 8px; box-sizing: border-box; } button { background-color: #4CAF50; color: white; padding: 10px 15px; border: none; cursor: pointer; } button:hover { background-color: #45a049; }

Submit BOM File

<div class="form-group">

  <label for="email">Email:</label>

  <input type="email" id="email" name="Your email" required placeholder="Enter your email">

</div>

<div class="form-group">

  <label for="specificLink">Specific Link:</label>

  <input type="url" id="specificLink" name="specificLink" required placeholder="Enter a link">

</div>

<button type="submit">Submit</button>

Workflow should be in a box like this:

workflow code

But if it doesn’t work for some reason you can also upload it on G Drive :wink:

Here’s separately JS code:

Hey, thanks for the workflow, can you also double check for the JS code - it didn’t make it through :slight_smile:

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