I start a n8n docker container with the below command on my local server:
docker run -d
–name n8n
–restart unless-stopped
-u root
-p 5678:5678
-e N8N_SECURE_COOKIE=false
-e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
-e N8N_RUNNERS_ENABLED=true
-v n8n_data:/home/node/.n8n
-v /home/abieskawa/output:/files docker.n8n.io/n8nio/n8n:1.98.0
when i try to test with form submission, i cannot get any pop-up window.
Allow pop-ups
Check if your browser blocks pop-ups. Many modern browsers block new tabs by default. Make sure you allow pop-ups for the address http://localhost:5678 or your server’s domain. You can test this in incognito mode or from another browser.
Redirect or incorrect port
Make sure you’re accessing http://localhost:5678 (or the correct domain if you’re on a local network). If you’re behind a proxy, make sure you’re correctly forwarding port 5678.
Misconfigured or incomplete node
Check the node’s Settings tab to make sure: The POST method is selected. It has a generated test URL. You’re clicking “Test Request” and not simply running the flow.