Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
wp-registry-cli /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-xr-x
2026-06-29 17:13
vendor
[ DIR ]
drwxr-xr-x
2026-06-29 17:13
LICENSE
1.04
KB
-rw-r--r--
2026-06-29 17:13
bootstrap.php
913
B
-rw-r--r--
2026-06-29 17:13
changelog.md
2.78
KB
-rw-r--r--
2026-06-29 17:13
composer.json
584
B
-rw-r--r--
2026-06-29 17:13
composer.lock
11.05
KB
-rw-r--r--
2026-06-29 17:13
readme.md
6.22
KB
-rw-r--r--
2026-06-29 17:13
Save
Rename
<?php /** * WP Registry host bootstrap. * * Loads the WP Registry WP-CLI command without requiring installation as a * WordPress plugin. Designed for hosts who want a single copy on a server * that can target any site via `wp --path=/var/www/site registry ...`. * * Usage: * wp --require=/opt/wp-registry-cli/bootstrap.php --path=/var/www/site registry check * * Or add to /etc/wp-cli.yml: * require: /opt/wp-registry-cli/bootstrap.php * * @package WPRegistry */ // Guard against double-bootstrap. Some WP-CLI invocations may require this // file more than once in the same process. if ( defined( 'WPREGISTRY_VERSION' ) ) { return; } define( 'WPREGISTRY_VERSION', '1.2.0' ); define( 'WPREGISTRY_DIR', __DIR__ . '/' ); require_once WPREGISTRY_DIR . 'vendor/autoload.php'; // WP-CLI commands if ( defined( 'WP_CLI' ) && WP_CLI ) { \WP_CLI::add_command( 'registry', 'WPRegistry\Command' ); }