Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
5k views

Get referrer after installing app from Android Market

I am trying to register a Broadcast Receiver that catches "com.android.vending.INSTALL_REFERRER" intents launched by Android after an app is installed from the Market. I am following the details ...
16
votes
4answers
3k views

Will a 302 redirect maintain the referer string?

I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp, click a link that ...
12
votes
4answers
381 views

What is the most reliable way to hide / spoof the referrer in JavaScript?

Normally, the referrer is traceable through: JavaScript's document.referrer The request headers, e.g. PHP's $_SERVER['HTTP_REFERER'] I have set up a Codepad demo which shows these properties, for ...
8
votes
4answers
732 views

How to test android referral tracking?

I'm implementing some code to do my own referral tracking on downloads from the Android market. See Android referral tracking does not work for an idea of what my app is doing. How can I test if ...
7
votes
5answers
5k views

Inspect the referrer in PHP

Is it possible to check who is entering your website in PHP. I have a web application ( written in PHP) that should only allow users entering from some particular websites. Is it possible to get the ...
5
votes
1answer
6k views

JavaScript Redirect based on Referrer?

Is there anyway to grab the referring URL using javascript, lets say the reffering url is http://page.com/home?local=fr, then redirect a user to a new page with the same local as the reffering page ...
4
votes
2answers
91 views

How can I detect rel=“noreferrer” support?

Is there any way I can detect the support for rel="noreferrer" with Javascript? <a href="http://example.com" rel="noreferrer">link without referral</a> Solution - $.browser is ...
4
votes
1answer
245 views

Android Market Referrer Data Not Being Populated

I've implemented a BroadcastReceiver to receive and parse Android Market referrer data. I followed the steps here: http://code.google.com/mobile/analytics/docs/android/#android-market-tracking and ...
4
votes
2answers
486 views

Help to get original referrer url when invoking javascript

Let us take i am in site named "domain1.com" and navigating to another site "domain2.com", where i invoke a external js call. The problem is the referrer of the js call is "domain2.com" and but i ...
4
votes
2answers
1k views

ASP.NET - Response.Redirect Not Populating Url Referrer

I feel like i've done this a ton of times, but i can't for the life of me figure out what is going wrong. Default.aspx: protected void Page_Load(object sender, EventArgs e) { var r1 = ...
4
votes
2answers
2k views

How do you get the Url Referer via a javascript include?

If I search for something on google and click on a result (mytestsite.com), the referer to that site will be URL of the google search. Now on that site, there is a JS file include that is used for ...
4
votes
3answers
4k views

Django templates: create a “back” link?

I'm tooling around with Django and I'm wondering if there is a simple way to create a "back" link to the previous page using the template system. I figure that in the worst case I can get this ...
3
votes
1answer
40 views

URLReferrer is null when page is HTTPS

We use the URLReferrer and a code passed in on the query string to produce online videos so that only our paid clients can link to our video playback page. This system has worked well for some time. ...
3
votes
2answers
190 views

Spoofing HTTP Referrer data using ASP.NET

Answers on here and various other sites are often full of warnings not to trust HTTP Referrer headers because they are 'so easily' spoofed or faked. Before I go any further - no, I'm not up to no ...
3
votes
0answers
77 views

Tracking Android install referrers with Amazon Appstore

I am currently tracking referrers with Android Market and Google Analytics as described here: http://code.google.com/mobile/analytics/docs/android/#android-market-tracking Is there a similar solution ...
3
votes
3answers
66 views

How do I get the referring site a user came from to arive on my site using PHP?

I am trying to create the ability to have promo codes on the site that I am working on. Part of this functionality requires me to get the referring site the user came from to give them the appropriate ...
3
votes
1answer
171 views

How to get complete url from document.referrer when there are some special characters in it?

How can I get the complete url like "http://twitter.com/#!/larrickchen" using something like document.refrerrer if it did come from "http://twitter.com/#!/larrickchen" ?? document.referrer only return ...
3
votes
1answer
104 views

ASP.NET: Why Login Referrals doesn't include port

I hosted my ASP.NET application on 8080 port (which isn't default). When I'm click on the Sign In it takes me to the Login page. After an hour I bother to check the URL. Thanks to IE minimizing ...
3
votes
2answers
651 views

Get the referrer, paid/natural and keywords for the current visitor with Google Analytics

Is it possible to get the following information about the current visitor using Google Analytics API with JavaScript? Referrer site ('Source' in GA) Paid or natural ('Medium' in GA) Keyword First ...
3
votes
1answer
360 views

PHP referrer: How to make sure a request is actually coming from where it's supposed to come from

I would like to put a link back to my site on other "approved" domains. When they click on the link it goes to a page that checks the referrer ($_SERVER['HTTP_REFERRER']) to make sure they came from a ...
3
votes
3answers
4k views

How do I get the referrer URL in an ASP.NET MVC action?

How do I get the referrer URL in an ASP.NET MVC action? I am trying to redirect back to the page before you called an action.
3
votes
1answer
194 views

About what percentage of Internet users have referrers turned off?

I'm making something that requires me to pass information from one domain to a subdomain. The subdomain would be in an iframe on the domain. I know I can use cookies, sessions, or a database. But I'm ...
3
votes
3answers
5k views

Getting the IP address of server in ASP.NET?

How do I get the IP address of the server that calls my ASP.NET page? I have seen stuff about a Response object, but am very new at c#. Thanks a ton.
2
votes
1answer
125 views

history.back only if referrer same website

I'd like to display a back button with the help of history.back, but it should only be displayed if the history page is within the same website / domain. So it should not be displayed if referrer is ...
2
votes
4answers
118 views

PHP get the site that calls your script via file_get_contents

I have a PHP script hosted on my site that outputs a value based on the GET parameters passed. Other sites call this script from within their own PHP scripts via the PHP function file_get_contents ...
2
votes
1answer
475 views

Kohana 3.2 - Get referrer URI

I'm attempting to get the referrer URI in Kohana 3.2 using the following code: $referrer = $this->request->referrer(); var_dump($referrer); However the function returns NULL, I'm expecting it ...
2
votes
1answer
104 views

Django referrer question

I want to know who refers my webpage, so in my models I have:referrer = models.CharField(max_length=30, default='google', verbose_name=_('referrer'), help_text=_('Referrer')) This are the ...
2
votes
1answer
391 views

Don't get Android Market INSTALL_REFERRER on Android 3.x

I implemented a BroadcastReceiver for the Android Market INSTALL_REFERRER Intent as described here: Get referrer after installing app from Android Market It works fine for android devices earlier ...
2
votes
1answer
254 views

Capture referring URL parameters w/ Javascript & Pass to Google Analytics

New to javascript. I'm trying to capture the referring url for a goal page, which has some query parameters structured like so: example.com/vehicle/?stock=12345 Once I get the query parameters, I ...
2
votes
4answers
307 views

Can I track the referrer of a new window link?

Case: site A contain a href link that open site B in new window. The script in site B is trying to get the site A url. My question: Is there any way to track the referrer of a new window which was ...
2
votes
2answers
93 views

Javascript pathname referrer

How can do the same function in javascript that is document.location.pathname - except with the referrer? so something like document.referrer.pathname? Thanks.
2
votes
3answers
267 views

PHP HTTP Referrer

I have a page which accepts POSTs from a remote site. I would like to detect the domain that these POSTs are coming from. I realize that it can be spoofed but it is better than nothing. I have tried ...
2
votes
3answers
254 views

Stop link from sending referrer to destination

I have a page where I don't want the outbound links to send a referrer so the destination site doesn't know where they came from. I'm guessing this isn't possible but I just want to make sure there ...
2
votes
1answer
527 views

How does Google set the HTTP Referrer when someone clicks on a search result link?

Google sets a HTTP Referrer when someone clicks on a search result link. This referrer is different to the address which is shown in the URL address bar (e.g. it contains the GET parameter cd which ...
2
votes
1answer
587 views

how to track traffic source for a Facebook iframe application

I have a facebook iframe application - let's call it apps.facebook.com/my-app. We currently use Google Analytics for our tracking, and I correctly have Google Analytics installed on my application ...
2
votes
5answers
431 views

Is it possible to fake referer information sent by web browsers?

My service might use referer information to tell from what web site a request is done, and I would like to make sure there is no way to fake the referer information.
2
votes
4answers
805 views

Asp.net Response.Redirect - Incorrect referrer

I have a asp.net application that i use for traffic tracking. I get a incoming visitor from several source websites and redirect the visitor to the target website using Response.Redirect(url); The ...
2
votes
1answer
3k views

Is it possible to get the referrer of an iFrame's parent page with JavaScript in iFrame?

Is it possible to get the referrer of an iFrame's parent page with JavaScript in iFrame? Example: Page A has an iFrame. The iFrames referrer is be page A. But is is possible to get Page A's referrer ...
2
votes
4answers
161 views

Get referrer percentage

What will be the best way to go about getting the referrer details like say google 20%, msn 10%, internal 70%. Its for finding out how each article posted on the site was viewed or accessed or ...
2
votes
1answer
253 views

Inject referrer action via action filter?

Is there a way to inject the referrer action from an action filter? Lets say I have a view that comes from action X. In dies view I call action Y and I want to redirect again to action X. (There are ...
2
votes
1answer
141 views

Referrer URL appears to be pointing to a naughty picture

This may belong on Serverfault, but I don't think so. I have a website with the archives of a local radio program that had some cult following in Australia, and may have a limited, but active, group ...
2
votes
5answers
488 views

Is HTTP_REFERER supposed to be filled in when user tells a browser to “refresh”?

I'm trying to use a referrer header check as a defence in depth (i.e. one of many security techniques while note solely relying on any one alone). It seems that sometimes MSIE doesn't include the ...
2
votes
4answers
1k views

Redirect while clearing referrer. php if possible

I have a php script that check if the referrer has been cleared after a short process, if it is it forwards to the destination, if it isn't blanked, the process I used for clearing the referrer ...
2
votes
1answer
1k views

find referring page in asp.net mvc after a jquery redirect

I am faking an autopostback using jquery since I am using asp.net mvc. It's being performed in a select list (dropdownlist) like this: $(document).ready(function() { // autopostback for character ...
2
votes
2answers
1k views

how should we validate http header referrer in aspx .net

I want to ensure ensure nothing untoward gets into the referrer on an error page. What should I be checking in order to validate the http header. below is my current code: // Ensure the referrer ...
1
vote
1answer
56 views

Php Apache get referring url

How would i go about retrieving the referring url with either PHP or apache. I know about $_SERVER['HTTP_REFERER'] which you cant use or trust. I have found you can get it in javascript with ...
1
vote
3answers
52 views

Link without referer

How can I make it so when the site visitor of mysite.com clicks a link, like http://google.com, the referrer page is not sent to the target website ? Is this possible with PHP ? Basically I want the ...
1
vote
1answer
57 views

Convert PHP session (+ referral data) script to ASP.NET

This is a PHP script I use to get the referring website for each new visitor to my site. If the visitor came from Google, I get the keyword they used to find the site. This data is stored in the ...
1
vote
1answer
50 views

Rails 3 gem for capturing referrer info?

Is there a single (or multiple) Rails gem that will help to easily capture the following on a when registering a new model instance (i.e.: new user)? referrer URL traffic source (google, bing, etc.) ...
1
vote
1answer
128 views

Is there referrer header while using SSL?

Is there referrer header within domain while using SSL?

1 2 3 4