|
Posted by Brian Dunning on 10/20/68 11:19
I'm using the following code in an effort to identify bots:
$client = $_SERVER['HTTP_USER_AGENT'];
if(!strpos($client, 'ooglebot') && !strpos($client, 'ahoo') && !strpos
($client, 'lurp') && !strpos($client, 'msnbot'))
{
(Stuff that I do if it's not a bot)
}
But it doesn't seem to be catching a lot of bot action. Anyone have a
better list of user agents? (I left off the first letter of some to
avoid case conflicts.)
Navigation:
[Reply to this message]
|