Hi fellows.

I humbly kneel before the group and offer my boggle which has vexed me since 3:30 this morning (my body's uptime now is 23 hours 45 mins). I have a script in my cgi-bin directory which at some point attempts to call another script (with arguments) which is in a directory below cgi-bin. When I call system(), it returns $? as 9728 and $?>>8 as 38. I cannot find what these error codes mean despite my looking. I read that if arguments are involved it's better to do:  @arr=($command,$arg1) system(@arr);as opposed to $cmd = "command argument...: system($cmd). Doing that produced exactly the same result. When I run this manually with my personal shell account it works just fine, but when I run it from the web as uid apache, it does not. Apache has write access to the subdirectory in cgi-bin, and other things in the cgi-bin directory execute okay from the web. Any ideas?

~W

In reply to Find the permission problem by wombat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.