Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
443 views
in Q2A Core by
I know they are stored in database, is it possible to create thousands of pages? is there any limitation?

I'm thinking to use Q2A as a CMS+QA.

1 Answer

0 votes
by
There's no reason at all why not.

The only minor issue is that Q2A retrieves some information (but not the full content) for all the pages in the database for every page view, in order to build the navigation menus, so this could end up being quite a bit of data, most of which isn't necessary because not all the pages have navigation links.

You can resolve this by making the following change to function qa_db_pages_selectspec() in qa-db-selects.php:

'source' => '^pages ORDER BY position',

.... to ...

'source' => "^pages WHERE nav IN ('M', 'O', 'F', 'B') ORDER BY position",

That means information will only be retrieved about those pages which have a navigation link. And if you want to make this query more efficient, add an INDEX on the nav column in the qa_pages table.
by
Thanks! will modify code accordingly. can you please update this in upcoming Q2A release so it will be faster if someone wants to use it as a CMS+QA.
...