Well, I made some headway after reading through this entire thread...
First I had the issue with the coventry error, since I don't use it I just commented out the code as a quick fix for now.
Then I started getting the assert error if I searched a different time frame from the default (ex: a week ago and newer). So I added the assert_options as another quick fix.
What was bugging me the most was my dates were not being sorted properly, and upon digging through the code I discovered why...
First, in your sphinx.conf file's "post_src" (whatever you name it - it's the first bracket code), in the sql_query you need to add lastpost to the end of the SELECT. Then below the existing sql_date_column line, add another saying sql_date_column = lastpost. You will also need to add the lastpost to the SELECT in the delta code (next bracket code bit).
Rebuild your indexes completely...
Then in the sphinx.php file you will notice the sort_date defaults to 'dateline', and in the 'titleonly' if/else statement it changes to 'lastpost'. The "else" part of that statement refers to all queries that searches the entire posts - which can return as either posts or threads. So basically within the 'else' code (like after the set weights) just add:
PHP Code:
if ($vbulletin->GPC['showposts'] == false)
{
$sphinx_sort_by_date = 'lastpost';
}
So now when results are returned as threads, it sorts them based on the last post date, not the date when the post with the matching word was found.
As promised, I'm attaching my sphinx.conf file that works with MySQL 4.0.x (because that version does not support sub-selects). I also have the above mentioned changes if you don't fully understand what I was trying to explain above. Included too is my stopwords file (it's just the MySQL default list).
Tomorrow I'm going to try and go through and ensure all the current functionality works with all the various search options, then I'm going to slowly try and work my way through to add the features that were removed from the vB template.