> I am using PHP 4.1.1, Postgresql 7.2  and Perl 5.6.0 on Linux.
>
> I want to delete files in a directory,which were created 15 days back.
>
> I can not do it, with PHP filesystem and directory functions, as
> PHP runs as
> "nobody" user.

To delete a file the user running the web server needs to be able to write
to the directory containing the file.  Either the directory should be owned
by the user nobody and writable by its owner, or in the group nobody and
writable by group, or (the most dangerous choice) writable by any user.  To
change the ownership, you need to be able to log in as the user root.

Simon

Download my introduction to PHP for $25:
http://merrowinternet.com/downloads?source=ml



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to