. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 198.54.115.242 / Your IP :
216.73.216.33 [
Web Server : LiteSpeed System : Linux server233.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : imereohc ( 2529) PHP Version : 8.2.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/imereohc/test.imera.ai/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
class Cdnfsd_LimeLight_Popup {
static public function w3tc_ajax() {
$o = new Cdnfsd_LimeLight_Popup();
add_action( 'w3tc_ajax_cdn_limelight_intro',
array( $o, 'w3tc_ajax_cdn_limelight_intro' ) );
add_action( 'w3tc_ajax_cdn_limelight_save',
array( $o, 'w3tc_ajax_cdn_limelight_save' ) );
}
public function w3tc_ajax_cdn_limelight_intro() {
$this->render_intro( array() );
}
private function render_intro( $details ) {
$config = Dispatcher::config();
$domain = '';
$domains = $config->get_array('cdn.limelight.host.domains');
if ( count( $domains ) > 0 ) {
$domain = $domains[0];
}
include W3TC_DIR . '/Cdn_LimeLight_Popup_View_Intro.php';
exit();
}
public function w3tc_ajax_cdn_limelight_save() {
$short_name = $_REQUEST['short_name'];
$username = $_REQUEST['username'];
$api_key = $_REQUEST['api_key'];
$domain = $_REQUEST['domain'];
try {
$api = new Cdnfsd_LimeLight_Api( $short_name, $username, $api_key );
$url = ( Util_Environment::is_https() ? 'https://' : 'http://' ) . $domain . '/test';
$items = array(
array(
'pattern' => $url,
'exact' => true,
'evict' => false,
'incqs' => false
)
);
$api->purge( $items );
} catch ( \Exception $ex ) {
$this->render_intro( array(
'error_message' => 'Failed to make test purge request: ' . $ex->getMessage()
) );
exit();
}
$c = Dispatcher::config();
$c->set( 'cdn.limelight.short_name', $short_name );
$c->set( 'cdn.limelight.username', $username );
$c->set( 'cdn.limelight.api_key', $api_key );
$c->set( 'cdn.limelight.host.domains', array( $domain ) );
$c->save();
include W3TC_DIR . '/Cdn_LimeLight_Popup_View_Success.php';
exit();
}
}