I have a simple .htaccess
AuthType Basic
AuthName "Test"
AuthBasicProvider file
AuthUserFile /path .. /www/cgi/test/.htpasswd
AuthGroupFile /dev/null
<Limit GET>
require valid-user
</Limit>
Options -Indexes
Authentification is working.
remote_user is set when i use GET to access the perl script in this dir. When i use POST the remote_user is empty. I've couldn't find a confirmation on the web/docs but indications seems that only the first the the authentication runs the apache sets remote_user. And it doesn't work with perl.
So, is that true and if yes.
How can i change this behavior ?
I've already looked at CPAN but all the solutions or frameworks looks to be big for me. I only want to keep the remote_user variable.
What would be the best approach ?
Thanks !
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.