Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-10-2002, 06:44 PM   #1
Aussie Rebel
Blow Me U Geeks
 
Join Date: Aug 2001
Location: Maximum Security
Posts: 5,108
Has anybody got a script that will show the surfer his IP?

Has anybody got a script or a link that will show the surfer his IP?

Cheers
Aussie Rebel
Aussie Rebel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 06:47 PM   #2
[Labret]
Registered User
 
Industry Role:
Join Date: May 2001
Location: Са́нкт-Петербу́рг
Posts: 10,945
Use a Server Side Include, or SSI

http://www.columbia.edu/acis/webdev/ssi/ssi2.html

Couldnt cut n paste code.. your answer is there.

Last edited by [Labret]; 04-10-2002 at 06:50 PM..
[Labret] is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:03 PM   #3
Aussie Rebel
Blow Me U Geeks
 
Join Date: Aug 2001
Location: Maximum Security
Posts: 5,108
Quote:
Originally posted by [Labret]
Use a Server Side Include, or SSI

http://www.columbia.edu/acis/webdev/ssi/ssi2.html

Couldnt cut n paste code.. your answer is there.
Thanks Labret, but I need a script to use on a free hosted BBS
Aussie Rebel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:07 PM   #4
[Labret]
Registered User
 
Industry Role:
Join Date: May 2001
Location: Са́нкт-Петербу́рг
Posts: 10,945
Well, in that case...

Use javascript.

http://javascript.internet.com/user-...p-address.html


Am I the only one who knows how to use Yahoo?
[Labret] is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:17 PM   #5
Aussie Rebel
Blow Me U Geeks
 
Join Date: Aug 2001
Location: Maximum Security
Posts: 5,108
Quote:
Originally posted by [Labret]
Well, in that case...

Use javascript.

http://javascript.internet.com/user-...p-address.html


Am I the only one who knows how to use Yahoo?
Thats perfect thanks again
Aussie Rebel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:20 PM   #6
Alky
Confirmed User
 
Alky's Avatar
 
Join Date: Apr 2002
Location: Houston
Posts: 5,651
<?php echo "Your IP is: $REMOTE_ADDR"; ?>
Alky is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:21 PM   #7
Alky
Confirmed User
 
Alky's Avatar
 
Join Date: Apr 2002
Location: Houston
Posts: 5,651
< ?php echo "Your IP: $REMOTE_ADDR"; ? >


dont know if this will work, the above post it didnt work if it does replace the space between ? and < and >.
Alky is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 07:36 PM   #8
Aussie Rebel
Blow Me U Geeks
 
Join Date: Aug 2001
Location: Maximum Security
Posts: 5,108
Both did'nt work, it must be the host does'nt support it or something
Aussie Rebel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 08:41 PM   #9
Chris R
Confirmed User
 
Join Date: May 2001
Location: Baltimore, MD USA
Posts: 1,151
The javascript trick only works in netscape is my understanding.

Maybe you can iframe it from somewhere else with the ssi - can you see this?

<IFRAME src="http://www.pornking.biz/ip.htm" name="ip_frame" width="350" height="75" frameborder="0" scrolling="no">
</IFRAME>
Chris R is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 10:22 PM   #10
Aussie Rebel
Blow Me U Geeks
 
Join Date: Aug 2001
Location: Maximum Security
Posts: 5,108
Thanks heaps guys I ended up I framing it and it works fine


Cheers
Aussie Rebel
Aussie Rebel is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-10-2002, 10:34 PM   #11
kmanrox
aka K-Man
 
kmanrox's Avatar
 
Industry Role:
Join Date: Oct 2001
Location: The Gutter
Posts: 29,292
Quote:
Originally posted by Chris R
The javascript trick only works in netscape is my understanding.

Maybe you can iframe it from somewhere else with the ssi - can you see this?

<IFRAME src="http://www.pornking.biz/ip.htm" name="ip_frame" width="350" height="75" frameborder="0" scrolling="no">
</IFRAME>
hey fucker, unhand my ip address!

;-)
__________________
Crypto HODLr
Crypto mining
Angel investor
kmanrox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-11-2002, 05:27 AM   #12
bawdy
Confirmed User
 
Join Date: Feb 2002
Posts: 1,424
if you got php scare them a little more:

if (getenv(HTTP_X_FORWARDED_FOR)) {
$ip = getenv('HTTP_X_FORWARD_FOR');
$host = gethostbyaddr($ip);
} else {
$ip = getenv('REMOTE_ADDR');
$host = gethostbyaddr($ip);
}



$host often shows them what isp they are using.....

www.eraseyourtracks.com
bawdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-11-2002, 08:20 AM   #13
dadutchdj
Registered User
 
Join Date: Apr 2002
Location: NL- THe Hage
Posts: 73
PHP is the best thing to USE


<?php echo "Your IP: $REMOTE_ADDR"; ?>

like ALKY said

just copy that
and SAVE as *.php

if you wanna insert het between HTML

use this:


<-- ALLL YOUR HTML -->
<? echo "Your IP: $REMOTE_ADDR"; ?>
<-- MORE HTML -->

and save it as *.php

Mzzl Da DJ

ps,
upload in ASCI
__________________
-----------------------------------
webmaster of
http://www.pussypower.nl
http://www.damnsex.nl
dadutchdj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.