| Server IP : 217.160.0.223 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.38-i1-ampere+ #1084 SMP Tue Jul 7 09:18:31 CEST 2026 aarch64 User : sws1073902667 ( 1073902667) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/www/public/wp-content/mu-plugins/ |
Upload File : |
<?php
/*
Plugin Name: InfiniteWP - Client Loader
Plugin URI: https://infinitewp.com/
Description: This plugin will be created automatically when you activate your InfiniteWP Client plugin to improve the performance. And it will be deleted when you deactivate the client plugin.
Author: Revmakx
Version: 1.0.1
Author URI: https://infinitewp.com/
*/
if (!function_exists('untrailingslashit') || !defined('WP_PLUGIN_DIR')) {
// WordPress is probably not bootstrapped.
exit;
}
if (file_exists(untrailingslashit(WP_PLUGIN_DIR).'/iwp-client/init.php')) {
if (in_array('iwp-client/init.php', (array) get_option('active_plugins')) ||
(function_exists('get_site_option') && array_key_exists('iwp-client/init.php', (array) get_site_option('active_sitewide_plugins')))) {
$GLOBALS['iwp_is_mu'] = true;
include_once untrailingslashit(WP_PLUGIN_DIR).'/iwp-client/init.php';
}
}