TCWT Posted January 2, 2013 Share Posted January 2, 2013 Anyone set it to more than 1000 results? I'm not sure what it means by: "Second, there's also a 3rd argument to SetLimits() API call that also defaults to 1000 and must be raised. (With SphinxSE, use "maxmatches" option.)" Is it something IPB has to implement? http://sphinxsearch.com/info/faq/#max-matches Link to comment Share on other sites More sharing options...
TCWT Posted January 4, 2013 Author Share Posted January 4, 2013 I know a lot use Sphinx, please reply if you know. :) Link to comment Share on other sites More sharing options...
GreenLinks Posted January 10, 2013 Share Posted January 10, 2013 You can set Sphinx to display more result , however IPB depends on it's own setting on how may results are displayed. The setting is within Admin > Settings > Search Settings and currently max results are set to 1000 Link to comment Share on other sites More sharing options...
TCWT Posted January 12, 2013 Author Share Posted January 12, 2013 In addition to the sphinxapi.php and sphinx.conf file, the core IPB that needs to be modified is in /admin/applications/forums/extensions/search/engines/sphinx.php return array( 'count' => intval( $result['total_found'] ) > 1000 ? 1000 : $result['total_found'], 'resultSet' => $search_ids ); Hope this is helpful to others wanting to accomplish the same. Link to comment Share on other sites More sharing options...
Dmacleo Posted January 12, 2013 Share Posted January 12, 2013 been meaning to re-impment it. this was a good reminder lol Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.