[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Files created by Perl
- Subject: [ale] Files created by Perl
- From: meuon at geeklabs.com (Mike Harrison)
- Date: Tue, 23 Jan 2007 04:25:50 -0500 (EST)
- In-reply-to: <[email protected]>
> I build some text files and same them to disk.
> If I run the script by hand the files are generated, but if I call the
> script from a Web browser then the files are not built.
> I thought there might be a problem in the config file for apache. Can
> someone please help me.
Your directory, files, etc, must be writable by your webserver.
chown apache:apache *
chown apache:apache .
or maybe:
chown www-data:www-data *
or maybe
chmod 744 *
or.. Lots of variations possible, but be careful out there.
de-taint any inputs...