Server IP : 185.246.164.236 / Your IP : 216.73.216.0 Web Server : Apache System : Linux linux105 6.1.0-31-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.128-1 (2025-02-07) x86_64 User : web9 ( 5012) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client9/web9/web/wp-content/plugins/dyjimwe/ |
Upload File : |
<?php /** * Plugin Name: Protect Uploads * Plugin URI: https://www.alticreation.com/en/protect-uploads/ * Description: Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file. * Version: 0.3 * Author: Alexis Blondin * Author URI: https://www.alticreation.com * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: protect-uploads * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } function activate_alti_protect_uploads() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-activator.php'; $activation = new Alti_ProtectUploads_Activator(); $activation->run(); } function deactivate_alti_protect_uploads() { require_once plugin_dir_path( __FILE__ ) . 'admin/class-protect-uploads-admin.php'; require_once plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads-deactivator.php'; $deactivation = new Alti_ProtectUploads_Deactivator(); $deactivation->run(); } register_activation_hook( __FILE__, 'activate_alti_protect_uploads' ); register_deactivation_hook( __FILE__, 'deactivate_alti_protect_uploads' ); require plugin_dir_path( __FILE__ ) . 'includes/class-protect-uploads.php'; $plugin = new Alti_ProtectUploads(); $plugin->run();