I'm afraid I have yet to personally experience the first problem you mentioned, nor have any of my members or clients in over a one year time span, so I'm afraid I'll have to take your word for it. I've been working closely with the Serence development team so I'll mention it to them in the coming weeks. The second problem or nuisance rather you spoke of is actually quite simple to exclude from Who's Online which typically displays as:
Guest Unknown Location: /vbTT.php -- so a simple comparison operator will do
Method no.1
Open online.php and find
PHP Code:
". iif(!$WOLguests, " AND session.userid = user.userid", "") ."
ORDER BY user.username");
Then replace with the following
PHP Code:
". iif(!$WOLguests, " AND session.userid = user.userid", "") ."
AND session.location NOT LIKE '%/vbTT.php%' ORDER BY user.username");