0
votes
0answers
27 views

Keeping natural search and direct load stats using javascript redirects

On our site we drive all traffic to the www subdomain where our desktop site resides. We also have device detection in place to redirect mobile devices and tablets to the mobile (m.) subdomain and ...
0
votes
0answers
40 views

How do you track how many sites have an actively embedded iframe widget?

I have an iframe widget that is being embedded in over 3000 third party sites, but I want to know exactly how many sites it is embedded in. Our current method is to use google analytics to generate a ...
0
votes
1answer
233 views

How does anonym.to work?

How does this website manage to blank the referer. All other referer blanking service seem to just cloak the referer. This one however manages to make google analytics believe that the user typed in ...
1
vote
2answers
298 views

Changing the value of referrer [duplicate]

Possible Duplicate: How to manually set REFERER header in Javascript? How to change the value of document.referrer? I tried this <body> <center><a href="test.php" ...
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 ...
7
votes
1answer
2k views

How to get “HTTP_REFERER” with NodeJS?

A way to get HTTP_REFERER , We can use document.referrer in browser side javascript . But how can we get it in NodeJS ?
2
votes
1answer
1k views

Need To Track Referrer via Google Analytics

I need to track the referring website when someone comes in, including pick up keywords if I can via the referer. I need to use Google Analytics in Javascript to do this so that it's stored in that GA ...
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 ...
0
votes
2answers
434 views

AJAX GET request changing the referer

I am using jQuery GET request to fetch some content and display it on page. The problem is that the page has a login button. It takes user to login screen and after successful login user get ...
1
vote
2answers
198 views

Is it possible to reliably know where an HTTP request originated without scripting?

I've been tasked with serving up an image file from our server that is referenced in an html document residing on a number of other servers. To wit: file on foo.com: <img ...
0
votes
2answers
113 views

PHP / JS - Get a list of all redirects

I'm looking for a way to get a list of all re-directs once a user clicks a link on a webpage. I want to basically reference what was originally displayed in the address bar at the time the user ...
4
votes
2answers
2k views

HTTP_REFERER blank, need alternative

I have a simple signup form that needs to track number of hits from one specific external referer. This is a simple task with PHP's: $_SERVER['HTTP_REFERER'] however, it is blank. After doing ...
0
votes
1answer
2k views

The ultimate HTTP_REFERER solution for PHP back button?

Yes I know, another HTTP_REFERER effort. I cringe when I see it. But it has been handed to me as a solution to a 'go back' problem and it actually works, so... ...the problem is, I don't understand ...
5
votes
2answers
2k views

JavaScript Redirect: Problem with Referer Header

Somebody follows a blog link(say http://blog) to come to my site (say http://mysite/a.php). So now she is on page http://mysite/a.php and referer is set to http://blog Now there is JavaScript on ...
0
votes
1answer
317 views

Redirect Search results from google to a specific page

HI, I have a specific requirement, when a user searches in google.com which returns me a list of results and one of the results is my website but it is pointing to a different page. I need help in 2 ...
0
votes
3answers
199 views

Sending refer(r)er though it's turned off in the browser?

I was wondering if there was a way to send a referer with a http-request though it is turned of in the browser (e.g. with javascript)? The problem I have when the referrer is not sent: I am trying ...