Tagged Questions
2
votes
3answers
332 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 ...
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
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
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 ...
0
votes
3answers
113 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
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
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
966 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
4answers
903 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" ...
-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 = ...