Hi ash3347,
I came across your query regarding the issue with exporting over 17,000 submissions in Forminator Forms. I completely understand how frustrating this can be, especially when time-out errors occur despite increasing the execution time and memory limits. Here are some suggestions that might help you resolve this issue:1. Optimize PHP Settings
Ensure your server’s PHP configuration is capable of handling large processes:
max_execution_time = 300
or more.
memory_limit = 512M
or higher (1GB if possible).
- Check
post_max_size
and upload_max_filesize
for any restrictions.
If you’re on shared hosting, consider asking your hosting provider to increase these limits.2. Use Filters to Export in Batches
The plugin allows you to filter submissions by date or other criteria. Try splitting the export into smaller batches instead of exporting everything at once. This reduces server load and prevents timeouts.3. Verify Scheduled Exports
Scheduled exports rely on WordPress’s cron jobs. If you’re not receiving scheduled exports:
- Use a plugin like WP Crontrol to check if cron jobs are running correctly.
- Ensure your hosting supports WordPress cron or switch to a server-side cron job for reliability.
4. Enable Debugging for More Insights
To identify specific issues, enable debugging by adding the following to your wp-config.php
:
php
Copy code
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
After triggering the export, check the log file (wp-content/debug.log
) for any errors or warnings.5. Direct Database Export
If the plugin’s export functionality isn’t working, you can manually export data directly from the database. Use tools like phpMyAdmin or Adminer to access the table where submissions are stored (usually wp_frmt_form_entries
). From there, you can export the data as a CSV file.6. Consider Alternate Tools
If the above solutions don’t work, you can use third-party plugins or tools like WP All Export to handle large data exports more efficiently.
If you still face issues, it might be worth reaching out to the Forminator Forms support team for further assistance. However, I hope these steps provide you with some quick wins to get your submissions exported successfully.
Best regards,
Md. Salim Shaikh
Freelance WordPress Developer
https://wpsmartsolutions.com/