I followed a small tutorial and was able to modify my Apache to
write accesses to one certain directory into a database, by makeing a
Apache::MyAccess.pm.
Everything is fine, accept one small thing: I cannot seem to grab the
environment variable REMOTE_USER no matter what method I use.
I know for a fact that it is set, as I had to enter a username/pass combo
just to access the directory I am logging.
Here is the code I am using:
package Apache::TaartsLog;
use CGI qw(:cgi);
use Apache ();
use Apache::Constants qw(:common &OPT_EXECCGI &REDIRECT);
use DBI;
my $query = new CGI();
$dbh = DBI->connect("dbi:mysql:taarts","jrobiso2","") || die "$DBI::er
+rstr: $!\n";
sub handler {
my $r = shift; # @_[0] contains a reference to
# the current request handler
my ($request);
my ($hostname);
# Returns a blessed reference
if ($r->main) { # unless this is the main request
$orig = $r->main;
} else {
$orig = $r;
}
$hostname = $orig->get_remote_host;
$request = $orig->filename;
$user = $query->remote_user(); # this apparently fails.
unless (($request =~ /jpg/) || ($request =~ /gif/)) {
$dbh->do("insert into logs (host,request,time_stamp,cdsid)
+VALUES
('$hostname','$request',NOW(),'$user')");
}
}
END {
undef($dbh);
}
1;
Can anyone tell me why the $query->remote_user() is failing? The other three fields get
written to the database just fine. Only the remote_user is always blank.
What does this little button do . .<Click>;
"USER HAS SIGNED OFF FOR THE DAY"
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.