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 Added

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

To make your pages visible to others, you have to must modify the permissions so that other users have read permissions to your Read permission for the files and directories.

You can modify the permissions either on a Windows workstation or in a Linux environment. When done correctly, the settings made in the Windows environment affect also the new files that you have created in the public_html directory from both Windows and Linux environmets.

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

Here is how to change the public_html folder permissions to give others access to your home page.

In the Linux shell

Use SSH to connect to the shell.metropolia.fi server and run the following commands:

...

On a Windows workstation

Image AddedImage Removed
 
Select your home directory in the public_html folder on the Z: drive. Right-click on the public_html folder and in the popup menu, select Properties.
 

Image AddedImage Removed
 
In the window that opens, select the Security tab. Wait for a moment while the Security view is updated. When the Advanced button activates, click on it.
 

Image Added Image Removed
 
Next, in the window that opens, select the check that Everyone group has Read & execute permissions and click on the Edit Change permissions button.
 

Image Added Image Removed
 
In the Apply onto drop-down menu, select This folder, subfolders and files as the scope for the change. Select (check both boxes) List Folder / Read Data and Traverse Folder / Execute File. Click on OKImage Removed

You will return to the previous window where you select Replace permission entries... (check the box). Click on Apply.

Select bottommost check box Replace all child object permissions with inheritable permissions from this object. Click on Apply
 

Image Added  Image Removed
 
A window opens explaining that permissions are about to be changed in all files and folders. Accept by clicking on Yes. After that you can close all the windows. It may take a while before new permissions are effective.
 

In the Linux shell

Use SSH to connect to the shell.metropolia.fi server and run the following commands:

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 Image Removed 
After this procedure the contents of your home page will be browsable.

HTTP 403 Forbidden