[ 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
/
wp-optimize
/
vendor
/
team-updraft
/
lib-onboarding-wizard
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Wizard
SET
[ DEL ]
📁 composer-plugin-extras
SET
[ DEL ]
📄 autoload.php
524 B
SET
[ EDIT ]
|
[ DEL ]
📄 composer.json
341 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: autoload.php
<?php spl_autoload_register(function ($class) { $prefix = 'Updraftplus\Wp_Optimize\\'; // Only handle classes with namespace starting with prefix. if (strpos($class, $prefix) !== 0) { return; } // Remove the namespace prefix $relative_class = substr($class, strlen($prefix)); $relative_path = str_replace('\\', DIRECTORY_SEPARATOR, $relative_class) . '.php'; $file = __DIR__ . DIRECTORY_SEPARATOR . $relative_path; // Require the file if it exists. if (file_exists($file)) { require_once $file; } });