All ComboStrap data are stored in a Sqlite Database that you can query online
The database schema has the following tables:
Depending on your history with our plugins, its name may be:
The secondary database contains data that can be lost without loss of service such as:
The secondary database contains the following tables:
The database are stored at DOKUWIKI_HOME/data/meta/.
If you have a high traffic, we recommend to use the write-ahead log to reduce blocking. By default, Sqlite uses the old traditional journal.
Steps:
select sqlite_version();
PRAGMA journal_mode=WAL;
PRAGMA journal_mode;