0
votes
0answers
37 views

access controll by referer

A webpage (a special offer) in my webshop should be visible for visitors from special partner domains. Therefor i can put a link, javascript or html on these partner domains. But if someone copy the ...
0
votes
2answers
270 views

How to set referrer using WWW::Scripter module in perl?

Simple code for my crawler is: #!/usr/bin/perl -w use WWW::Scripter; $w = new WWW::Scripter('agent' => 'myAgent'); $w->use_plugin('JavaScript'); ### need to set ...
1
vote
1answer
424 views

Django saving HTTP_REFERER to use it as landingpage information

I would like to know if there is a better solution for this. The website I'm building has some forms which need information about the page the user started his 'journy'. Right now I'm saving ...
1
vote
1answer
747 views

Where do i 'setcookie' to record http_referer in Drupal 6?

I've got my php working to set a cookie storing the http_referer the visitor came from, but how(or where) do i put this code in my Drupal theme/installation, to make it set cookie when a visitor first ...