Hi @aailweb!
Sorry about the database optimization issue you’ve encountered.
Kindly provide a screenshot showing this issue.
Regards.
Thanks for the screenshot.
You are unable to Optimize database tables because you database uses InnoDB engine and perhaps your MySQL version is also lower than MySQL 5.7. You can find more information about this in our FAQ.
Can you confirm your database engine and MySQL version?
Regards.
I checked it: the version of MySQL database engine is 8.0.
Regards
-
This reply was modified 1 year, 2 months ago by
aailweb.
Hi @aailweb !
The issue has been identified and a fix will be rolling out with the next plugin release.
In the meantime, you can temporarily fix the issue by changing the following line of code:
<?php echo wp_kses_post(join('<br>', $html['info'])); ?>
to:
<?php echo $html['info']; ?>
in the file wp-optimize/templates/database/optimizations-table.php.
Regards.