Hi again.
@aram, Strange errors. WARNING: index 'BaseIdx': key 'path' not found' => this one is normal, as the base index is not a real index.
The others I haven't seen before.
Can you try something for me: in sphinx/code/Sphinx.php, after line 459, add this:
<code>echo $indexingOutput</code>
In case you're on a different revision and I've got the line wrong, its in the function reindex, and the echo should be on the line after this code:
<code>
if (!SapphireTest::is_running_test())
$indexingOutput = `{$this->bin('indexer')} --config {$this->VARPath}/sphinx.conf $rotate $idxlist &> /dev/stdout`;
</code>
There is an issue with reindex, as it's error detection is poor and something on my short term list to fix. Putting in the echo will give you the raw output of the indexer, which under some circumstances will show problems, when reindex() would otherwise just return "ok". (it's a laid-back kinda function :-) )
If you could post the results, that would be good.
Mark