Back to Help Center
Category: Troubleshooting
Common Issues and Solutions
Solutions to common problems you might encounter when using ExpressCSV
File Size Limits
If you're having trouble uploading a CSV file, check that it doesn't exceed our size limits:
- Free plan: Up to 5MB
- Pro plan: Up to 25MB
- Enterprise plan: Up to 100MB
File Size Limits
Encoding Problems
For CSV
files with special characters:
- Ensure your CSV is saved with UTF-8 encoding
- If using Excel, export as "CSV UTF-8"
- Check for and remove any BOM (Byte Order Mark) characters
Step-by-Step Troubleshooting Guide
1
Check Your Connection
RequiredEnsure you have a stable internet connection. You can test your connection by visiting other websites or using a speed test tool.
// Example code can be included console.log('Connection test');
2
Make sure your file is a valid CSV format:
- Check for proper delimiters (commas or tabs)
- Ensure all rows have the same number of columns
- Remove any special formatting or macros
3
Sometimes cached data can cause issues:
- Open your browser settings
- Navigate to privacy/security settings
- Clear browsing data (focus on cached images and files)
- Try uploading again
4
Contact Support
HelpIf you're still experiencing issues, our support team is ready to help:
- Email: support@expresscsv.com
- Live chat: Available during business hours
- Include screenshots and descriptions of the issue
Widget Integration Issues
Widget Not Appearing
If the widget isn't appearing in your application:
// Check if the container element exists if (!document.querySelector('#csv-container')) { console.error('Container element not found'); } // Make sure you're calling widget.open() after the DOM is loaded document.addEventListener('DOMContentLoaded', () => { widget.open(); });
CORS Errors
If you're seeing CORS errors in the console:
- Ensure your domain is added to the allowed origins in your project settings
- Check that you're using the correct API key
- Verify that your browser supports the required features
Data Mapping Issues
If columns aren't mapping correctly:
- Check that your column headers match your schema field names
- Try using our auto-mapping feature by clicking "Auto Map"
- Ensure your CSV doesn't have extra header rows or comments at the top
Still having issues? Contact our support team for assistance.