search for: _cptr

Displaying 3 results from an estimated 3 matches for "_cptr".

Did you mean: cptr
2016 Mar 27
2
PHP5 - Query Parsing Bug
...No matching function for overloaded 'new_Query' in /usr/share/php/xapian.php on line 2607 Line 2607 (and surrounding) looks like this and are in the __construct() of XapianQuery (with better indentation): """ switch (func_num_args()) { case 0: $this->_cPtr=new_Query(); break; case 1: $this->_cPtr=new_Query($copyme_or_tname__or_op__or_external_source_or_op); break; case 2: $this->_cPtr=new_Query($copyme_or_tname__or_op__or_external_source_or_op,$wqf__or_left_or_q_or_slot_or_subqs); break; case 3: $this->_cPtr=n...
2011 Feb 11
2
PHP Binding and SWIG Director for XapianMatchDecider
Hi, I try to use XapianMatchDecider to filtering results, but the code : $Decider = new MatchDecider_Search($XapianDatabase->_cPtr); $mset = $XapEnquire->get_mset(0, 3000, null, $Decider); Always return : PHP Fatal error: No matching function for overloaded 'Enquire_get_mset' in xapian.php on line 1082 I saw that SWIG was not supporting Directors for PHP, but now, it seems to be patched. Why is it still not wor...
2006 Nov 30
1
PHP / XapianQueryParser
...t($tname_or_op__or_copyme_or_op=null,$wqf_or_left_or_subqs_or_q=1,$term_pos_or_right_or_param=0) { switch (func_num_args()) { case 0: $r=new_Query(); break;--> this line: default: $r=new_Query($tname_or_op__or_copyme_or_op,$wqf_or_left_or_subqs_or_q,$term_pos_or_right_or_param); } $this->_cPtr=$r; } Anyone with suggestions? Many thanks already :). Thanks. ----Other message:---- (note: I try to post a follow-up through Gmane now, hope it all goes well!) Hi Olly, Thanks for your reply. Unfortunately I had no luck, and decided to test it on a linux machine. Compiling the c...