XF 2.3 Convert search index to InnoDB on shared hosting

koraldon

Active member
Is there an option to convert the search table to InnoDB without CLI?
I'm on a shared host and don't have CLI access.
 
Not automatically, no. You could potentially truncate the table and change the engine to InnoDB via something like phpMyAdmin, and then rebuild the search index via the XF control panel. After the search index is rebuilt, you need to add the following to src/config.php:

PHP:
$config['searchInnoDb'] = true;
 
Back
Top Bottom