Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Image RemovedImage Added

The message HTTP 403 "Forbidden" when accessing your home page is caused by file system permissions. Even though all users should have Read permission for the directories and files that you have created in your public_html directory there may be a problem with the permissions depending on when the files were created in the home directory.

...

If you set the permissions in a Linunx Linux environment, you must set them right every time you create new files.

...

Code Block
find ~/public_html -type d -exec chmod 755 {} \;
find ~/public_html -type f -exec chmod 644 {} \;

If the webpage is not visible, execute-rights (error) are missing from "Others" group. Execute-rights must be both in public_html and home drive flders:

Code Block

chmod o+x ~
chmod o+x ~/public_html

The above code should fix the visibility problems and make your webpage accessible again.

HTTP 403 Forbidden