Fixing YARPP plugin FULLTEXT MySQL indexing

YARPP doesn’t do anything on uninstall.

So you have to uninstall it then go remove the indexes manually from the DB. The index names should be prefixed with yarpp_. Very untested SQL follows:

SHOW INDEXES ON wp_posts;
DROP INDEX yarpp_title ON wp_posts;
DROP INDEX yarpp_content ON wp_posts;