WS_OK_7.4.33 HEX
HEX
Server: nginx/1.21.4
System: Linux v12674 6.8.0-85-generic #85-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 18 15:26:59 UTC 2025 x86_64
User: endtheignorance (1014)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v12674/lcaliceaunties/public_html/wp-content/plugins/jetpack/_inc/lib/debugger.php
<?php
/**
 * Loading the various functions used for Jetpack Debugging.
 *
 * @package automattic/jetpack
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

/* Jetpack Connection Testing Framework */
require_once __DIR__ . '/debugger/class-jetpack-cxn-test-base.php';
/* Jetpack Connection Tests */
require_once __DIR__ . '/debugger/class-jetpack-cxn-tests.php';
/* Jetpack Debug Data */
require_once __DIR__ . '/debugger/class-jetpack-debug-data.php';
/* The "In-Plugin Debugger" admin page. */
require_once __DIR__ . '/debugger/class-jetpack-debugger.php';

add_filter( 'debug_information', array( 'Jetpack_Debug_Data', 'core_debug_data' ) );

/*
 * Use the beta support group URL for development versions of Jetpack.
 */
add_filter(
	'jetpack_connection_support_url',
	function ( $url ) {
		if ( Jetpack::is_development_version() ) {
			return Automattic\Jetpack\Redirect::get_url( 'jetpack-contact-support-beta-group' );
		}
		return $url;
	}
);

/*
 * Provide the Jetpack reconnect URL for connection health test failures.
 */
add_filter(
	'jetpack_connection_reconnect_url',
	function () {
		return admin_url( 'admin.php?page=jetpack#/reconnect' );
	}
);

// Note: Jetpack-specific test registration via jetpack_connection_tests_loaded
// has moved to class.jetpack.php so it runs on all requests (not just admin).