I am seeing the same thing, no matter how many times I click to override it never does and the drop downs to consider are disabled
@greengiant: If you require assistance then, as per the Forum Welcome, please post your own topic.
Plugin Author
YARPP
(@jeffparker)
I’m curious what version of WordPress and PHP you are all using?
Thread Starter
Djib's
(@djibs13)
I have wordpress 3.8 (now) and php 5.4.23
Plugin Author
YARPP
(@jeffparker)
Hi Djib. If you deactivate, remove, install, and then reactivate YARPP again, does the MyISAM message disappear?
Also, did you see this message when you were using YARPP < 4.1? Does it seem to coincide with upgrading WP to 3.8?
This feedback will be helpful for troubleshooting. Thanks!
Thread Starter
Djib's
(@djibs13)
Hi,
I tried several times to deactivate, remove, install, and then reactivate YARPP again but still the same problem.
I have no problem with YARPP <4.1.
Until the bug was fixed, I’m using version 4.0.8.
Plugin Author
YARPP
(@jeffparker)
Thanks for the info. We’ll take a closer look.
Plugin Author
YARPP
(@jeffparker)
We’re still looking into this but here’s a workaround, if you have access to the database tables:
- De-activate YARPP.
- Convert the tables from InnoDB to MyISAM (usually wp_posts): ALTER TABLE {posts_table} ENGINE = MyISAM;
- Delete ‘yarpp_fulltext_disabled’ entry on the options table (usually wp_options): DELETE FROM {options_table} WHERE option_name = ‘yarpp_fulltext_disabled’ LIMIT 1;
- Activate YARPP.
Let me know if this works for you. Thanks.