Re: RE: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-11 Thread TD - Sales International Holland B.V.
On Thursday 10 January 2002 19:36, [EMAIL PROTECTED] stuffed this into my mailbox: Please note that not all proxies will fill in HTTP_X_FORWARDED_FOR. Some will obscure it others will not fill it in at all, either due to privacy or to conseal things. > > > Okay, thanks. 'Cause I mean, the REM

Re: RE: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread sebbe
> > Okay, thanks. 'Cause I mean, the REMOTE_ADDR is still there. So you > > mean that the HTTP_X_FORWARDED_FOR isn't working while I'm working > localhost? > > REMOTE_ADDR contains the IP of the computer that requested your page. > > If it was a proxy doing the request, you'll have the proxy's I

RE: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread Jon Haworth
> Okay, thanks. 'Cause I mean, the REMOTE_ADDR is still there. So you > mean that the HTTP_X_FORWARDED_FOR isn't working while I'm working localhost? REMOTE_ADDR contains the IP of the computer that requested your page. If it was a proxy doing the request, you'll have the proxy's IP in this vari

Re: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread sebbe
Yeah, I've tried that and the $HTTP_SERVER_VARS but I keep getting this error: PHP Warning: Undefined index: HTTP_X_FORWARDED_FOR in C:\Web\byenighte\phpinfo.php on line 2 I'm using the recommended php.ini, by the way. Sebbe > > hi > > try something like > > $_SERVER["HTTP_X_FORWAR

Re: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread sebbe
Okay, thanks. 'Cause I mean, the REMOTE_ADDR is still there. So you mean that the HTTP_X_FORWARDED_FOR isn't working while I'm working localhost? Sebbe > > Hy, > > > [EMAIL PROTECTED] wrote: > > > Hi, > > > > I just installed IIS 5.0 and PHP 4.1.1 on Win 2000, and I'm wondering wha

Re: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread Attila Strauss
hi try something like $_SERVER["HTTP_X_FORWARDED_FOR"] best regards attila > > Hy, > > > [EMAIL PROTECTED] wrote: > > > Hi, > > > > I just installed IIS 5.0 and PHP 4.1.1 on Win 2000, and I'm wondering what happened to the HTTP_X_FORWARDED_FOR? I doesn't seem to exist on my system. Is it jus

Re: [PHP] HTTP_X_FORWARDED_FOR?

2002-01-10 Thread Henning Sprang
Hy, [EMAIL PROTECTED] wrote: > Hi, > > I just installed IIS 5.0 and PHP 4.1.1 on Win 2000, and I'm wondering what happened >to the HTTP_X_FORWARDED_FOR? I doesn't seem to exist on my system. Is it just a >variable that needs to be changed, or has it been removed from PHP? Thanks. This ha