HTTPD Writable
Thomas Wouters
thomas at xs4all.net
Sun Feb 4 10:18:22 EST 2001
More information about the Python-list mailing list
Sun Feb 4 10:18:22 EST 2001
- Previous message (by thread): HTTPD Writable
- Next message (by thread): HTTPD Writable
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Sat, Feb 03, 2001 at 11:48:08PM -0800, Ben Ocean wrote: > I'm trying to install a program that requires I create an *httpd writable* > file. How do I do this? What does it mean to have httpd write to a file? Do > I need to assign httpd a passwd? Do I need to group it with root? Please > advise. Unclear why you are posting it here; it's terribly off-topic, even if the program you are installing is a Python program. Nevertheless, what you are probably supposed to do is make a file writable for the httpd process. It depends on your installation (and indeed, your 'brand' of httpd) what userid and permissions the httpd process is running as, but as a wild guess, you can use 'chmod a+w <file>' (dangerous, but sure to work) or 'chown nobody <file>' (sometimes inconvenient, but slightly less dangerous.) If you happen to know that httpd is running as a particular group, and noone else is in that group, chgrp the file to that group and make it only writable for the group, not the rest of the world: chmod g+w <file>. For further questions I suggest you ask the author or supplier of the program you are installing, they're sure to know exactly what they mean :) -- Thomas Wouters <thomas at xs4all.net> Hi! I'm a .signature virus! copy me into your .signature file to help me spread!
- Previous message (by thread): HTTPD Writable
- Next message (by thread): HTTPD Writable
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list