| Server IP : 147.135.192.186 / Your IP : 216.73.217.78 Web Server : Apache System : Linux hr277092695.reseller.mis.ovh.net 5.10.0-0.bpo.8-amd64 #1 SMP Debian 5.10.46-4~bpo10+1 (2021-08-07) x86_64 User : betty.lujan ( 10000) PHP Version : 8.3.31 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/ensci.com/diplorama-data.ensci.com/wp-content/mu-plugins/ |
Upload File : |
<?php
// Copyright 1999-2026. WebPros International GmbH. All rights reserved.
/*
* Plugin Name: WP Toolkit plugin
* Plugin URI: https://www.plesk.com/wp-toolkit/
* Description: WP Toolkit plugin is installed by WP Toolkit or WP Guardian to provide functionality that can only work within WordPress itself
* Version: 6.11.0-10571
* Requires at least: 4.0
* Requires PHP: 5.6
*/
// Do not access this file directly
if (!\defined('ABSPATH')) {
header('Content-Type: text/plain');
die(<<<MSG
_________
< Go away >
---------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
MSG
);
}
$phpVersion = phpversion();
if ($phpVersion === false || version_compare($phpVersion, '5.6', '<')) {
return;
}
// wp_get_wp_version return an unmodified WordPress version and is available since WordPress 6.7.0
if (\function_exists('wp_get_wp_version')) {
$currentWpVersion = wp_get_wp_version();
} else {
$currentWpVersion = $GLOBALS['wp_version'];
}
if (!\is_null($currentWpVersion) && version_compare($currentWpVersion, '4.0', '>=')) {
require_once __DIR__ . '/wp-toolkit/bootstrap.php';
}