Can you put the full XML file with the error online (pm me the url)? There's a syntax error in it, but it's easier for me to look at the original as this part is a bit strange (for example the span tag?).
Try to use this PHP code for solving the query() error:
PHP Code:
$mods = $vbulletin->db->query("SELECT id,name FROM " . TABLE_PREFIX . "dl_cats ORDER BY `id`");
while ($mod = $vbulletin->db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=cat&id='.$mod['id'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
$mods = $vbulletin->db->query("SELECT id as fid FROM " . TABLE_PREFIX . "dl_files");
while ($mod = $vbulletin->db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=file&id='.$mod['fid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}