Btw, if someone wants to sort the default page by category:
In vBTube.php
Replace
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$_GET['do'] = 'featured';
}
With
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$catid='<insert catid here>';
$_GET['do'] = 'cat';
}
You can see the catid by moving the mouse over the category.
In the statusbar you'll see something like this:
http://www.yourdomain.com/vBTube.php?do=cat&catid=2
2 is the catid (on my page it defaults to Autos & vehicles).