in reply to cgi error
The web server is attempting to run your CGI as a user other than "nobody", so scgiwrap is blocking it.
Depending on how the server is configured, this is most likely either because a) apache is running as a user other than "nobody" (on Debian-derived systems, for example, it runs as "www-data" by default) or b) Apache is configured to use the suexec module, causing the CGI to be run as the owning user (probably you, maybe your friend).
Your two options for resolving this are to either find a way to turn off scgiwrap's user ID check (if suexec is in use) or tell it to check for the correct user instead of "nobody" (if Apache is running as "www-data" or other dedicated web-nobody account).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi error
by Anonymous Monk on Feb 09, 2009 at 19:47 UTC |