![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Chmod +ftp | stormiee | UNIX for Dummies Questions & Answers | 3 | 09-29-2003 11:08 PM |
| find a file or directory under public_html | milhan | UNIX for Advanced & Expert Users | 4 | 10-23-2002 12:07 PM |
| chmod | scotty | UNIX for Dummies Questions & Answers | 3 | 06-24-2002 06:12 PM |
| Chmod Help! | xwfprez | UNIX for Dummies Questions & Answers | 12 | 08-14-2001 03:29 PM |
| CHMOD Help!! | jarrell | UNIX for Dummies Questions & Answers | 2 | 11-05-2000 02:32 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hello!
My web host has the public_html permission on my account set to 750. 1. Does this setting permit the world to use my submission forms (contained within contact.html and purchase_order.html)? 2. The "0" entry looks like it blocks the public from conducting all activity on my site. Does it? (Scratches head ...) ![]() |
|
||||
|
750 says that the owner has read, write, execute and the users in the named group have read and execute privs. Everyone else is locked out with the '0'.
Your webserver is running as some effective uid. This id would have read permissions to your submission forms only if it is either the owner, or a member of the group. You are probably using some shared web hosting service that allows lots of people to share the same physical machine. This file permission set would prevent other users that are logged into that machine from reading/writing your html files, but continue to allow the web server unix user to read your files. Hopefully this helps. |
|
||||
|
Visitors to your web site sending requests to your web server. This web server has a unix user associated with it. The permissions of this unix user are what governs whether the page can be read or not.
If your web server user has read privs to that directory, then it will display the content. |