You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by William Turrell <wt...@clara.co.uk> on 2003/02/13 13:41:49 UTC

[users@httpd] Referring pages using apache + cgi scripts

I am currently attempting to use the referring page environment variable
within a CGI script to verify that a user has come from another page on the
same server before allowing them to access another one.

Page one presents users with a menu, each of which refers to the second CGI
script but with different parameters.  I only want them to be able to access
page two if they have specifically gone to page one first, and I don't want
them to be able to cut + paste the URL of page two in another browser.  For
reasons I won't go into we don't want to use normal .htpasswd/.htaccess or
mod_auth_db for any of this.

(perl code)
my $q = new CGI;
my $referer = $q->referer() || "";

98-9% of the time it works, but for a few users it doesn't - their referral
page is blank in both the apache logfile and a logfile I'm generating from
the second CGI script.  I can also verify that in all cases they definitely
did go to the first page by looking back a few seconds.

Any reason why this information wouldn't be being passed on? The people
we've asked seem to have modern browsers (IE 5 or 6) and operating systems
(WinNT etc.), and I assumed that referral information was mandatory anyway.
Is there a solution?

Thanks for your help,

William


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org