HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Changes to Fulltext Indexing
This discussion is related to the Vanilla addon.
Changes to Fulltext Indexing
Full-text index support has been disabled by default as of Vanilla 4. To enable full-text index support, add a FullTextIndexing key under the Database section of your site config and set its value to true. Failure to add this config value will result in full-text indexes being removed from Vanilla's database tables.
class.databasestructure.php
/** @var bool */ private $fullTextIndexingEnabled = false;
set to "true"
replace false with true
Is that so?
1
Comments
No, that would be:
$Configuration['Database']['FullTextIndexing '] = true;
in conf/config.php
However you can just ignore all of this, since the site search has never used these indexes. Changing that value to true will do nothing.
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Good! Thank you