MyISAM (bool)
-
Issue:
After converting thenswp_posts
table to use theMyISAM
engine, I still can’t enable “consider titles” and “consider body” because it says “your table seems to be using the1
engine. I saw a few other topics that seem to have the same issue or be related, but there seems to be a pretty easy fix.Possible Solution:
Looks like there are a few places in the code that aren’t casting$table_type
to a Boolean before strictly checking it againsttrue
. (ie – YARRP_Core.php line 321)Pretty sure if you do a find (in the plugin code) for…
($table_type !== true)
…and change to…
((bool) $table_type !== true)
…it should work as expected.Last:
Is this plugin maintained anymore? It’d be good to know if it is safe to edit the plugin code directly if there aren’t any more updates coming.Thanks!
- The topic ‘MyISAM (bool)’ is closed to new replies.