Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   Link Lists & Getting Listed (http://www.greenguysboard.com/board/forumdisplay.php?f=7)
-   -   Having problem submitting to Link-O-Rama (http://www.greenguysboard.com/board/showthread.php?t=15525)

AliMeBitch 2005-01-20 04:57 PM

Having problem submitting to Link-O-Rama
 
Im having a slight problem. It is saying that I submited a site within the last 24 hours, but I havent submitted a site in 3 days. Not to sure if there is anything you can do. But I hope so, thanks :D

Greenguy 2005-01-20 05:37 PM

You sharing an IP with anyone? Or on a ISP that shares an IP?

AliMeBitch 2005-01-20 05:53 PM

Im not sharing an ip with anybody, and Im not sure if my ISP is sharing my ip

Greenguy 2005-01-20 06:04 PM

The script checks for duplicate IP's on the same 24 hour period.

There's 4 other people on this board with the same IP as you - all on shawcable.net from what I can see.

I really have no way around this other than turning off the IP checker, which I'm not going to do :(

AliMeBitch 2005-01-20 06:10 PM

that is really shitty, hmm, maybe i should get an old school dial up account just for submitting :D

Greenguy 2005-01-20 06:12 PM

I wouldn't hurt - I know a lof of places that check IP's & thse Cable Modem companies are famous for giving everyone the IP of the closest router.

AliMeBitch 2005-01-20 06:18 PM

crap, i forgot, i threw out my modem like 6 years ago :P do they even have those any more :D haha

AliMeBitch 2005-01-20 06:23 PM

Can you PM me what it says for my IP, thanks

stev0 2005-01-20 06:24 PM

Hey GG, im with shawcable in calgary too and i dont think our IP's are shared. I was talking with AliMeBitch on ICQ and we do have different IP addresses.

I'm guessing that I am probably one of the 4 on this board showing up as the same IP? Maybe your script is detecting the subnet or gateway?

Greenguy 2005-01-20 07:06 PM

Yes, I show that you 2 have the same IP addy at times. I also show that you 2 have different IP's at times as well. I can only go by the info that I have in front of me & I really have no idea how the board or my admin detects what IP a user or submitter has :(

Alphawolf 2005-01-21 12:11 AM

AliMeBitch,

You can go to www.whatismyip.com to see what your current IP is.

plateman 2005-01-21 12:25 AM

And that is what could have happened to my sic cash thing - but not because they are always right...

FTS 2005-01-21 12:47 AM

Quote:

Originally Posted by plateman
And that is what could have happened to my sic cash thing - but not because they are always right...

note to self, never piss of plateman ;)

Porn Meister 2005-01-21 12:55 AM

You could try manually releasing then renewing your IP possibly(?) View network connections, right click, Status, Support, Repair.. I believe that does it (if its windows xp).. dunno if it'll give you a unique IP # though.

Opti 2005-01-21 01:11 AM

When oprano used to show the posters IP publicly.... I often came up as same IP as people on same ISP in other cities even.... I think the board picks up cable ISPs transparent proxy's IP.

For your submit script GG, I am "fairly sure" you could code it to ask check the Forwarded-For IP .... ISPs like shaw internet would almost definitely have their cable proxy setup to correctly pass that info if your script asks for it.

AliMeBitch 2005-01-21 01:19 AM

Quote:

Originally Posted by Alphawolf
AliMeBitch,

You can go to www.whatismyip.com to see what your current IP is.

yeah, i did that one, me and stev0 had different IP's when we checked, but GG was saying that sometimes we have the same one and sometimes not

AliMeBitch 2005-01-21 01:22 AM

Quote:

Originally Posted by Porn Meister
You could try manually releasing then renewing your IP possibly(?) View network connections, right click, Status, Support, Repair.. I believe that does it (if its windows xp).. dunno if it'll give you a unique IP # though.

I did the release and renew, didnt work, but im behind a router and thats about all it can do, maybe ill try the repair thing without the router attached, thanks

Opti 2005-01-21 01:41 AM

here is some code that will determine the correct IP from any properly configured ISP proxy.

For anyone using a Submission script that logs webmaster IPs, using this code rather than simply relying on the REMOTE_ADDRESS variable to gather the IP will be a lot more effective.

PHP Code:

<?php
function getIP() {
   
$tmp = array();
   if  (isset(
$_SERVER['HTTP_X_FORWARDED_FOR']) && strpos($_SERVER['HTTP_X_FORWARDED_FOR'],',')) {
       
$tmp +=  explode(',',$_SERVER['HTTP_X_FORWARDED_FOR']);
   } elseif (isset(
$_SERVER['HTTP_X_FORWARDED_FOR'])) {
       
$tmp[] = $_SERVER['HTTP_X_FORWARDED_FOR'];
   }
   
$tmp[] = $_SERVER['REMOTE_ADDR'];
   return 
$tmp;
}
print_r(getIP());
?>

Check it what it outputs for your IP here:
http://xengio.com/XGOgetIP.php


(For LL owners that just glazed over thinking thats too technical for me.... it isnt as hard as it may look. If you can code html in notepad, you can likely incorporate that into almost any script all by yourself.)


All times are GMT -4. The time now is 12:34 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc