Blocking an IP adress to a certain page

msaqib 0 Tallied Votes 293 Views Share

This is a small function that will block the specific IP from viewing the certain page, and it will redirect the user to the main page or noaccess page.

<%
'''''''''''''''''''''''''''''''
' Block the IP addresses that do the SPAM
'''''''''''''''''''''''''''''''
Function IsBlockedIP()
	Dim UserIP 
	Dim BlockedIParray(2) 
	'assign our blocked IP addresses to our array
	BlockedIParray(0) = "60.0.201.209" 
	BlockedIParray(1) = "218.11.15.212" 
	'retrieve the visitors IP address
	UserIP = Request.ServerVariables("REMOTE_ADDR") 

	'loop through the Blocked IPs 
	For i = 0 to UBound(BlockedIParray) 
		If UserIP = BlockedIParray(i) Then 
			Response.Redirect "index.asp" 
			'Response.Redirect "noaccess.asp" 

		End If 
	Next 
End Function
%>
perosf 0 Newbie Poster

I think I finished work this code. I want to restrict a page where someone comes from abroad to show another page and when the national network to the actual page opens.
This code which should be put in the php file?
I'm not familiar so much for help.
Thank you

yonker 0 Newbie Poster

thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.