Your description has not given me a clear picture yet of what it is you are facing, but the following possibilities come to mind--perhaps they will have some value, if nothing more than to expand your ideas.

You've said that Sally1 doesn't have permission to "write" or "create" files. Does "Johnny1" have these permissions? If so, it would seem that's an inequality that you need to look at right there. If Johnny1 can do something that Sally1 cannot, there must certainly be a difference between their permissions. Have you checked the privileges of these users on the linux platform itself (not mediated by apache)? For example, look into /etc/sudoers and see if any of the inclusions would apply to Johnny1 and not to Sally1.

# User privilege specification root ALL=(ALL:ALL) ALL # Members of the admin group may gain root privileges %admin ALL=(ALL) ALL # Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL

Is Johnny1 a member of root, admin, or sudo?

Look at /etc/group and scan the list to see any place where Johnny1 occurs (www-data?), without also having Sally1.

And if you do not have root privileges yourself and these files are inaccessible, you may need to look elsewhere for a solution, and/or contact your server admin for support.

Apache can be very troublesome with minor details, in my experience.

Blessings,

~Polyglot~


In reply to Re: I need a user just for Perl script run from web browsers by Polyglot
in thread I need a user just for Perl script run from web browsers by bartender1382

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.