Log in

View Full Version : IP #'s


BettorsTalk.com
06-14-2005, 04:09 PM
Is there any way to pull all of the IP #'s for registered users from a Vbulletin board?

Marco van Herwaarden
06-14-2005, 04:19 PM
Please explain what you mean by "pull all"

BettorsTalk.com
06-14-2005, 09:52 PM
In other words download all of the IP#'s for all registered users so they can be gone through.

Marco van Herwaarden
06-15-2005, 06:18 AM
You could do this by running a query on the post table (this will not show the IP's used when registering).

SELECT username, ipaddress, count(*) from post group by 1,2;
Above will show the ip's used on posting for each member, and how many posts made using each IP.

BettorsTalk.com
06-16-2005, 04:39 AM
Is there any way to print this out? Meaning mines pulling up over 1900 pages.

BettorsTalk.com
06-23-2005, 06:09 PM
Also this isn't pulling all of the IP #'s for all of my members as I have over 7,000 members.

Also is there a way to find which of my members are from a particular State? In other words a way to go about searching for the State Wisconsin without having to try and go through over 7,000 members 1 at a time.

Dan
06-23-2005, 06:46 PM
Also this isn't pulling all of the IP #'s for all of my members as I have over 7,000 members.

Also is there a way to find which of my members are from a particular State? In other words a way to go about searching for the State Wisconsin without having to try and go through over 7,000 members 1 at a time.
The only way to know this is if you read their host mask, and IF their hostmask tells you where they are you will know.

BettorsTalk.com
06-23-2005, 08:01 PM
The only way to know this is if you read their host mask, and IF their hostmask tells you where they are you will know.

So basically I would have to go through over 7,000 members 1 at a time?

Marco van Herwaarden
06-24-2005, 03:34 AM
You would have to start to make a list of all the IP ranges all ISP in Wisconsin are using, plus the IP's of companies/universities in that state.