PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/chappellefoodauctionmall.online/wp-content/mu-plugins/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/chappellefoodauctionmall.online/wp-content/mu-plugins/endurance-php-edge.php |
<?php /* Plugin Name: Endurance PHP Edge Description: Run the latest version of PHP available or select your version using the MOJO Marketplace Plugin. Version: 0.1 Author: Mike Hansen Author URI: https://www.mikehansen.me/ License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html */ // Do not access file directly! if ( ! defined( 'WPINC' ) ) { die; } define( 'EPE_VERSION', 0.1 ); if ( ! class_exists( 'Endurance_PHP_Edge' ) ) { class Endurance_PHP_Edge { function __construct() { $this->hooks(); } function hooks() { add_filter( 'mod_rewrite_rules', array( $this, 'htaccess_contents' ), 99 ); } function htaccess_contents( $rules ) { $handler = get_option( 'epe_php_handler', 'application/x-httpd-php70s' ); $handler = 'AddHandler ' . $handler . ' .php' . "\n"; return $handler . $rules; } } $ebc = new Endurance_PHP_Edge; }