szepeviktor / site-health-command
Check critical values in your WordPress installation
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 2
Type:wp-cli-package
Requires
- php: >=7.4
- wp-cli/wp-cli: ^2.0
Requires (Dev)
- szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset: ^1.1
- wp-coding-standards/wpcs: 3.1.0 as 2.3.0
This package is auto-updated.
Last update: 2025-06-13 15:37:54 UTC
README
Check critical values in your WordPress installation with this WP-CLI command.
wp site-health check critical-site-health.yml
Installation
wp package install https://github.com/szepeviktor/critical-site-health.git
Configuration
There are 5 kinds of checks.
- options
- global constants
- class constants
- static class methods
- PHP expressions
--- # I should be self-sufficient. option: "blog_public": "1" "blog_charset": "UTF-8" "users_can_register": "0" "admin_email": "admin@szepe.net" "woocommerce_shop_page_id": "5372" "woocommerce_cart_page_id": "5362" "woocommerce_checkout_page_id": "5363" "woocommerce_myaccount_page_id": "15" "woocommerce_refund_returns_page_id": "5364" "woocommerce_terms_page_id": "74" global_constant: "WP_DEBUG": false "DISALLOW_FILE_EDIT": true "DISABLE_WP_CRON": true "WP_CACHE_KEY_SALT": "prefix:" class_constant: "Company\\THEME_VERSION": "0.0.0" class_method: "Company::version": "1.0.0" # Should return true eval: # IP address of WordPress home URL equals server's primary IP address - | gethostbyname(parse_url(get_bloginfo('url'), PHP_URL_HOST)) === trim(shell_exec('hostname -i')) # Core files are unchanged - | WP_CLI::runcommand('core verify-checksums --quiet', ['return' => 'return_code']) === 0 # Plugin files are unchanged - | WP_CLI::runcommand('plugin verify-checksums --quiet --all', ['return' => 'return_code']) === 0 # Database is up-to-date - | WP_CLI::runcommand('core update-db --quiet --dry-run', ['return' => 'return_code']) === 0 # WP Redis plugin is installed - | get_plugins()['wp-redis/wp-redis.php']['Name'] === 'WP Redis' # WP Redis is in use - | WP_CLI::runcommand('cache type', ['return' => true]) === 'Redis' # There is 1 administrator - | WP_CLI::runcommand('user list --role=administrator --format=count', ['return' => true]) === '1' # This is a production environment - | wp_get_environment_type() === 'production' # The current theme is custom-child-theme - | wp_get_theme()->get_stylesheet() === 'custom-child-theme' # WebP uploading is enabled - | function_exists('perflab_get_module_settings') && perflab_get_module_settings()['images/webp-uploads']['enabled'] === '1' # WP-Cron is running - | ($c=_get_cron_array()) && array_key_first(ksort($c, SORT_NUMERIC) ? $c : []) > time() - HOUR_IN_SECONDS # Ping https://healthchecks.io/ - | wp_remote_retrieve_response_code(wp_remote_get('https://hc-ping.com/YOUR-HC-UUID')) === 200