Here is what I changed in who's online to accomplish filtering out the spiders around line 197 zen 1.3.8:
changed this:
to this:PHP Code:$whos_online = $db->Execute("select customer_id, full_name, ip_address, time_entry, time_last_click,
last_page_url, session_id, host_address, user_agent
from " . TABLE_WHOS_ONLINE . "
order by $order");
~DDPHP Code:$whos_online = $db->Execute("select customer_id, full_name, ip_address, time_entry, time_last_click,
last_page_url, session_id, host_address, user_agent
from " . TABLE_WHOS_ONLINE . "
where full_name <> '¥Spider'
order by $order");



