HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/hcv/wp-content/plugins/w3-total-cache/inc/popup/cdn_purge.php
<?php
namespace W3TC;

if ( !defined( 'W3TC' ) )
	die();

?>
<?php include W3TC_INC_DIR . '/popup/common/header.php';?>

<p>
    <?php _e( 'Remove objects from the <acronym title="Content Delivery Network">CDN</acronym> by specifying the relative path on individual lines below and clicking the "Purge" button when done. For example:', 'w3-total-cache' ); ?>
</p>
<p>
    <?php switch ( $this->_config->get_string( 'cdn.engine' ) ):
case 'cotendo': ?>
        <ul>
            <li><em><?php echo $path?>/images/headers/</em> &mdash; <?php _e( 'the directory itself (only when accessed directly without any file).', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/*.</em> &mdash; <?php _e( 'all files in the directory with no extension, with all parameter variations.', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/*.jpg</em> &mdash; <?php _e( 'all files in the directory whose extension is "jpg".', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/path</em> &mdash; <?php _e( 'the specific file (when the file does not have an extension), and without parameters.', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/path.jpg</em> &mdash; <?php _e( 'the specific file with its extension, and without parameters.', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/path.jpg?*</em> &mdash; <?php _e( 'the specific file with its extension, with all variation of parameters.', 'w3-total-cache' ); ?></li>
            <li><em><?php echo $path?>/images/headers/path.jpg?key=value</em> &mdash; <?php _e( 'the specific file with its extension, with the specific parameters.', 'w3-total-cache' ); ?></li>
        </ul>
        <?php break;

default: ?>
        <em><?php echo $path?>/images/headers/path.jpg</em>
        <?php break;
endswitch; ?>
</p>


<form action="admin.php?page=w3tc_cdn" method="post">
    <p><?php _e( 'Files to purge:', 'w3-total-cache' ); ?></p>
    <p>
        <textarea name="files" rows="10" cols="90"></textarea>
    </p>
    <p>
        <?php echo Util_Ui::nonce_field( 'w3tc' ); ?>
        <input class="button-primary" type="submit" name="w3tc_cdn_purge_files" value="<?php _e( 'Purge', 'w3-total-cache' ); ?>" />
    </p>
</form>

<div class="log">
    <?php foreach ( $results as $result ): ?>
        <div class="log-<?php echo $result['result'] == W3TC_CDN_RESULT_OK ? 'success' : 'error'?>">
            <?php echo htmlspecialchars( $result['remote_path'] ); ?>
            <strong><?php echo htmlspecialchars( $result['error'] ); ?></strong>
        </div>
    <?php endforeach; ?>
</div>

<?php include W3TC_INC_DIR . '/popup/common/footer.php'; ?>