[PHP] Re: http_referer. what's wrong with that?

2012-01-12 Thread Jonesy
On Thu, 12 Jan 2012 17:11:25 +1100, Ross McKay wrote: On Wed, 11 Jan 2012 21:27:58 -0800, Haluk Karamete wrote: [...] Notice: Undefined index: HTTP_REFERER in D:\Hosting\5291100\html\blueprint\bp_library.php on line 16 die; [...] But I'm still curious, what configuration am I missing so that

Re: [PHP] Re: http_referer. what's wrong with that?

2012-01-12 Thread Stuart Dallas
On 12 Jan 2012, at 14:10, Jonesy wrote: On Thu, 12 Jan 2012 17:11:25 +1100, Ross McKay wrote: On Wed, 11 Jan 2012 21:27:58 -0800, Haluk Karamete wrote: [...] Notice: Undefined index: HTTP_REFERER in D:\Hosting\5291100\html\blueprint\bp_library.php on line 16 die; [...] But I'm still

[PHP] Re: http_referer. what's wrong with that?

2012-01-11 Thread Ross McKay
On Wed, 11 Jan 2012 21:27:58 -0800, Haluk Karamete wrote: [...] Notice: Undefined index: HTTP_REFERER in D:\Hosting\5291100\html\blueprint\bp_library.php on line 16 die; [...] But I'm still curious, what configuration am I missing so that http_referer is treated like that? You only get an

Re: [PHP] Re: http_referer. what's wrong with that?

2012-01-11 Thread Matt Neimeyer
While perhaps unlikely in common users it is also possible to prevent your browser from sending the referrer. IIRC, the referrer can also get mangled when passing through HTTPS (although I don't remember on which side, HTTP-HTTPS or HTTPS-HTTP or both) Matt On Thu, Jan 12, 2012 at 1:11 AM, Ross

[PHP] Re: HTTP_REFERER

2004-06-04 Thread Stephen Lake
No...it shows up in the auto global varaible $_SERVER['HTTP_REFERER'] Steve Douville [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I think I'm having a major brain fart here. Is there a $HTTP_REFERER anymore? It doesn't show up as a server variable or anything at all in

Re: [PHP] Re: HTTP_REFERER ... ?

2004-05-06 Thread Tristan . Pretty
server... I just thought that htt_referer was the easiest way to do that, as I only wanna let people in, who have signed in on the first server first.. Am I making any snece? David Robley [EMAIL PROTECTED] 06/05/2004 02:46 To [EMAIL PROTECTED] cc Subject [PHP] Re: HTTP_REFERER

[PHP] Re: HTTP_REFERER ... ?

2004-05-05 Thread David Robley
[EMAIL PROTECTED] (Tristan Pretty) wrote in news:OF19FCC4A7.F49C9B83-ON80256E8B.00544E7D- [EMAIL PROTECTED]: if ($_SERVER['HTTP_REFERER'] == 'http://www.mysite.com/') { // Stuff } Now why does this not work? I wanna asign varibales based on certain referers... but this is not working?

Re: [PHP] Re: HTTP_REFERER

2003-09-14 Thread Louie Miranda
SCRIPT_FILENAME, sorry but i didnt get this part. - Original Message - From: Eugene Lee [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 12, 2003 4:51 PM Subject: Re: [PHP] Re: HTTP_REFERER On Fri, Sep 12, 2003 at 04:21:16PM +0800, Louie Miranda wrote: : Eugene Lee

Re: [PHP] Re: HTTP_REFERER

2003-09-14 Thread Eugene Lee
On Mon, Sep 15, 2003 at 07:58:25AM +0800, Louie Miranda wrote: : Eugene Lee mentioned: : On Fri, Sep 12, 2003 at 04:21:16PM +0800, Louie Miranda wrote: : : Eugene Lee mentioned: : : On Fri, Sep 12, 2003 at 03:53:22PM +0800, Louie Miranda wrote: : : : Eugene Lee mentioned: : : : : : :

[PHP] Re: HTTP_REFERER

2003-09-12 Thread Catalin Trifu
Hi, It does support any HTTP information, and since HTTP_REFERER is part of the HTTP spec. it is supported. You can find it in the $_SERVER variable. FYI: The referer is not a reliable information. Cheers, Catalin Louie Miranda [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Eugene Lee
On Fri, Sep 12, 2003 at 09:11:09AM +0200, Catalin Trifu wrote: : : Louie Miranda [EMAIL PROTECTED] wrote: : : Does php support this? HTTP_REFERER : or simply cgi and ssi only? : : It does support any HTTP information, and since : HTTP_REFERER is part of the HTTP spec. it is supported. :

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Louie Miranda
] Sent: Friday, September 12, 2003 3:30 PM Subject: Re: [PHP] Re: HTTP_REFERER On Fri, Sep 12, 2003 at 09:11:09AM +0200, Catalin Trifu wrote: : : Louie Miranda [EMAIL PROTECTED] wrote: : : Does php support this? HTTP_REFERER : or simply cgi and ssi only? : : It does support any HTTP

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Eugene Lee
On Fri, Sep 12, 2003 at 03:53:22PM +0800, Louie Miranda wrote: : Eugene Lee mentioned: : : Several Windoze firewalls also filter out HTTP_REFERER. : : what can you suggest, im trying to do a referer email program on a website : and i think HTTP_REFERER will be my first approach, but limited on

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Louie Miranda
12, 2003 4:15 PM Subject: Re: [PHP] Re: HTTP_REFERER On Fri, Sep 12, 2003 at 03:53:22PM +0800, Louie Miranda wrote: : Eugene Lee mentioned: : : Several Windoze firewalls also filter out HTTP_REFERER. : : what can you suggest, im trying to do a referer email program on a website : and i

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Eugene Lee
On Fri, Sep 12, 2003 at 04:21:16PM +0800, Louie Miranda wrote: : Eugene Lee mentioned: : On Fri, Sep 12, 2003 at 03:53:22PM +0800, Louie Miranda wrote: : : Eugene Lee mentioned: : : : : Several Windoze firewalls also filter out HTTP_REFERER. : : : : what can you suggest, im trying to do a

Re: [PHP] Re: HTTP_REFERER

2003-09-12 Thread Miroslaw Milewski
Louie Miranda wrote: no, im making a send this page to a friend program when the users click the button a small pop-up window will come out and the http_referer will work and catch the previous page. I suppose you can achieve this using javascript's window.opener.location.href reference.

[PHP] Re: HTTP_REFERER security implications?

2003-03-10 Thread Joseph Szobody
Tom, This will completely break in AOL. An AOL user's referer changes all the time. Joseph Tom Woody [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am working on a simple authentication script, where the user submits a login and password, the credentials are checked and the user

[PHP] Re: HTTP_REFERER?

2002-08-28 Thread Seairth Jacobs
If you are running PHP 4.1.0 or later, you can also use $_SERVER[HTTP_REFERER], etc. Note that if you are using PHP 4.2.0 or later, then the register_globals option is off by default and the variables you mention below are not automatically created. --- Seairth Jacobs [EMAIL PROTECTED] Lon

[PHP] Re: HTTP_REFERER

2002-03-25 Thread Jim Koutoumis
Tom, I sort of do the same here,... think you'll find that index.html is the 'default index' for a directory when a page isn't specified on your web server and that she's going to http://www.domain.com Hope this helps. Jim. Tom Hilton [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] Re: HTTP_REFERER

2001-11-21 Thread Richard Lynch
Can anyone tell me under what circumstances this is set? When the browser feels like setting it :-( It's entirely up to the browser to send that information. Some browsers go so far as to send it when you type a new URL into the location bar. Others only on the A tag. This makes

[PHP] Re: $HTTP_REFERER problem

2001-08-24 Thread Richard Lynch
If you're going to go to the trouble for Lynx, you might as well just use it for everybody. HTTP_REFERER is better since it keeps track of pages off of your site as well. But if you don't care about that, tracking them all the same will be easier code to maintain. -- WARNING [EMAIL PROTECTED]

[PHP] Re: $HTTP_REFERER 10

2001-07-12 Thread elias
Maybe what you say about smallest refeerer length is true... but why don't you check via regexps the validity of the REFEERER format only if it was set? InéRcia Sensorial [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is it possible? I am writing a

[PHP] Re: $HTTP_REFERER 10

2001-07-12 Thread Inércia Sensorial
That's also something worth to be done, but first I need to know some possible variations of $HTTP_REFERER... I never saw one, when coming from another domain, without the 'http://'´part, so that's a regex to check, but I may be wrong... -- Julio Nobrega. One and One and One is Three

RE: [PHP] Re: $HTTP_REFERER 10

2001-07-12 Thread scott [gts]
10:01 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: $HTTP_REFERER 10 That's also something worth to be done, but first I need to know some possible variations of $HTTP_REFERER... I never saw one, when coming from another domain, without the 'http://'´part, so that's a regex to check

Re: [PHP] Re: $HTTP_REFERER 10

2001-07-12 Thread Inércia Sensorial
Thank you Scott for the various ideas. I am preventing an eventual 'no referer' situation with a default url provided by who opens an account. I am getting (and trying to give :)) help on this list, so I will ask first before doing... Is it normal to announce personal projects here? This one

RE: [PHP] Re: $HTTP_REFERER 10

2001-07-12 Thread scott [gts]
i know that i am always interested to see code posted on this list... even if i cannot personally use the code, i'm always curious to see how people write code. -Original Message- From: Inércia Sensorial [mailto:[EMAIL PROTECTED]] Subject: Re: [PHP] Re: $HTTP_REFERER 10 Thank you