[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
fileorganizer
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 css
SET
[ DEL ]
📁 images
SET
[ DEL ]
📁 js
SET
[ DEL ]
📁 main
SET
[ DEL ]
📁 manager
SET
[ DEL ]
📄 fileorganizer.php
1,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 init.php
11,874 B
SET
[ EDIT ]
|
[ DEL ]
📄 readme.txt
5,474 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: fileorganizer.php
<?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.1.8 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', []); if(!defined('SITEPAD') && in_array('fileorganizer-pro/fileorganizer-pro.php', $_tmp_plugins)){ // Was introduced in 1.0.9 $fileorganizer_pro_info = get_option('fileorganizer_pro_version'); if(!empty($fileorganizer_pro_info) && version_compare($fileorganizer_pro_info, '1.0.9', '>=')){ // Let Fileorganizer load // Lets check for older versions }else{ if(!function_exists('get_plugin_data')){ include_once ABSPATH . 'wp-admin/includes/plugin.php'; } $fileorganizer_pro_info = get_plugin_data(WP_PLUGIN_DIR . '/fileorganizer-pro/fileorganizer-pro.php'); if(!empty($fileorganizer_pro_info) && version_compare($fileorganizer_pro_info['Version'], '1.0.9', '<')){ return; } } } // If FILEORGANIZER_VERSION exists then the plugin is loaded already ! if(defined('FILEORGANIZER_VERSION')){ return; } define('FILEORGANIZER_FILE', __FILE__); define('FILEORGANIZER_VERSION', '1.1.8'); include_once(dirname(__FILE__).'/init.php');