Reputation: 31
I'm using latest version of wordpress, contactform7 and POST SMTP plugin. I'm using Contactform 7 for contact us form. when i click on submit button then form data is submitted in the database but E-mail is not sent and also success message is not shown.I have checked in ajax response it showing me error which is as below :
code: "internal_server_error"
message: " There has been a critical error on your website.
To resolve it I also try a solution but it's not working.Below is the link of it.
Contact Form 7 cause HTTP 500 error
Thanks in advance.
Upvotes: 2
Views: 3791
Reputation: 595
Can try below points
does the issue still exist? If not, activate each plugin one by one until the issue happens again.
Turn on WP DEBUG – do any errors display in your Dashboard or on your live site?
If you’re getting a white screen while Customizing or somewhere else, try increasing your memory limit.
Activate the core WordPress theme (TwentySeventeen) – does the issue still exist? If so, we know it’s not a GeneratePress specific issue.
Check your error_log (or ask your hosting to) – are there any big errors in there?
Upvotes: 0
Reputation: 595
Not sure but can you check your live rewrite rules: in htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Upvotes: 0