Quote:
Originally Posted by orban
Yeah, I just saw 0.9.7-RC1 got released.
I think I will wait for one more release candidate or even for the final version, because I'm sure there'll be bugs.
|

- as the current version works so well I'm in no hurry.
Quote:
Originally Posted by orban
Once it's release I'll create a new how-to. It will probably not just be a simple rebuild of indices, yeah.
|
I suspected as much. Good luck when he gets that far.
By the way did you have a sugestion as to where was the best place to do the arraywalk in your sphinx.php code?
Can it be implemented in the lines like?
ie something like
$cl->SetGroups2 ( array_walk($sphinx_groups2, "intvalArray") );
Obvioulsy with the function elsewhere in the code.
function intvalArray(&$item, $key)
{
$item = intval($item);
}
When I try I get another error:
Invalid argument supplied for foreach()
in Sphinxapi.php in the places that the int_val check takes place.