Troubleshooting
Fix common issues and workflow problems
Troubleshooting Guide
Quick solutions to the most common problems you might encounter with Supern8n workflows.
Quick Diagnostics
Before diving into specific issues, run through this quick checklist:
- Is your n8n instance running and accessible?
- Are you using a compatible n8n version?
- Are all required credentials configured?
- Have you activated the workflow (if using triggers)?
- Have you tested the workflow manually?
- Are there any red error indicators on nodes?
Download & Account Issues
Can't Find My Downloads
Problem: Purchased workflows not showing in My Downloads
Solutions:
Verify you're logged in
- Check the email address you're logged in with
- Make sure it matches your purchase email
Check purchase confirmation
- Look for confirmation email
- Verify payment was processed
Clear browser cache
Chrome: Ctrl+Shift+Delete (Windows) or Cmd+Shift+Delete (Mac) Firefox: Ctrl+Shift+Delete (Windows) or Cmd+Shift+Delete (Mac) Safari: Cmd+Option+E (Mac)Wait a few minutes
- Processing can take 1-2 minutes for paid purchases
- Free workflows appear immediately
Contact support if issue persists:
- Email: hello@supern8n.com
- Include: Order number and account email
Download Button Not Working
Problem: Click download but nothing happens
Solutions:
Try a different browser
- Test in Chrome, Firefox, or Safari
- Use incognito/private mode
Disable browser extensions
- Ad blockers can interfere
- Try with extensions disabled
Check pop-up blocker
- Allow pop-ups for supern8n.com
- Browser settings → Privacy → Pop-ups
Right-click alternative
- Right-click the Download button
- Select "Save Link As..."
Check download location
- May have downloaded to default folder
- Check Downloads folder
Login Issues
Problem: Can't log in to account
Solutions:
Reset password
- Click "Forgot Password" on login page
- Check email (and spam folder) for reset link
Check email address
- Verify you're using the correct email
- Try both personal and work email if applicable
Clear cookies and cache
- Browser settings → Privacy → Clear browsing data
Account not verified
- Check email for verification link
- Resend verification from login page
Browser issues
- Try incognito/private mode
- Try a different browser
Import & Installation Issues
"Invalid Workflow File" Error
Problem: n8n won't import the workflow file
Solutions:
Re-download the file
- Original download may be corrupted
- Download fresh copy from Supern8n
Check file extension
- Should be
.jsonnot.json.txt - On Windows: Enable "Show file extensions"
- Rename if necessary
- Should be
Don't edit the file
- Don't open in text editor before importing
- Don't modify the JSON content
Try different import method
- Use "Import from File" instead of drag-and-drop
- Try copy-paste method (open in text editor, copy all, use "Import from Clipboard")
Check n8n version
- Workflow may require newer n8n version
- Update n8n if needed
Missing Nodes Error
Problem: "Unknown node type" or missing nodes
Solutions:
Update n8n
# npm installation npm install -g n8n@latest # Docker docker pull n8nio/n8n:latestCheck version requirements
- Compare your n8n version with workflow requirements
- Workflow detail page lists minimum version
Install community nodes
- Some workflows use community nodes
- Install via: Settings → Community Nodes
Alternative nodes
- Replace missing node with similar node
- Adjust workflow if node unavailable
Workflow Imports But Shows Errors
Problem: Red error indicators on nodes after import
Solutions:
Configure credentials (most common cause)
- Click on red nodes
- Select or create credentials
- Test connection
Update placeholder values
- Replace example emails with yours
- Update IDs and references
- Fill in required fields
Check node configuration
- Review settings in each error node
- Ensure all required fields filled
- Verify data types match
Verify connections
- Check all nodes are properly connected
- Ensure no broken connections
Execution Issues
Workflow Won't Execute
Problem: Clicking "Execute Workflow" doesn't work
Solutions:
Check for errors
- Look for red indicators
- Fix configuration issues first
Verify trigger configuration
- Manual trigger selected for testing?
- Trigger node properly configured?
Check n8n instance
- Is n8n running?
- Check browser console for errors (F12)
Restart n8n
# Stop and restart n8n service # Docker docker restart n8n # npm/local Stop and run: n8n startCheck execution settings
- Workflow Settings → Execution timeout
- Ensure timeout isn't set too low
Workflow Executes But No Output
Problem: Workflow runs but produces no results
Solutions:
Check trigger conditions
- For scheduled triggers, wait for scheduled time
- For webhook triggers, send test data
- For app triggers, ensure event occurs
Verify input data
- Click "Execute Workflow" in test mode
- Provide sample input data if needed
- Check if trigger received data
Enable debug mode
- Click on each node to see output
- Check if data flows through all nodes
- Identify where data stops flowing
Check filters and conditions
- IF nodes may be filtering out data
- Switch nodes may route to inactive paths
- Review logic node settings
Check execution logs
- Workflow Settings → Execution
- Review past execution logs
- Look for error messages
"Missing Credentials" Error
Problem: Nodes show missing or invalid credentials
Solutions:
Create credentials
- Click on node with error
- Click "Create New Credential"
- Enter API keys/authentication info
Test credentials
- Use "Test" button in credential screen
- Verify connection succeeds
- Check for typos in API keys
Check credential permissions
- Ensure API key has required permissions
- Some APIs need specific scopes
- Regenerate API key if needed
Use correct credential type
- OAuth vs API Key vs Basic Auth
- Check service documentation
- Match credential type to requirement
Credential sharing (self-hosted)
- For team environments, share credentials properly
- Check credential access permissions
- Verify credential ownership
Rate Limit Errors
Problem: "Too many requests" or "Rate limit exceeded"
Solutions:
Reduce execution frequency
- Increase interval between runs
- Batch operations together
- Use polling instead of constant checks
Implement retry logic
- Add "Wait" node before retrying
- Use exponential backoff
- Add Error Trigger for retries
Split in batches
- Use "Split In Batches" node
- Process smaller chunks at a time
- Add delays between batches
Check API plan
- Verify rate limits for your API plan
- Upgrade if needed
- Monitor usage
Cache results
- Store frequently accessed data
- Reduce unnecessary API calls
- Use database for temp storage
Data & Integration Issues
Wrong Data in Output
Problem: Workflow runs but data is incorrect
Solutions:
Check data mappings
- Verify field names match source
- Update expressions if fields changed
- Test with sample data
Inspect node output
- Click on each node
- Review actual output data
- Compare to expected format
Check data transformations
- Review Set nodes
- Check Function node logic
- Verify filters and conditions
Source data changed
- API response format may have changed
- Update mappings to match new structure
- Contact service provider if needed
Data type issues
- String vs number mismatches
- Date format problems
- Array vs object confusion
API Connection Fails
Problem: Can't connect to external service
Solutions:
Verify credentials
- Test API key in credential screen
- Regenerate API key if expired
- Check for typos
Check endpoint URL
- Verify base URL is correct
- Check for API version in URL
- Ensure no trailing slashes issues
Network issues
- Firewall blocking requests?
- VPN interfering?
- Check DNS resolution
Service status
- Check if API service is down
- Visit service status page
- Check service Twitter/status
API changes
- Service may have updated API
- Check changelog/documentation
- Update workflow if needed
Data Not Syncing
Problem: Changes don't appear in destination
Solutions:
Check execution logs
- Verify workflow actually ran
- Check for errors in execution
- Confirm data was sent
Verify destination
- Correct account/workspace?
- Right table/sheet/folder?
- Permissions to write data?
Check field mappings
- Field names match destination?
- Required fields included?
- Data format correct?
Look for duplicates
- Deduplication rules in place?
- Data rejected as duplicate?
- Check unique identifiers
Timing issues
- Delay between update and appearance?
- Caching in destination?
- Wait and check again
Activation & Trigger Issues
Can't Activate Workflow
Problem: Toggle switch won't turn on
Solutions:
Fix all errors first
- Resolve red error indicators
- Configure all credentials
- Complete all required fields
Check trigger node
- Must have valid trigger node
- Trigger properly configured
- Supported trigger type
Verify webhook URL
- For webhook triggers, URL must be accessible
- Check if behind firewall
- Test webhook URL
Check execution limits
- Self-hosted: Check resource limits
- Cloud: Check plan limits
- Too many active workflows?
Restart n8n
- Sometimes activation hangs
- Restart resolves issue
Workflow Not Triggering
Problem: Activated workflow doesn't run
Solutions:
For Schedule Triggers:
- Check cron expression is correct - Verify timezone settings - Wait for next scheduled time - Check execution historyFor Webhook Triggers:
- Verify webhook URL is correct - Test with manual POST request - Check if source service is sending data - Review webhook payload formatFor App Triggers:
- Confirm event occurs in source app - Check trigger filtering isn't too strict - Verify app credentials still valid - Test with manual eventCheck n8n is running
- Self-hosted must be always running
- Check server status
- Review system resources
Review execution settings
- Check "Workflow Active" toggle
- Verify no execution time restrictions
- Check for conflicting workflows
Performance Issues
Workflow Runs Slowly
Problem: Execution takes too long
Solutions:
Optimize data processing
- Process in batches
- Limit data retrieved
- Use filters early in workflow
Reduce API calls
- Batch API requests
- Cache frequently used data
- Remove unnecessary calls
Parallel processing
- Split into parallel branches
- Process independently
- Merge results at end
Timeout settings
- Increase timeout if needed
- Workflow Settings → Timeout
Resource allocation
- Self-hosted: Increase RAM/CPU
- Check system resources
- Consider upgrading server
Workflow Times Out
Problem: Execution exceeds time limit
Solutions:
Increase timeout
- Workflow Settings → Execution timeout
- Increase to appropriate value
Split into smaller workflows
- Break into multiple workflows
- Chain workflows together
- Process in stages
Use queues
- Implement queue system
- Process asynchronously
- Handle long-running tasks separately
Optimize code
- Review Function nodes
- Improve efficiency
- Remove unnecessary operations
Background processing
- Use webhook callback
- Process in background
- Return immediate response
Need More Help?
Before Contacting Support
Please gather:
Error details
- Error messages (exact text)
- Screenshots of errors
- Node that's failing
Environment info
- n8n version (Settings → About)
- Self-hosted or cloud?
- Browser and OS
Steps to reproduce
- What were you doing?
- What happened?
- What should have happened?
Workflow info
- Which workflow?
- Any customizations made?
- When did issue start?
Support Channels
📧 Email Support
- hello@supern8n.com
- Response within 24-48 hours
- Include all info above
💬 Live Chat
- Weekdays 9am-5pm EST
- Instant help for urgent issues
- Available on our website
🎥 Screen Recording
- Use Loom or similar
- Record the issue
- Share link with support
📚 Knowledge Base
- Browse more articles
- Watch video tutorials
- Read FAQs
Community Resources
n8n Community Forum
- community.n8n.io
- Ask the community
- Search existing solutions
n8n Documentation
- docs.n8n.io
- Comprehensive guides
- Node references
Supern8n Blog
- Tips and tutorials
- Best practices
- Use case examples
Quick Reference
Common Error Messages
| Error | Likely Cause | Solution |
|---|---|---|
| "Missing credentials" | No API keys configured | Add credentials in node |
| "Invalid token" | Expired/wrong API key | Regenerate and update |
| "Rate limit exceeded" | Too many requests | Add delays, reduce frequency |
| "Timeout" | Execution too long | Increase timeout or optimize |
| "Unknown node type" | Node not available | Update n8n or install node |
| "Invalid JSON" | Corrupted workflow file | Re-download from Supern8n |
| "Connection refused" | Service unreachable | Check URL, network, service status |
| "Unauthorized" | Wrong credentials | Verify API key and permissions |
Testing Checklist
- Downloaded original workflow
- Imported successfully
- Configured all credentials
- Updated placeholder values
- Tested each node individually
- Tested full workflow execution
- Reviewed all outputs
- Tested with real data
- Checked error handling
- Activated workflow
Still Having Issues?
We're here to help! Contact us:
- Email: hello@supern8n.com
- Live Chat: Available on our website
- Help Center: /en/help
Include as much detail as possible for faster resolution.
Related Resources:
Related Help Topics
More resources that might help
Still Need Help?
Our support team is here to assist you