Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/custom-php-settings/ |
Upload File : |
<?php
/**
* Plugin Name: Custom PHP settings
* Plugin URI: https://wordpress.org/plugins/custom-php-settings/
* Description: Customize PHP settings.
* Version: 1.4.3.3
* Requires at least: 3.1.0
* Requires PHP: 5.4
* Author: Cyclonecode
* Author URI: https://stackoverflow.com/users/1047662/cyclonecode?tab=profile
* Copyright: Cyclonecode
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: custom-php-settings
* Domain Path: /languages
*
* @package custom-php-settings
* @author custom-php-settings
*/
namespace CustomPhpSettings;
require_once __DIR__ . '/vendor/autoload.php';
use CustomPhpSettings\Backend\Backend;
add_action('plugins_loaded', function () {
if (is_admin()) {
Backend::getInstance();
}
});
register_activation_hook(__FILE__, array('CustomPhpSettings\Backend\Backend', 'activate'));
register_deactivation_hook(__FILE__, array('CustomPhpSettings\Backend\Backend', 'deActivate'));
register_uninstall_hook(__FILE__, array('CustomPhpSettings\Backend\Backend', 'delete'));