There may or may not be something wrong with the code. I've heard that it's not always possible to determine which site a user came from before they found yours.
I've tried to write a script that records the referring URL but it keeps up coming Unknown. I automatically set blank $ENV{HTTP_REFERER}s to Unknown just so that data isn't wasted.
Since I've installed the script, I've had 53 vistors, ALL have showed up as Unknown. Just to test things out I added a link to my website on my homenode, but that came back as Unknown as well.
Did I goof something up in the script below?
my %list;
my $list = "refer.dbm";
my $file = "refer.txt";
print header, start_html;
tie %list, 'SDBM_File', $list, O_CREAT | O_RDWR, 0644;
if ( !tied %list ) {
print "database unsuccessful $!.\n";
}
my $ip = $ENV{REMOTE_ADDR};
my $location = $ENV{HTTP_REFERER};
if ( exists $list{$location} ) {
my $value = $list{$location};
$value++;
$list{$location} = $value;
}
elsif ( $list{$location} eq "" ) {
if ( exists $list{Unknown} ) {
my $value = $list{Unknown};
$value++;
$list{Unknown} = $value;
}
else {
$list{Unknown} = "1";
}
} else {
$list{$location} = "1";
}
"Age is nothing more than an inaccurate number bestowed upon us at birth as just another means for others to judge and classify us"
sulfericacid
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.