Hello @kavutha,
Hope you are well today. Kindly confirm if there are any security plugins you have put or any .htaccess rules in place on your live site that block access to /wp-admin/ path.
Thank you
Hello Paul, I dont have any security plugins installed, my .htaccess looks like this
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /vukacounty/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /vukacounty/index.php [L]
</IfModule>
# END WordPress
I dont know if there is any rule blocking.
Hello @kavutha,
It seems access to the /wp-admin/admin-ajax.php is being blocked. I checked on my browser console and noticed this when the button is clicked. Please check this.
Warm Regards
Paul Kevin
Thanks, i have deactivated all the plugins except pesapal just incase there’s one blocking it but still no luck, i have added this code on my .htaccess
<Files admin-ajax.php>
Order allow,deny
Allow from all
Satisfy any
</Files>
But still the same problem. What else can i do to allow access to the admin-ajax.php.