Server IP : 15.235.198.142 / Your IP : 216.73.216.229 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/2of3/wp-content/plugins/protect-uploads/ |
Upload File : |
<?php /** * Plugin Name: Protect Uploads * Plugin URI: https://wordpress.org/support/plugin/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.4 * Author: alticreation * 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();