HEX
Server: Apache
System: Linux digivps 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC 2025 x86_64
User: www (1000)
PHP: 8.3.15
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/healthyton.com/wp-content/plugins/w3-total-cache/Cdnfsd_TransparentCDN_Page_View.js
/**
 * File: Cdnfsd_TransparentCDN_Page_View.js
 *
 * @since 0.15.0
 */
jQuery( document ).ready( function( $ ) {
	box = document.getElementById( 'tcdn_test_status' );

	if ( box ){
		box.innerHTML = transparent_configuration_strings.test_string;

		$( '#transparentcdn_test' ).on( 'click', function( e ) {
			var url = 'https://api.transparentcdn.com/v1/oauth2/access_token/',
				p = document.getElementById( 'tcdn_test_text' ),
				client_id = 'client_id' +
					'=' +
					document.getElementById( 'cdnfsd_transparentcdn_clientid' ).value,
				client_secret = 'client_secret' +
					'=' +
					document.getElementById( 'cdnfsd_transparentcdn_clientsecret' ).value,
				grant_type = 'grant_type=client_credentials',
				params = grant_type +
					'&' +
					client_id +
					'&' +
					client_secret,
				req = new XMLHttpRequest();

			e.preventDefault();

			req.open( 'POST', url, true );
			req.setRequestHeader( 'Content-type', 'application/x-www-form-urlencoded' );
			req.onreadystatechange = function(e) {
				if ( 4 == req.readyState ) {
					if ( 200 == req.status ) {
						box.innerHTML = transparent_configuration_strings.test_success;
						box.className = 'w3tc-status w3tc-success';
					} else {
						box.innerHTML = transparent_configuration_strings.test_failure;
						box.className = 'w3tc-status w3tc-error';
					}
				}
			};
			req.send( params );
		});
	}
});