Hi @osseonews,
I actually had to do this today because mine got stuck while scanning the Divi theme. You can cancel the current scan by following these steps:
1. Run this query to delete the records that PHP Compatibility Checker creates for the current scan:
DELETE FROM wp_posts WHERE post_type = 'wpephpcompat_jobs';
2. Run these queries to delete the options that PHP Compatibility Checker sets for the current scan:
DELETE FROM wp_options WHERE option_name = 'wpephpcompat.scan_results';
DELETE FROM wp_options WHERE option_name = 'wpephpcompat.lock';
DELETE FROM wp_options WHERE option_name = 'wpephpcompat.status';
DELETE FROM wp_options WHERE option_name = 'wpephpcompat.numdirs';
3. Install Advanced Cron Manager, enabled it, and remove the cron job titled wpephpcompat_start_test_cron
.
-
This reply was modified 8 years, 1 month ago by
Jimmy K.. Reason: Fixed code formatting
-
This reply was modified 8 years, 1 month ago by
Jimmy K..