403 - Forbidden: Access is denied

1

enter image description here

I design a web site with joomla 3.3.6 and when I want to deploy my website from localhost to host I get the following error:

403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.

After installing a few times the site was opened, what is the solution?

masoud gharibdoust

Posted 2015-11-23T11:27:35.547

Reputation: 21

What do you mean by After installing a few times the site was opened – pun – 2015-11-23T12:20:46.737

Answers

0

There are generally two things that lead to this error.

  1. The Server requires HTTPS for that url. To fix, just change the URL to https://server/page.htm

  2. You have entered the URL for a directory, and the server has no default document specification for that directory. To fix, add the page you wish to visit to the URL following a /. In Example: http://server/page.htm

Since you appear to be talking about publishing the application, I'm leaning toward option 1.

Additionally, you say that after publishing several times, and failing, it suddenly succeeds. Assuming you are not changing settings between retries, If that is the case, then the server you are publishing to is not stable, and you will need to contact your service provider.

Frank Thomas

Posted 2015-11-23T11:27:35.547

Reputation: 29 039