Okay, finally problem solved. This was the code snippet responsible for the bug. It was meant to protect my website from spam comments but ended up interfering with jetpack comments.
# BLOCK SPAM
#<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{HTTP_USER_AGENT} ^$ [OR]
RewriteCond %{HTTP_REFERER} !otakumultiverse.com [NC]
RewriteCond %{REQUEST_URI} /wp-comments-post\.php [NC]
RewriteRule .* – [F,L]
</IfModule>
thank you Lamday for giving me a hint. And if anybody followed the tutorials made by the famous plugin editor jeff starr don’t forget to remove the code snippet i just posted above. I hope atleast akismet keeps my website clean of spam comments after i deleted the code from my .htaccess file
-
This reply was modified 7 years, 4 months ago by masonwoods.
-
This reply was modified 7 years, 4 months ago by masonwoods.