Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: IPGate for v3.4
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 26

Mindcontrol
New Member

52 Posts

Posted - 14 December 2003 :  14:20:45  Show Profile
Is the banning wizard a separte thing? If not I don't seem to be able to find it. This seems to be alot for not much.

Can a redirect for the ip be done?

Edited by - Mindcontrol on 14 December 2003 20:55:20
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 14 December 2003 :  16:29:07  Show Profile  Visit gpctexas's Homepage
ban wizard not ready yet

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip
Go to Top of Page

RebelTech
Average Member

USA
613 Posts

Posted - 14 December 2003 :  22:23:39  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
quote:
Originally posted by Mindcontrol

Is the banning wizard a separte thing? If not I don't seem to be able to find it. This seems to be alot for not much.

Can a redirect for the ip be done?



Check out the first link I posted in your other thread. This does exactly what you want.
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 15 December 2003 :  09:17:35  Show Profile  Visit gpctexas's Homepage
A bug was located again for single ip bans which affects ipgate 2.1 - 2.2.5. Patch for the fix is located at:
http://www.gpctexas.net/inc_ipgate.txt

I will update the zip later on this evening.
zip updated

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip

Edited by - gpctexas on 15 December 2003 17:57:07
Go to Top of Page

enneagram
Starting Member

USA
19 Posts

Posted - 16 December 2003 :  11:52:24  Show Profile  Visit enneagram's Homepage
If you're taking ideas here on features that would be handy for dealing with troublesome users, here's an idea:

Automatic post deletion with a random time delay
This would make the trolls spend time writing, and it would look like the Admin manually observed their post and deleted it. This make for additional work and frustration to the troll, and could be useful for trolls for whom username lockouts (they just create new usernames) and IP banning (they use a proxy server to spoof the IPs) have been ineffectual.
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 20 December 2003 :  18:29:18  Show Profile  Visit gpctexas's Homepage
I have 2 weeks off for the holidays, I may try a major rework of the entire mod during that time. It all fepends if I can get rid of my sinus problems i have been trying to get rid of fo the last 5 weeks.

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip
Go to Top of Page

StephenD
Senior Member

Australia
1044 Posts

Posted - 02 January 2004 :  01:43:41  Show Profile  Send StephenD a Yahoo! Message
I have a user who logs on fine but in the IP Gate Logs it shows him as having an 'unknown' IP address. What does this mean? Does he have some form of 'anonymous browsing' tool employed?
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 02 January 2004 :  02:23:03  Show Profile  Visit gpctexas's Homepage
I checked the code, no where in it does it handle or output an unknown ip address. He may have something setup that is blocking the ip from being sent. I need to add some code in to handle the unknown ip as this may cause problems. If you would export the iplog table to a text file if you can so I can see how it is getting written to the db and send me the link to get the file to my profile here.

This is the first time I seen this one.

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip
Go to Top of Page

StephenD
Senior Member

Australia
1044 Posts

Posted - 02 January 2004 :  02:41:52  Show Profile  Send StephenD a Yahoo! Message
OK, will do. Just waiting on my host to send me a backup of the SQL DB.
Go to Top of Page

Chuck McB
Junior Member

WooYay
196 Posts

Posted - 02 January 2004 :  07:32:51  Show Profile  Visit Chuck McB's Homepage  Send Chuck McB an ICQ Message
Was just about to post the same issue: one of my users has had no IP since Dec 19th and ipgate was freaking out on line 102, only just got to talk to him today about it.

Here's his data from the iplog:
26223,"","unknown","rules.asp?cat=1","20040101124128"
26221,"","unknown","rules.asp","20040101124101"
26407,"","203.21.143.123, unknown","rules.asp","20040101130948"
The last one was when I got him to use a proxy server to view the forum.
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 02 January 2004 :  15:15:46  Show Profile  Visit gpctexas's Homepage
Thx Chuck, lemme research this and I'll get back.

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip
Go to Top of Page

gpctexas
Junior Member

320 Posts

Posted - 02 January 2004 :  16:23:07  Show Profile  Visit gpctexas's Homepage
Ok I think I figured this out, the unknown is comming from inc_ipgate.asp because the script is finding a value in the Request.ServerVariables("HTTP_X_FORWARDED_FOR").

I will code a fix to check for the value unknown and to check for an ip value in the Request.ServerVariables("HTTP_X_FORWARDED_FOR"). If the requirements aren't met, then the script will default to Request.ServerVariables("REMOTE_ADDR").

I may even drop the HTTP_X_FORWARDED_FOR totally from the script, gonna run some test. inc_ipgate.asp always assumed there was an ip address being used with no code to prevent non ip numbers to be checked.


here is a possible fix:

locate in inc_ipgate.asp and locate ~aboutline 55:

if temp <> "" Then
userip = temp
Else
userip = Request.ServerVariables("REMOTE_ADDR")
End If


and change to

if (temp <> "") and (ubound(split(temp,".")) = 3) Then
userip = temp
Else
userip = Request.ServerVariables("REMOTE_ADDR")
End If

patch available here if you are running ver 2.2.6 only
http://www.gpctexas.net/inc_ipgate.txt

zip updated for the fix as well http://www.gpctexas.net/ipgate_v22.zip


The users that this is appearing are either using a proxy server or their isp is using a proxy. Ised about 6 different proxies and 1 returned unknown to my logs.

ipgate 2.4.4 RC3
http://www.gpctexas.net/ipgate_v244.zip

Edited by - gpctexas on 02 January 2004 16:59:30
Go to Top of Page

Chuck McB
Junior Member

WooYay
196 Posts

Posted - 02 January 2004 :  20:32:54  Show Profile  Visit Chuck McB's Homepage  Send Chuck McB an ICQ Message
ok, will get my IP-less tester to ...erm...test it...
Go to Top of Page

Reeco
Starting Member

12 Posts

Posted - 22 January 2004 :  07:59:24  Show Profile  Visit Reeco's Homepage
Ok I feel like a toal newb... I'm trying to install your mod but can't figure out where to put this last part...

Add a link on your admin page to the admin file in this MOD:

" <LI><span class=""spnMessageText""><a href=""admin_ipgate.asp"">IPGate Configuration</a></span></LI>" & vbNewLine & _

What file does this actually go in?

Thanks in advance.

http://www.chatterslounge.com Where friends can be friends!
Go to Top of Page

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 22 January 2004 :  08:22:56  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
quote:
What file does this actually go in?

admin_home.asp

My MODs:
Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook
Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch

Useful stuff:
Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
Go to Top of Page
Page: of 26 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.29 seconds. Powered By: Snitz Forums 2000 Version 3.4.07