• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

googlebot

That is already on the list.

Reason it does not show up in the WOL as a spider, is a limitation in vBulletin in the session table.

To fix it, you need to edit the session table, and change the column useragent from char(100) to char(255)
 
Thanks changed
Code:
ALTER TABLE `session`
MODIFY COLUMN `useragent`  char(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '' AFTER `location`;
 
Back
Top