[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] CGI Script error
- Subject: Re: [cobalt-users] CGI Script error
- From: Kris Dahl <kris@xxxxxxxxxxxxx>
- Date: Fri Jan 21 09:42:14 2000
on 1/20/00 11:39 PM, RHLinux at rhlinux@xxxxxxxxxxx wrote:
> 1. i am getting the following cgiwrap error
>
> CGIWrap Error: Execution of this script not permitted
> Execution of (root) is not permitted for the following reason:
> User not Privlidged.
>
> on a script in my /cgi-bin/
>
> 2. This is a form that can create users accounts automatically from the
> browser, on of the callings asks me where i want to store these files, i put
>
> /home/httpd/html/users
>
> Anyone out there able to help me?
Can u do a ls -alF on that directory. I am willing to bet that the
permissions aren't set properly.
chmod the file to 755 (7=you can read, write, execute, 5 = your group and
read and execute, 5 = everyone can read and execute).
ie.
chmod 755 script.cgi
-k