just a quick note if you're using TECK's guest_crawler
you should add the trailing dot to the ip addresses
PHP Code:
'Google' => '216.239.46[b][COLOR=yellow][SIZE=3].[/SIZE][/COLOR][/b]',
'Inktomi' => '66.196.72[b][COLOR=yellow][SIZE=3].[/SIZE][/COLOR][/b]'
so that you dont match (ie an octet at the beginning):
*216.239.46*
*66.196.72*
with the trailing dot you will only match:
216.239.46.*
66.196.72.*
also a minor point for the vbarchive installer
the templates added are set to templatesetid=-1
which is fine but in vB's upgrade scripts, lines like:
Code:
$DB_site->query("DELETE FROM template WHERE templatesetid=-1 AND title<>'options'");
tend to obliterate peoples templates
i would recommend adding the templates twice once with -1 and then again with the style id's so they appear as custom templates (with default content)