Apparently, the PHP upgrade installed scgiwrap, which appears to include a security-related requirement that cgi programs must be run as user "nobody", which is commonly used as an extra-unprivileged account that owns nothing and, therefore, can do as little damage as possible to the system.
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).
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.