[ 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-admin
/
user
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 about.php
257 B
SET
[ EDIT ]
|
[ DEL ]
📄 admin.php
865 B
SET
[ EDIT ]
|
[ DEL ]
📄 contribute.php
267 B
SET
[ EDIT ]
|
[ DEL ]
📄 credits.php
261 B
SET
[ EDIT ]
|
[ DEL ]
📄 freedoms.php
263 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
251 B
SET
[ EDIT ]
|
[ DEL ]
📄 menu.php
831 B
SET
[ EDIT ]
|
[ DEL ]
📄 privacy.php
261 B
SET
[ EDIT ]
|
[ DEL ]
📄 profile.php
252 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-edit.php
250 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: admin.php
<?php /** * WordPress User Administration Bootstrap * * @package WordPress * @subpackage Administration * @since 3.1.0 */ define( 'WP_USER_ADMIN', true ); require_once dirname( __DIR__ ) . '/admin.php'; if ( ! is_multisite() ) { wp_redirect( admin_url() ); exit; } $redirect_user_admin_request = ( 0 !== strcasecmp( $current_blog->domain, $current_site->domain ) || 0 !== strcasecmp( $current_blog->path, $current_site->path ) ); /** * Filters whether to redirect the request to the User Admin in Multisite. * * @since 3.2.0 * * @param bool $redirect_user_admin_request Whether the request should be redirected. */ $redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request ); if ( $redirect_user_admin_request ) { wp_redirect( user_admin_url() ); exit; } unset( $redirect_user_admin_request );