| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.4/wp-content/plugins/wp-fastest-cache/ |
Upload File : |
<?php
/**
* Runs on Uninstall of WP Fastest Cache
*
* @package WP Fastest Cache
* @author Emre Vona
* @license GPL-2.0+
* @link http://wordpress.org/plugins/wp-fastest-cache/
*/
// if uninstall.php is not called by WordPress, die
if(!defined('WP_UNINSTALL_PLUGIN')){
die;
}
include_once("wpFastestCache.php");
wpfastestcache_deactivate();
delete_option("WpFastestCache");
delete_option("WpFcDeleteCacheLogs");
delete_option("WpFastestCacheCDN");
delete_option("WpFastestCacheCSP");
delete_option("WpFastestCacheExclude");
delete_option("WpFastestCachePreLoad");
delete_option("WpFastestCacheCSS");
delete_option("WpFastestCacheCSSSIZE");
delete_option("WpFastestCacheJS");
delete_option("WpFastestCacheJSSIZE");
delete_option("WpFastestCacheXML");
delete_option("WpFastestCacheXMLSIZE");
delete_option("WpFastestCacheSVG");
delete_option("WpFastestCacheSVGSIZE");
delete_option("WpFastestCacheJSON");
delete_option("WpFastestCacheJSONSIZE");
delete_option("WpFastestCacheVarnish");
delete_option("WpFastestCacheWOFF");
delete_option("WpFastestCacheWOFFSIZE");
delete_option("WpFastestCacheToolbarSettings");
delete_option("wpfc_country_code");
delete_option("WpFcServerUrl");
delete_option("WpFcLastImageId");
delete_option("WpFcImgOptNonce");
delete_option("wpfc-group");
delete_option("WpFc_credit");
delete_option("WpFc_api_key");
delete_transient("wpfc_premium_update_info");
delete_option("wpfc_premium_update_info");
wp_clear_scheduled_hook("wpfc_db_auto_cleanup");
foreach ((array)_get_cron_array() as $cron_key => $cron_value) {
foreach ( (array) $cron_value as $hook => $events ) {
if(preg_match("/^wp\_fastest\_cache/", $hook)){
$args = array();
foreach ( (array) $events as $event_key => $event ) {
if(isset($event["args"]) && isset($event["args"][0])){
$args = array(json_encode(json_decode($event["args"][0])));
}
}
wp_clear_scheduled_hook($hook, $args);
}
}
}
?>