Mohammed
Mohammed

Reputation: 23

Wordpress Forbidden You don't have permission to access /wp-admin/admin-ajax.php on this server

I have a portfolio when I click on the filter button it gives me this error : You don't have permission to access /wp-admin/admin-ajax.php on this server.

Apache Forbidden response

Upvotes: 2

Views: 10290

Answers (1)

samanime
samanime

Reputation: 26597

You don't have permission to access that file.

That likely means that you need to log into your server and change the permissions on that file. If it's Linux, and you can get to command-line, just use chmod:

chmod 774 /path/to/wp-admin/admin-ajax.php

If it's some other configuration, you may need to ask another question, or update this one with those details if you can't figure it out. A question like that may actually be better suited for StackOverflow's sister site, StackExchange.

Upvotes: 0

Related Questions