You Don’t Have Permission To Access On This Server For PHP

Asked By 10 points N/A Posted on -
qa-featured

I am trying to run PHPMyAdmin but keep getting the error “You don’t have permission to access / on this server.” The error code is 403. How do I solve this problem?

SHARE
Answered By 5 points N/A #302349

You Don’t Have Permission To Access On This Server For PHP

qa-featured

This is the problem of authentication and admin rights. You need to set up the ‘options’ directive in the file ‘httpd.conf’ (global directory) or for the file ‘httpd-vhosts.conf’ (specific directory).

Inline 188 make changes as: Options Indexes FollowSymLinks Includes ExecCGI
Make sure to change all ‘deny’ options to ‘allow.’
This should work.

Answered By 590495 points N/A #303895

You Don’t Have Permission To Access On This Server For PHP

qa-featured

You normally receive “Error 403 Forbidden” when you try to access a page in a website that is forbidden or restricted from ordinary users. This HTTP status code normally applies to folders where only site administrators are allowed to access. The error is triggered when you try to access a folder or directory that doesn’t have an index file (index.php, index.html, or index.htm).

But if you were in the Control Panel of your site, I don’t think this error can be triggered because you have full access to your domain. If you receive this while in the Control Panel, try to log out of your account and log in back. See if it works. “Error 403” is designed to be triggered in the public sections of your site.

Related Questions