...
- SSH to any of the lab machines in the barnyard or igppweb.ucsd.edu.
Issue the following command which should make ALL files within your Sites directory readable to visitors to your personal website.:
Code Block chmod -R o+r ~/Sites/
This should make ALL files within your Sites directory readable to visitors to your personal website. If there are certain files that should not be accessible to your website visitors, please move them within to a private directory such as ~/Documents:
Code Block mkdir ~/Documents/unpublished; mv ~/Sites/file to ~/Documents/unpublished
These same steps can be applied to files in your Public folder, as well:
Code Block chmod -R o+r ~/Public/
and, If there are certain files that should not be accessible to others, please move them within to a private directory such as ~/Documents:
Code Block mkdir ~/Documents/unpublished; mv ~/Public/file to ~/Documents/unpublished
...