JezK
Edit File: clear_cache.php
<?php /** * Copyright (с) Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2023 All Rights Reserved */ if ( PHP_SAPI !== 'cli' ) { http_response_code( 403 ); die( '{"success":false,"message":"Access denied. This script can only be run from the CLI."}' ); } error_reporting( 0 ); // phpcs:ignore ini_set( 'display_errors', 0 ); // phpcs:ignore // Disable wp-cron to prevent cron tasks from executing from this script. define( 'DISABLE_WP_CRON', true ); require_once '../../../wp-load.php'; if ( ! function_exists( 'rocket_clean_domain' ) ) { $clsop_response = [ 'success' => false, 'message' => 'The plugin AccelerateWP seems not enabled on this site.', ]; die( wp_json_encode( $clsop_response ) ); } if ( rocket_clean_domain() ) { $clsop_response = [ 'success' => true, 'message' => 'Cache cleared.', ]; } else { $clsop_response = [ 'success' => false, 'message' => 'Something went wrong.', ]; } echo wp_json_encode( $clsop_response );