|
BobbyDouglas -> RE: My Guestbook is being spammed (2/28/2005 19:22:53)
|
John, no worries, we will get through this. Logs are what your server should show. Basically whenever something happens, it gets logged. Some web hosts allow you to view these logs, others do not. Basically, we need to know what the IP addresses are that this person is using to spam your guestbook. Then we deny those IP addresses from going to your website. ------ After looking at the links you posted, you seem to have answered your own question [:)] Create a file in your public_html/www/home directory and name it .htaccess Inside this file, insert: order allow,deny deny from 192.168.2.1 allow from all Where 192.168.2.1 is the IP address of the person trying to spam your guestbook. Also, if you notice the IPs are: 192.168.2.1 192.168.2.13 192.168.2.8 192.168.2.14 Then you can use this: order allow,deny deny from 192.168.2. allow from all Or you could use: order allow,deny deny from 192.168.2.1 deny from 192.168.2.13 deny from 192.168.2.8 deny from 192.168.2.14 allow from all Also, you may want to test this too. Grab a friend, find out their IP (you can tell them to goto ipchicken.com to find it, or another way) and paste their IP in the .htaccess file. Have them visit your site to test it.
|
|
|
|