Fun with tracking pixels

droplister

New member
Aug 23, 2007
1,233
21
0
NYC
I have a proxy toplist what I could care less about, my (originally) 1x1 pixel has been mysteriously replaced by some sort of phallic shaped fertility symbol.

penis.png


Some examples:
BS Stuff Proxy
ReCure.com
Unblocker, Myspace Unblocker, Website Unblocker and Web Unblocker
BezLimitow.eu - Darmowe proxy

Cruel? Maybe. I'll probably remove the image entirely soon.

On a related note, does anyone know how I can block traffic entirely from my button.php because people slam files like that to boost their rankings. Since I no longer use the button.php for ranking can I deny traffic to it? When I was hosting the site at dreamhost a technician "helped" me by deleting the file entirely without asking me. It had been without the file until I added this little improvement tonight. I guess deleting it again will be the same result as any other mechanism for denial.
 


On a related note, does anyone know how I can block traffic entirely from my button.php

One option to block traffic from specific files is with .htaccess

Place this to your .htaccess file

Code:
# Block access to button.php file
<Files button.php>
order deny,allow
deny from all
ErrorDocument 403 http://makemoniesonline.com
</Files>
 
One option to block traffic from specific files is with .htaccess

Place this to your .htaccess file

Code:
# Block access to button.php file
<Files button.php>
order deny,allow
deny from all
ErrorDocument 403 http://makemoniesonline.com
</Files>
perfect