Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
509 views
in Q2A Core by

http://www.youtube.com/watch?v=vwoEuXauF0M Video question

 

 

 - for each user's list of updates 

Q2A version: 1.6.2

1 Answer

+2 votes
by
selected by
 
Best answer
It seems that last page number of pagination is limited by declaration below.

QA_MAX_LIMIT_START of qa-config.php
by
Setting worth here so by default

define('QA_HTML_COMPRESSION', true);
define('QA_MAX_LIMIT_START', 19999);
define('QA_IGNORED_WORDS_FREQ', 10000);
define('QA_ALLOW_UNINDEXED_QUERIES', true);
define('QA_OPTIMIZE_LOCAL_DB', true);
define('QA_OPTIMIZE_DISTANT_DB', false);
define('QA_PERSISTENT_CONN_DB', false);
define('QA_DEBUG_PERFORMANCE', false);
by
Helped. Put 70,000 works. But how it will affect the performance of the site.

And is it possible to fix: - for each user's list of updates
...