I'm using MariaDB with the default engine set to aria.
Aria is an enhanced version of MyISAM and allows Fulltext indexing. Aria (storage engine)
Unfortunately phpbb (using 3.3) will not allow the creation of MySQL Fulltext index as it fails with this message:
MySQL fulltext indexes can only be used with MyISAM or InnoDB tables
Could phpbb be modified to detect and allow aria for Fulltext searches?
Allow Aria Engine for MySQL Fulltext Indexing
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
-
- Registered User
- Posts: 17
- Joined: Mon Nov 30, 2015 2:45 pm
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: Allow Aria Engine for MySQL Fulltext Indexing
I don't see why not. It might just work by simply changing the check for that error and excluding Aria. Just make a ticket for it in the tracker and if you've experimented with getting it working add some details there.
-
- Registered User
- Posts: 17
- Joined: Mon Nov 30, 2015 2:45 pm
Re: Allow Aria Engine for MySQL Fulltext Indexing
OK, ticket created.
I fixed this by editing /phpbb/search/fulltext_mysql.php and adding a check for the Aria engine
~line 176
I fixed this by editing /phpbb/search/fulltext_mysql.php and adding a check for the Aria engine
~line 176
Code: Select all
$fulltext_supported =
$engine === 'Aria' ||
$engine === 'MyISAM' ||
- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: Allow Aria Engine for MySQL Fulltext Indexing
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades