I can not get other spiders to be picked up in the spiders list. I have added them to the functions_statistik.php file
using the following
PHP Code:
if(ereg("googlebot", $agent)) $c_bot = "googlebot"; //googlebot
elseif(ereg("Googlebot", $agent)) $c_bot = "googlebot"; //Googlebot
elseif(ereg("BecomeBot", $agent)) $c_bot = "BecomeBot";
elseif(ereg("Mediapartners-Google", $agent)) $c_bot = "Mediapartners-Google";
elseif(ereg("msnbot", $agent)) $c_bot = "msnbot";
Where else must I edit something?