Done !
Server IP : 149.255.35.26 / Your IP : 18.216.115.2 Web Server : Apache System : Linux net.netcoservers5.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : gbslsnop ( 1036) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gbslsnop/public_html/wp/wp-content/plugins/fileorganizer/ |
Upload File : |
<?php /* Plugin Name: FileOrganizer Plugin URI: https://wordpress.org/plugins/fileorganizer/ Description: FileOrganizer is a plugin that helps you to manage all files in your WordPress Site. Version: 1.0.2 Author: Softaculous Team Author URI: https://fileorganizer.net Text Domain: fileorganizer */ // We need the ABSPATH if(!defined('ABSPATH')) exit; if(!function_exists('add_action')){ echo 'You are not allowed to access this page directly.'; exit; } $_tmp_plugins = get_option('active_plugins'); // Is the premium plugin loaded ? if(in_array('fileorganizer-pro/fileorganizer-pro.php', $_tmp_plugins)){ return; } // If FILEORGANIZER_VERSION exists then the plugin is loaded already ! if(defined('FILEORGANIZER_VERSION')){ return; } define('FILEORGANIZER_FILE', __FILE__); include_once(dirname(__FILE__).'/init.php');