<% @ Language=VBScript %> <% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Forums '** http://www.webwizforums.com '** '** Copyright 2001-2006 Bruce Corkhill All Rights Reserved. '** '** This program is free software; you can modify (at your own risk) any part of it '** under the terms of the License that accompanies this software and use it both '** privately and commercially. '** '** All copyright notices must remain in tacked in the scripts and the '** outputted HTML. '** '** You may use parts of this program in your own private work, but you may NOT '** redistribute, repackage, or sell the whole or any part of this program even '** if it is modified or reverse engineered in whole or in part without express '** permission from the author. '** '** You may not pass the whole or any part of this application off as your own work. '** '** All links to Web Wiz Guide and powered by logo's must remain unchanged and in place '** and must remain visible when the pages are viewed unless permission is first granted '** by the copyright holder. '** '** This program is distributed in the hope that it will be useful, '** but WITHOUT ANY WARRANTY; without even the implied warranty of '** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR ANY OTHER '** WARRANTIES WHETHER EXPRESSED OR IMPLIED. '** '** You should have received a copy of the License along with this program; '** if not, write to:- Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom. '** '** '** No official support is available for this program but you may post support questions at: - '** http://www.webwizguide.info/forum '** '** Support questions are NOT answered by e-mail ever! '** '** For correspondence or non support questions contact: - '** '** Web Wiz Guide, Unit 10E, Dawkins Road Industrial Estate, Poole, Dorset, UK, BH15 4JD '** '**************************************************************************************** 'Set the response buffer to true as we maybe redirecting Response.Buffer = True 'Dimension variables Dim rsSelectForum 'Holds the db recordset Dim strBlockIP 'Holds the IP address to block Dim strBlockedIPList 'Holds the IP addresses in the blocked list Dim lngBlockedIPID 'Holds the ID number of the blcoked db record Dim laryCheckedIPAddrID 'Holds the array of IP addresses to be ditched 'Run through till all checked IP addresses are deleted For each laryCheckedIPAddrID in Request.Form("chkDelete") 'Here we use the less effiecient ADO to delete from the database this way we can throw in a requery while we wait for slow old MS Access to catch up 'Delete the IP address from the database strSQL = "SELECT * FROM " & strDbTable & "BanList WHERE " & strDbTable & "BanList.Ban_ID=" & laryCheckedIPAddrID & ";" With rsCommon 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set .CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated .LockType = 3 'Query the database .Open strSQL, adoCon 'Delete from the db If NOT .EOF Then .Delete 'Requery .Requery 'Close the recordset .Close End With Next 'Read in all the blocked IP address from the database 'Initalise the strSQL variable with an SQL statement to query the database to count the number of topics in the forums strSQL = "SELECT " & strDbTable & "BanList.Ban_ID, " & strDbTable & "BanList.IP FROM " & strDbTable & "BanList WHERE " & strDbTable & "BanList.IP Is Not Null;" 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set rsCommon.CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated rsCommon.LockType = 3 'Query the database rsCommon.Open strSQL, adoCon 'If this is a post back then update the database If Request.Form("IP") <> "" Then 'Read in the IP address to block strBlockIP = Trim(Mid(Request.Form("IP"), 1, 30)) 'Update the recordset With rsCommon .AddNew 'Update the recorset .Fields("IP") = strBlockIP 'Update db .Update 'Re-run the query as access needs time to catch up .ReQuery End With End If %> IP Adresi Engelleme <% '***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** Response.Write("" & vbCrLf & vbCrLf) '***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** %>
IP Adresi Engelleme
Kontrol Paneli Menüsü

Burada istemediğiniz IP adreslerinin veya uzantılarının foruma girişini engelleyebilirsiniz.



Burayı kullanırken dikkatli olun.Yapacağınız yanlış bir engelleme çoğu kimsenin ziyaretini engelleyebilir.


<% 'Display the IP block list If rsCommon.EOF Then 'Disply no entires forun Response.Write("") 'Else disply the IP block list Else 'Loop through the recordset Do While NOT rsCommon.EOF 'Read in the details lngBlockedIPID = CLng(rsCommon("Ban_ID")) strBlockedIPList = rsCommon("IP") %> <% 'Move to the next record in the recordset rsCommon.MoveNext Loop End If 'Reset Server Objects rsCommon.Close Call closeDatabase() %>
Engellenmiş IP Adresleri Listesi
Engellenmiş IP adresi yok
<% = strBlockedIPList %>

IP Adreslerini Veya Uzantılarını Engelle
Bu * işareti IP uzantılarını engellemede kullanın.
Örn. '200.200.200.0 - 255' engellemek için bunu kullanın '200.200.200.*'
IP Adresi/Uzantısı: