I was having the problem a few others reported, having the " / " appended to the end of my "getnew" and "getdaily" search functions. Within the "vRewrite - main script" plugin, I found the following lines (note the appended " / " at the end):
Code:
$output = str_replace("search.php?do=getnew","$myurl/search-getnew{$vbulletin->options['vRewrite_extension']}/",$output);
$output = str_replace("search.php?do=getdaily","$myurl/search-getdaily{$vbulletin->options['vRewrite_extension']}/",$output);
I modified it to:
Code:
$output = str_replace("search.php?do=getnew","$myurl/search-getnew{$vbulletin->options['vRewrite_extension']}",$output);
$output = str_replace("search.php?do=getdaily","$myurl/search-getdaily{$vbulletin->options['vRewrite_extension']}",$output);
Now, everything is working fine.