Re: [PHP] $_SERVER['HTTP_REFERER']

2006-10-09 Thread Richard Lynch
On Sun, October 8, 2006 1:05 pm, Peter Lauri wrote: > I am trying to track where the people entered a unique page from > (developing > an affiliate system). > > I have been using the $_SERVER['HTTP_REFERER'] to track this and > record it > on a affiliate entrance of the web site. However, that is n

Re: [PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Stut
Peter Lauri wrote: I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using the $_SERVER['HTTP_REFERER'] to track this and record it on a affiliate entrance of the web site. However, that is not tracking all clicks. Only some of them ha

Re: [PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Dave Goodchild
HTTP_REFERER is not a reliable way of capturing a remote address. Sometimes the client does not set it at all. On 08/10/06, Peter Lauri <[EMAIL PROTECTED]> wrote: Hi guys, I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using

[PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Peter Lauri
Hi guys, I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using the $_SERVER['HTTP_REFERER'] to track this and record it on a affiliate entrance of the web site. However, that is not tracking all clicks. Only some of them have. I

Re: [PHP] $_SERVER['HTTP_REFERER'] does not work

2004-11-04 Thread Jason Wong
On Friday 05 November 2004 01:13, Michelle Konzack wrote: [snip] > Then I have the same problem with > > echo $_SERVER['SERVER_NAME']; > > which tell me every time the "ServerName" but not the public > "ServerAlias". > > WHY ? Look up "UseCanonicalName" in the Apache docs and see if this relates

[PHP] $_SERVER['HTTP_REFERER'] does not work

2004-11-04 Thread Michelle Konzack
Hello, I have a Host on DynDNS.org with the URL In the Pages I like to check, whether the URL was called from inside my Domain or not. For testing I have added echo $_SERVER['HTTP_REFERER']; but it returns every time h

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-08 Thread Justin Patrin
On Thu, 08 Jul 2004 11:49:24 +0200, Christophe Chisogne <[EMAIL PROTECTED]> wrote: > Shaun a écrit : > > after lots of investigation it appears that it is just my laptop that won't > > disply the variable, maybe because I am using Norton Firewall? > > Possible. The REFERER HTTP field is OPTIONAL >

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-08 Thread Christophe Chisogne
Shaun a écrit : after lots of investigation it appears that it is just my laptop that won't disply the variable, maybe because I am using Norton Firewall? Possible. The REFERER HTTP field is OPTIONAL -- See http1.1 spec (rfc2616) or this list archives. So it's not a field anyone should rely upon.

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-08 Thread Shaun
"Gerard Samuel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Wednesday 07 July 2004 05:43 pm, Shaun wrote: > > Hi, > > > > Can someone tell me why > > > > echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].''; > > > > Produces > > > > $_SERVER[HTTP_REFERER] = > > > > Is th

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-07 Thread Gerard Samuel
On Wednesday 07 July 2004 05:43 pm, Shaun wrote: > Hi, > > Can someone tell me why > > echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].''; > > Produces > > $_SERVER[HTTP_REFERER] = > > Is this a problem with my server configuration, if so is there a SERVER > variable I can use instead? > I

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-07 Thread Justin Patrin
On Wed, 7 Jul 2004 22:43:11 +0100, Shaun <[EMAIL PROTECTED]> wrote: > Hi, > > Can someone tell me why > > echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].''; > > Produces > > $_SERVER[HTTP_REFERER] = > > Is this a problem with my server configuration, if so is there a SERVER > variable

Re: [PHP] $_SERVER[HTTP_REFERER]

2004-07-07 Thread John Nichel
Shaun wrote: Hi, Can someone tell me why echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].''; Produces $_SERVER[HTTP_REFERER] = Is this a problem with my server configuration, if so is there a SERVER variable I can use instead? Many thanks My guess is you didn't come to the page with that co

[PHP] $_SERVER[HTTP_REFERER]

2004-07-07 Thread Shaun
Hi, Can someone tell me why echo '$_SERVER[HTTP_REFERER] = '.$_SERVER[HTTP_REFERER].''; Produces $_SERVER[HTTP_REFERER] = Is this a problem with my server configuration, if so is there a SERVER variable I can use instead? Many thanks -- PHP General Mailing List (http://www.php.net/) To unsu