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;
>>> [...]
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 missin
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, Ro
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
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
> phpin
e new 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: H
[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 worki
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:
: > : > : >
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 +
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 refer
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
MAIL PROTECTED]>
Sent: Friday, September 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.
> :
> :
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
>
To: <[EMAIL PROTECTED]>
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? HT
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 supporte
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:[EM
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
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]
"Lo
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 PROTECTED
> 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 HTTP_REFER
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] a
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: $HTT
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
Sent: Thursday, July 12, 2001 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
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
"El
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 r
26 matches
Mail list logo