Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
1k views

ASPNET MVC: Way to figure out the route of the referer (sic)?

I have some POST actions on my controller that are hit from a pair of GET actions. When validation fails, I want to render the view of the action that the POST is coming from. For example: ...
2
votes
3answers
334 views

Any way to capture the referring t.co link from Twitter?

I want to post multiple versions of the same link on Twitter but I want to capture them with unique identifiers when they hit my server. Twitter partially devised a mechanism for this, for example ...
2
votes
3answers
375 views

Is the REFERER set if you redirect to a new web page using location.href =?

If you redirect a user to a new web page using the javascript location.href = <url>, what REFERER header does the destination web server see?
2
votes
3answers
732 views

Google Analytics, Install Tracking android

I want track install referer for my application using google analytics. I don't want use the Tracking Pageviews and Events feature, only install. So I added the sdk jar in my app, add these lines to ...
2
votes
1answer
1k views

HTTP Referrer and IE7 and IE8

Hi i've tried the following to find the referrer in MSIE / IE7 and IE8 but its returning blank each time; PHP: <? echo $_SERVER['HTTP_REFERER']; ?> JAVASCRIPT: document.write('Thanks for ...
1
vote
0answers
108 views

set referer url with ajax request

I want to set the referer page while sending an ajax request. I have done this way but it didn't work. I have included this javascript in a local html file and the main url is cross domain. $.ajax({ ...
1
vote
1answer
32 views

.htaccess - only one referral allowed; fastcgi

I am creating .htaccess file first time and it doesn't work for me. My htaccess looks as following: RewriteEngine On RewriteCond %{HTTP_REFERER} !^https://(www\.)?mysite.net/.*$ [NC] RewriteRule .* ...
1
vote
4answers
38 views

How to track a software download source

Here's the problem. We have some software, there is a free edition and a paid edition available. The software is an EXE download which sets up the software. The way we are hoping to gain most sales ...
1
vote
1answer
98 views

Getting the domain that calls an PHP file on your server through AJAX

I'm building out an API and have a question about how to track/know which domains use the call. The API call is built in PHP, and doesn't require any authentication. A user will most likely use the ...
1
vote
1answer
129 views

Show different content after page refresh

A .php page checks if the referer is from xdomainname.com, if Yes i iframe page X if not i iframe page Y. The problem is i want to redirect to another page if the .php page is refreshed (iframe page ...
1
vote
3answers
94 views

problem to get the Referer page

I'm trying to get the referer page, but i have a problem , sometimes i get bad the referer page, for example: i have 3 pages, when the page 1 link to page 2 , and the page 2 make a process and after ...
1
vote
2answers
521 views

How google ga.js is working?

I tried to analyse how google is transfering data. Especialy the document.referer. for me its not ajax (firebug do not show any ajax activity). PHP do not show the $_SERVER['HTTP_REFERER'] very ...
1
vote
2answers
537 views

How to use strstr with $_SERVER['HTTP_REFERER']

I'm using php to make it so that incoming traffic to my website will append information depending on the search engine. I'm setting $_SESSION['kw'], if it's not already set, to tel me that it's seo ...
1
vote
1answer
366 views

How to get last page visited in a controller

is there a way to get or store the last page visited? Example if I'm on a List Page with a New link that loads a page with form. If the user cancels, you go back to the previous page (List Page). ...
1
vote
1answer
812 views

Curl/Fetch question - Referer, Post data, Cookies

Got a Curl question (and yeah, i've searched Google, this site, as well as the docs!!) Somewhat new to curl. Trying to use Curl from the cmdline (linux) to fetch pages from a college website (sjsu). ...
1
vote
2answers
966 views

getting referer from auth in cakePHP

I have a link on the main page that is only accessible if they are logged in. However, if this link is clicked, I want to show a custom error message on the login page (a custom 'Message.auth'). ...
1
vote
1answer
777 views

Track http domain referer

Can i track the http referer with javascript, and append a variable to the URL string to store into a dbase? or could i track a cookie that the user gets? (very layman's terms here, sorry) if http ...
0
votes
1answer
47 views

Symfony2 - How to go back to referer after login failure?

As in title... For login success there is a parameter "use_referer: true". For login failure there is only failure_path which isn't what I'm looking for. Second thing how to do that and pass error ...
0
votes
0answers
17 views

POST to different referers one at a time and add result page to a richtextbox2

I've followed this tutorial and i want to modify it a little bit. And the author, i think is very busy. Here is the code he got: Imports System.Net Imports System.Text Imports System.IO Public ...
0
votes
0answers
47 views

Check the referer when another website is using page referer.us to hide referer

Another website which is using mine in their frame, but they're hiding the referer like using through referer.us The problem is that I would like to check url of the page which has used my website ...
0
votes
1answer
39 views

Can a website see that a user is from Google SSL?

Google wrote: However, for organic search results on SSL search, a web site will only know that the user came from google.com. ...
0
votes
2answers
111 views

URL Referer not working on pop up windows

I have two pages namely www.abc.com/pg1.aspx and www.abc.com/pg2.aspx pg1.aspx response.redirect("www.abc.com/pg2.aspx"); pg2.aspx string url_refer = Request.UrlReferrer.ToString(); UrlReferrer is ...
0
votes
2answers
440 views

get title and url of the previous page on Magento

I'm trying to get title and url of the previous page the customers visited in Magento. We can get the URL via $ _SERVER ['HTTP_REFERER'] variable but not sure how to get it's title. Would appreciate ...
0
votes
3answers
114 views

Possible to get low level information from referrer in PHP

Is it possible for PHP to determine the following scenario: Server "A" : I do not own or have control over the server. I am able to post web links on this server to my server. Server "B" : My own ...
0
votes
1answer
170 views

WP7 and Http-Referer

I've written an app that shows comments from Disqus and when I run it as a .NET application on my desktop it works great. It sends a http requst and then deserialize the json objects. But when I move ...
0
votes
1answer
57 views

referer within subdomains

I need to use google analytics on a domain that has many subdomains, but they should all be inside the main domain. Like this: my website: a.com subs: x.a.com, y.a.com, z.a.com he is coming from: ...
0
votes
1answer
217 views

PHP redirect based on IP AND referrer

I'm trying to redirect users within my network to a specific landing page on our website based on their IP and a blank referrer. This code works, but it ends up in a redirect loop. How do I break out ...
0
votes
1answer
261 views

XMLHttpRequest referrer and iframe

Page A contains javascripts function executing XMLHttpRequest. Page A loads page B in iframe. Page B executes parent.makeRequest() function which in turn executes the XHR request. I expect the ...
0
votes
2answers
110 views

Redirect .htaccess and check refferer

I need help to write an .htaccess file for Apache to check referer that only allows mydomain referer, otherwise redirect with a 303 response. Ex: my domain: domain1.com I want when the user ...
0
votes
1answer
427 views

Hide Iframe Referer

I have an iframe in my website pointing to an another site2. What can I do to hide my website from that site2... I saw some javascript but I don't know where I find it... Thank You
0
votes
2answers
1k views

Get Referer URL in Spring MVC

How can I get the referer URL in Spring MVC Controller?
0
votes
1answer
161 views

htaccess Referer Question

I have a scenario where I allow anyone to hotlink images from my site but it will show a watermark when it detects a Referer. I already have the watermark PHP GD script which will take the url or ...
0
votes
1answer
289 views

Change Referer Header of IE

I am using FireFox browser and it change Referer Header from its Ads-Ons (Plugin) REFCONTROL. Is there any other way to change IE Reference Header from window registry or anywhere else?
0
votes
1answer
972 views

how to set “REFERER” in Zend_Http_Client?

Hi I am using Zend_Http_Client with adapter Zend_Http_Client_Adapter_Curl , I tried setting REFERER using $client = new ...
0
votes
1answer
58 views

Unregistered domain heiiehdsx.com in my referrer logs

Lately, the unregistered (available) domain heiiehdsx.com has been showing up in my HTTP referrer logs. It comes from a variety of IP addresses (none very similar). When I Google the domain, the ...
0
votes
0answers
307 views

mod_rewrite redirect all traffic from a specific domain to a particular page

I want all traffic with REFERER "bad-domain.com" to go to a specific page named hole. It doesn't seem to work at all in .htaccess so I put it in the server config. It is a wp and all the rest of ...
0
votes
1answer
713 views

How to set the referer on a rewrite rule?

I have the following problem: I use a script that saves the referer URL. I want this URL to one of my own URLs. So let's say a users access the page http://example.com/page1 I want to rewrite that URL ...
0
votes
4answers
904 views

PHP detect if page is reloaded with PHP_SELF

I have a form that reloads the page with the updated data: <form name="form" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> ... <input type="submit" name="Submit" ...
0
votes
1answer
373 views

htmlunit cookie/refer question

Testing out the java HtmlUnit lib. Trying to figure out if there's a way to set/delete the cookie file (cookiejar) used by the webclient object.. I've searched multiple docs, as well as the HtmlUnit ...
0
votes
3answers
260 views

Can user request's “Referer” be modified just in server side?

I have a web site server which do such work like this: The server receives request from user A(request referer is blank) and then redirect(at server side) user A to visiting web site B; Is there any ...
0
votes
1answer
1k views

request.referer with anchor

is there a way to get the referer with the anchor from the referer page.. the situation is - i have a search page which loads results (users) below the search box using ajax. i am changing the ...
0
votes
1answer
734 views

Executing javascript during redirect without changing original referrer

I need to test whether or not a click-through is valid by using some javascript client-side tests (e.g., browser window dimensions). However, I would like the original click referrer to remain the ...
0
votes
3answers
1k views

Response.Redirect with Different Referrer

I've got the following piece of code in an aspx webpage: Response.Redirect("/Someurl/"); I also want to send a different referrer with the redirect something like: Response.Redirect("/Someurl/", ...
-1
votes
1answer
258 views

Set referrer with php header( 'Location: ')

Is there a way to fake referrer with header( 'Location: ') command ?
-2
votes
4answers
258 views

custom http referer with php

i would like to use HTTP_REFERER to send my own referer. Like this http://mywebsite.com/spoof.php?newurl=anotherwebsite.com this is what i have but doesn't work spoof.php <?php $referer = ...