0
votes
1answer
52 views

php prevent direct access to an url which does not points a folder [closed]

I am using .htaccess and user friendly links. my domain.com/contact redirects the page to domain.com/contact-verify after form submission. If page verifies user submitted data then redirects the page ...
0
votes
2answers
101 views

Show confirmation on referring back to previous page (PHP HTTP REFERER)

This might be simple but I am having difficulty figuring it out, A form with data in index.php is submitted to sell.php which is processed by mysql query and returns automatically to previous page ...
0
votes
1answer
87 views

Same Referer URL opens for two different browser tabs with different URLs PHP

Flow: - user visits a page say www.mysite.com/somepage/1 - user clicks on Log Out button or times out and logs out *user log out detected redirect to home page but save the referer URL ...
0
votes
0answers
103 views

HTTP Referrer through Age Gate

I have an age gate set up on my site, so that users under 17 can't enter the site, but I want people, who have bookmarked a specific link to be able to go to that link after passing through the age ...
0
votes
0answers
168 views

Redirecting to previous page after login using HTTP_REFERER

I'm trying to redirect a user back to the page they were on prior to clicking on the "Log In" page hyperlink. I've read about the HTTP_REFERER and understand I need to put code similar to this: input ...
0
votes
0answers
69 views

php curl can not find the HTTP_REFERER

Sorry for posting another question like my another one, but I didnt know how to post a complete reply and comments doesnt allow me to post this question. I have 2 Pages: 1.php: <style> #frame ...
0
votes
1answer
129 views

Redirect, but hide referrer

Lets say I have a URL, www.mysite.com/go that I want to redirect to www.anothersite.com/site.php?id=999 The trick is, I do not want anothersite.com to be able to see that the request came from ...
1
vote
1answer
106 views

Hiding referer on an external link with PHP

I'm writing a page that has links to some music files on another server which has blocked access on external referrers. This website also allows direct access to files (by pasting url in browser's ...
-1
votes
1answer
77 views

Good way to track sales leads on website (referrer traffic)

I have kind of a dilemma. I need to start tracking sales leads because I have 2 sales guys and I don't want to be giving up organic SEO leads to them, but at the same time I don't want to cheat them ...
0
votes
2answers
49 views

controller class in php

I'm new at php programming, and I want to ask question: So I have 3 php forms: insertworkerform.php inserttoolsform.php insertorderform.php Inside those files I used <form ...
1
vote
1answer
119 views

unable to set http_referer

How can I set my http_referer location in my logout.php page after signin(using signin.php) which checks & successfully login redirects to joomla.php where i gave logout link(using a href) now i ...
-1
votes
1answer
327 views

How to get full referrer url in php

I want to get full referrer url in PHP. For instance, if I come to mywebsite from a google search, $_SERVER['REFERER'] gives me only www.google.com, but I want smth like ...
0
votes
1answer
169 views

Store first referring URL in one variable along with $_SERVER['HTTP_REFERER'] in another

I'm using the two functions below to store referrer information in variables which are inserted into a form email body. I need to store the first referring site or URL in one variable and the normal ...
3
votes
1answer
165 views

Using PHP to echo message if user came from redirected site

I am launching a new site with a brand new URL (rebranding). When a user goes to the old URL, they will be redirected to a new URL. I would like to display a message to those users, welcoming them to ...
-2
votes
1answer
28 views

I need to redirect to a page that matches the type with HTACCESS

If you go to my site at: http://thaflynation.tumblr.com/post/41322801418/another-dope-track-by-tnght-r-u-ready/ It will redirect you to: http://thaflynation.com However i need it to redirect to: ...
0
votes
2answers
124 views

Pass original http_referer to other pages

I have a business profile set up with a separate gallery page. The header for these pages is a php include. I am trying to set up a breadcrumb trail for this profile so am using http_referer to track ...
1
vote
0answers
298 views

PHP - Is using HTTP_REFERER to test for iframe's parent page reliable?

I have a page called test2.php that is loaded into test1.php via iframe. I would like to implement a whitelist to make sure that test2.php is only accessed via test1.php. I noticed that the parent ...
1
vote
3answers
113 views

PHP: How to detect direct requests of external visitors?

I would like to detect/prevent/forward direct requests of external visitors. Some scripts should only be displayed in a jQuery dialog. My current code: <script> $(".dialog").click(function() ...
0
votes
3answers
151 views

contact form including referral of previous page

I have a php contact form using POST and I want to automatically include the referring page on the form, that is the website linking to the contact form. This would normally be within my website. ...
1
vote
3answers
168 views

Redirect user based upon HTTP_REFERER

I am trying to redirect users on my site that come from a certian referal site to have a special message. I have this: <?php $REFERER = $_SERVER['HTTP_REFERER']; if ($REFERER == ...
0
votes
5answers
232 views

Block access of a PHP page if visitor doesn't come from a certain page (on same domain)

As title says, I'd like to block visitors from viewing content of a page if they don't come from a specific URL. How can I achieve this? I have PHP over Nginx. Would it be better to use PHP or Nginx? ...
1
vote
1answer
456 views

How to display Google AdSense ads to search engine traffic only?

I want to display Google AdSense ads to search engine traffic only and NO ads to regular visitors coming in directly or from Facebook, Twitter, email link, etc... Here's the code I currently use and ...
1
vote
1answer
315 views

Enable http_referer back link for own website only

I created a back link using the PHP http_referer for my website. It works basically but I would like to enable it only if the referer is a page with my domain. I thought about comparing the strings ...
1
vote
1answer
693 views

Block direct access to files into subfolder, but allow to index page with htacess

I have a lot of folders and subfolder in my domain. I want to avoid direct access to files types html/ jpg/ gif/ etc in a specific subfolders, but I want it to be accessible by a index.php page. ...
0
votes
2answers
669 views

What can I use instead of HTTP_REFERER for reliable tracking?

I'm working on a script that will save the refering url for each visitor to a session var and then store it to the db with other data like the google keyword/phrase that brought the visitor to the ...
4
votes
3answers
156 views

Can $_SERVER['SERVER_NAME'] be forged/faked?

Can the PHP variable $_SERVER['SERVER_NAME'] be forged or faked? I was planning on using that as a security measure for form posting. I would check to make sure that variable is my site name ...
2
votes
4answers
3k views

Redirect to referer url in codeigniter

In messaging system of my project when you get a message from a user you a email alert saying that the another user has sent a message to view the message click here (i.e the url of message) So if the ...
1
vote
1answer
104 views

detect the name of the page that the user came from

I am redirecting the pages to 404.php if the page is not found from IIS settings. My problem is that I would like to detect the LINK that they were looking for. For example: if some one access to ...
0
votes
1answer
186 views

$_SERVER['http_referer'] vs .htaccess deny all allow 1

I'm curious as to the difference of denying access using the global $_server['http_referer'] and using .htaccess with deny from all/allow from ip Are both bypassable in the same way or is .htaccess a ...
0
votes
2answers
265 views

using sessions to pass http_referer php

here is the ordeal: on index.php <?php session_start(); $url = $_SERVER['HTTP_REFERER']; $_SESSION['abc'] ='$url'; ?> i echo on the page $_SERVER['HTTP_REFERER']; and i get what ...
1
vote
1answer
228 views

Parsing search query from referrer using PHP

I'm attempting to grab the search query from search engine referrals. Most pass the search query with the ?q parameter, however yahoo is using ?p so I'm trying to use a switch statement but to no ...
0
votes
3answers
164 views

Capturing and storing Referrer

I apologise upfront this is really simply but causing me much annoyance. I have only been working on PHP a week or so and really learning by need at the minute. Below is my current issue. I am trying ...
7
votes
7answers
2k views

Get referrer URL - visitors coming from Paypal (HTTPS)

Hi I'm trying to get the referrer url but it doesn't work when the visitor comes to the site from Paypal $ref = $_SERVER['HTTP_REFERER']; echo $ref; Is there a simple way to get the paypal url if ...
0
votes
1answer
216 views

Curl redirection not working. What am I doing wrong?

I want to redirect a specific page from my .in domain to my .com domain using curl and at the same time change the HTTP Referer to something else (blank). I am using the following code : <?php ...
0
votes
3answers
251 views

PHP preg_match always returns false

I have a client. Let's say their domain is www.mydomain.com. We are creating a new page at www.mydomain.com/newsection. On the /newsection page, the client would like to add a link that says "Go ...
0
votes
1answer
896 views

Php, get the referer from an ajax request

I need to get the full domain in which the user sent the ajax request to my server, and it should be somewhat secure. The $_SERVER['HTTP_REFERER'] Returns blank. What function should I use? Thanks ...
1
vote
1answer
217 views

HTTP_REFERER not displaying anything

I have two websites on two different servers. When I print the following on WEBSITE1 then it displays referrer name (if there is any referrer) echo $_SERVER["HTTP_REFERER"] But same code doesn't ...
0
votes
1answer
68 views

MySQL (and maybe PHP): Fill a new column with the host of a referer

I have a table with a request log. In there is a column with referers. Now in order to see what domains refer the most requests I want to add a new column with the host of the referer. That is no ...
2
votes
1answer
1k views

Store Facebook app referrer

I have some Facebook ads and external ads pointing to an app which is sitting on a page tab. When my app stores some user information, I'd like to also record which ad referred them to the app via ...
5
votes
2answers
2k views

How do I select only the root domain from $_SERVER['HTTP_REFERER'];?

I want to have a 404 page that can detect if a user has come to that page either via my site, via my shortened URL or via another site, and I am making it using PHP. I am slowly getting to grips with ...
1
vote
3answers
2k views

PHP check if referral url is the homepage

I'm trying to figure out how to check if the referral url to one of my inner pages is the homepage. This would be easy if the homepage was always www.mysite.com/index.php but what happens when it's ...
-2
votes
3answers
320 views

The $_SERVER['HTTP_REFERER'] variable returns my visited website's URL

Some links redirect to my website but the PHP variable `$_SERVER['HTTP_REFERER'] executed on my website keeps on returning my own website's URL no matter the referer. Do I have anything to configure ...
1
vote
5answers
167 views

PHP HTTP Referrer - what if it's not passed by the client?

I want to remember the referrer, and send the user back to their original site after they submit a form on my site. My problem arises because the HTTP_REFERRER is not always passed... what are some ...
1
vote
3answers
3k views

Using cURL to download a site's HTML source, but getting different file than intended

I'm trying to use cURL and PHP to download the HTML source (as it appears in the browser) of here. But instead of the actual source code, this is returned instead (a meta refresh link set to 0). ...
0
votes
3answers
209 views

What can I use instead of $_SERVER['HTTP_REFERER'] in PHP for consistent data regarding the referring link?

I looked up the manual on php.net for $_SERVER['HTTP_REFERER'] and it explicity says that it is unreliable depending on the browser being used on the client side. Is there a consistent replacement ...
0
votes
4answers
4k views

why is my header(“Location: $_SERVER['HTTP_REFERER']”); PHP function not working?

It works when I input header("Location: http://www.google.com"); but it doesn't work when I have header("Location: $_SERVER['HTTP_REFERER']"); I want to redirect the page to whatever page it ...
0
votes
1answer
215 views

How can I return to the previous page that contains fragments in its URL?

How can I return to the previous page that contains fragments in its URL? For instance, this is the previous page, http://localhost/website.com/#/story/article-title-2/ And this is the current ...
0
votes
1answer
149 views

Alternative content for facebook share

I'm trying to prepare alternative contet for facebook sharing. Site is based on flash player (flash is required to enter site) so facebook share shows only: 'To view this page ensure that Adobe Flash ...
0
votes
4answers
259 views

HTTP_REFERER initiated HTML visible throughout website not just on the initial landing page

I have been looking for ever for a solution to my problem - I’m not a PHP newbie but am not overly experienced in it. My problem is this: I have a set of sites - one being the parent site. I want to ...
0
votes
2answers
532 views

$_SERVER['HTTP_REFERER'] shows current page

I have a tracking script that I use to save analytic data to our company database. We have quite a few websites (around 2000 domains) and PPC campaigns and the script I'm using works just fine. I ...

1 2 3