HEX
Server: LiteSpeed
System: Linux cde2.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: dtptviut (1121)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/dtptviut/public_html/wp-content/plugins/w3-total-cache/inc/options/parts/redis_extension.php
<?php
/**
 * File: redis_extension.php
 *
 * @package W3TC
 */

namespace W3TC;

defined( 'ABSPATH' ) || exit;
if ( ! defined( 'W3TC' ) ) {
	die();
}

/*
 * Requires $w3tc_module variable
 */
$w3tc_config = Dispatcher::config();

?>
<tr>
	<th><label for="redis_servers"><?php echo wp_kses( Util_ConfigLabel::get( 'redis.servers' ), array( 'acronym' => array( 'title' => array() ) ) ); ?></label></th>
	<td>
		<textarea id="redis_servers" name="<?php echo esc_attr( $w3tc_module ); ?>__redis__servers" <?php Util_Ui::sealing_disabled( $w3tc_module ); ?> rows="10" cols="50"><?php echo esc_html( implode( "\n", $w3tc_config->get_array( array( $w3tc_module, 'redis.servers' ) ) ) ); ?></textarea>
		<input class="w3tc_common_redis_test button {nonce: '<?php echo esc_attr( Util_Nonce::create_admin( 'w3tc_test_redis' ) ); ?>'}"
			<?php Util_Ui::sealing_disabled( $w3tc_module ); ?>
			type="button" value="<?php esc_attr_e( 'Test', 'w3-total-cache' ); ?>" />
		<span class="w3tc_common_redis_test_result w3tc-status w3tc-process"></span>
		<p class="description"><?php esc_html_e( 'Enter one server definition per line: e.g. 127.0.0.1:11211 or domain.com:11211. To use TLS, prefix server with tls://', 'w3-total-cache' ); ?></p>
	</td>
</tr>
<?php

Util_Ui::config_item(
	array(
		'key'            => array( $w3tc_module, 'redis.verify_tls_certificates' ),
		'label'          => Util_ConfigLabel::get( 'redis.verify_tls_certificates' ),
		'control'        => 'checkbox',
		'checkbox_label' => Util_ConfigLabel::get( 'redis.verify_tls_certificates' ),
		'description'    => __( 'Verify the server\'s certificate when connecting via TLS.', 'w3-total-cache' ),
	)
);

Util_Ui::config_item(
	array(
		'key'            => array( $w3tc_module, 'redis.persistent' ),
		'label'          => __( 'Use persistent connection:', 'w3-total-cache' ),
		'control'        => 'checkbox',
		'checkbox_label' => Util_ConfigLabel::get( 'redis.persistent' ),
		'description'    => __( 'Using persistent connection doesn\'t reinitialize memcached driver on each request', 'w3-total-cache' ),
	)
);

Util_Ui::config_item(
	array(
		'key'          => array( $w3tc_module, 'redis.timeout' ),
		'label'        => Util_ConfigLabel::get( 'redis.timeout' ),
		'control'      => 'textbox',
		'textbox_type' => 'number',
		'description'  => __( 'In seconds', 'w3-total-cache' ),
	)
);

Util_Ui::config_item(
	array(
		'key'          => array( $w3tc_module, 'redis.retry_interval' ),
		'label'        => Util_ConfigLabel::get( 'redis.retry_interval' ),
		'control'      => 'textbox',
		'textbox_type' => 'number',
		'description'  => __( 'In miliseconds', 'w3-total-cache' ),
	)
);

if ( version_compare( phpversion( 'redis' ), '5', '>=' ) ) {
	// PHP Redis 5 supports the read_timeout setting.
	Util_Ui::config_item(
		array(
			'key'          => array( $w3tc_module, 'redis.read_timeout' ),
			'label'        => Util_ConfigLabel::get( 'redis.read_timeout' ),
			'control'      => 'textbox',
			'textbox_type' => 'number',
			'description'  => __( 'In seconds', 'w3-total-cache' ),
		)
	);
}

Util_Ui::config_item(
	array(
		'key'         => array( $w3tc_module, 'redis.dbid' ),
		'label'       => Util_ConfigLabel::get( 'redis.dbid' ),
		'control'     => 'textbox',
		'description' => __( 'Database ID to use', 'w3-total-cache' ),
	)
);

Util_Ui::config_item(
	array(
		'key'         => array( $w3tc_module, 'redis.password' ),
		'label'       => Util_ConfigLabel::get( 'redis.password' ),
		'control'     => 'textbox',
		'description' => __( 'Specify redis password', 'w3-total-cache' ),
	)
);