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

...

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