Essentials for YOOtheme Pro
Submission Errors
Submission Fails With Vague Error
The form displays a Submission Failed error without any further details, it is most likely a suppressed PHP error. To get more insights about it you can:
- Check the server PHP's recent error logs.
- Or enable Error Reporting in your system settings, then submit the form again within the Builder.
Enable Error Reporting
Error reporting can be enabled in Joomla Global Configuration or in WordPress wp-config.php file.
Submission Fails With No Error
The form does not display any visual feedback regarding the error, it could be the .htaccess redirecting the post request.
The best way to debug this is to check if:
- In the browser console. check if a request redirect is happening when the form is submitted.
- In the
.htaccessfile, check if there is any rule that is affecting the URL, eg removing/adding a trailing slash.
If this is the case, you can either remove such a rule or make it more specific, for example by restricting the redirect to only affect GET requests, like so:
Before
sh
# Remove Trailing Slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [R=301,NC,L]After
sh
# Remove Trailing Slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_METHOD} GET
RewriteRule ^(.*)/$ /$1 [R=301,NC,L]