Hi,
I'm using PHP5 and the query parser, I get an error when trying to parse a
query:
Fatal error: No matching function for overloaded 'new_Query' in
xapian.phpon line 1121
Using:
$query = $xapian_query_parser->parse_query('title:zulu');
However, the php4 method works:
$query = queryparser_parse_query ($xapian_query_parser, 'title:zulu');
Ross
On Mon, Feb 26, 2007 at 04:27:13PM +0000, Ross Lawley wrote:> I'm using PHP5 and the query parser, I get an error when trying to parse a > query: > > Fatal error: No matching function for overloaded 'new_Query' in > xapian.phpon line 1121Sounds like the same problem as this, though the line number seems to be slightly different (1123 not 1121): http://thread.gmane.org/gmane.comp.search.xapian.general/3661/focus=3683 Can you try the patch there and see if that fixes the problem? Cheers, Olly