How to determine if you need to proceed with this operation
Start your browser. Go to your
homepage. If it loads, and all your other pages and images load, you're done here. Otherwise keep reading.
Checking Authorizations
Correcting the 'Access Forbidden' problem
- Download and use an SSH client to get to your account.
- Install Putty
- Connect to this site: bingsuns.cc.binghamton.edu
- Enter your userid and at the next prompt, enter your password
- Enter the command:
ls -al
(note that those 'l's are the lowercase version of the letter
"L" not the digit "one")
- The string of letters on the left of
public_html should be:
drwxr-xr-x
- If not, enter this command:
chmod 755 *
- If you can see index.html, it is in the wrong place. To move the file into your public_html folder,
- type: mv index.html public_html
- Now type: cd public_html
- Now you are INSIDE the public_html folder and should be able to see index.html.
- Proceed to step 2 of the solution below to set up the files INSIDE your website
Checking the web files (pages and images)
- Enter the command: cd
public_html
- Once again enter the command:
ls -al
- The string of letters next to index.html
should be:
-rwxr-xr-x
- If not,enter this command:
chmod 755 *
You should now logout and test your website with your browser.
©10/2009, D.J. Foreman, All Rights Reserved.