| Server IP : 8.134.250.228 / Your IP : 216.73.216.245 Web Server : Apache System : Linux iZ7xv33p9e9ivk7yhmj7ibZ 5.10.134-18.al8.x86_64 #1 SMP Fri Dec 13 16:56:53 CST 2024 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : 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 MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/www.gobluemade.com/wp-content/plugins/xml-sitemap-feed/inc/ |
Upload File : |
<?php
/**
* Debugging Functions
*
* @package XML Sitemap & Google News
* @since 5.4
*/
/**
* Error messages for Nginx Helper Purge URLs
*
* @param array $urls Purged URLs.
*/
function xmlsf_debug_nginx_helper_purge_urls( $urls ) {
if ( ! WP_DEBUG_LOG ) {
return;
}
error_log( 'NGINX Helper purge urls array:' );
error_log( print_r( $urls, true ) );
}
add_action( 'xmlsf_nginx_helper_purge_urls', 'xmlsf_debug_nginx_helper_purge_urls' );
/**
* Usage info for debugging
*
* @since 5.4
* @return void
*/
function xmlsf_debug_usage() {
global $wpdb, $EZSQL_ERROR;
$num = get_num_queries();
$limit = ini_get( 'memory_limit' );
// Query errors.
$err = 'None encountered.';
if ( is_array( $EZSQL_ERROR ) && count( $EZSQL_ERROR ) ) {
$err = '';
$i = 1;
foreach ( $EZSQL_ERROR as $e ) {
$err .= PHP_EOL . $i . ': ' . implode( PHP_EOL, $e ) . PHP_EOL;
++$i;
}
}
// Saved queries.
if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) {
$saved = PHP_EOL . print_r( $wpdb->queries, true );
} else {
$saved = 'Set SAVEQUERIES to show saved database queries here.';
}
// Memory usage.
if ( function_exists( 'memory_get_peak_usage' ) ) {
$mem = round( memory_get_peak_usage() / 1024 / 1024, 2 ) . 'M';
} else {
$mem = 'Not availabe.';
}
// System load.
if ( function_exists( 'sys_getloadavg' ) ) {
$load = sys_getloadavg()[0];
} else {
$load = 'Not available.';
}
echo '<!-- Queries executed: ' . esc_xml( $num ) . ' | Peak memory usage: ' . esc_xml( $mem ) . '| Memory limit: ' . esc_xml( $limit ) . ' -->' . PHP_EOL;
echo '<!-- Query errors: ' . esc_xml( $err ) . ' -->' . PHP_EOL;
echo '<!-- Queries: ' . $saved . ' -->' . PHP_EOL; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<!-- Average system load during the last minute: ' . esc_xml( $load ) . ' -->' . PHP_EOL;
}
add_action(
'xmlsf_sitemap_loaded',
function () {
WP_DEBUG_LOG && add_action( 'shutdown', 'xmlsf_debug_usage' );
}
);
add_action(
'xmlsf_sitemap_news_loaded',
function () {
WP_DEBUG_LOG && add_action( 'shutdown', 'xmlsf_debug_usage' );
}
);
add_action(
'xmlsf_install',
function () {
// Kilroy was here.
WP_DEBUG_LOG && error_log( 'XML Sitemap Feeds version ' . XMLSF_VERSION . ' installed.' );
}
);
add_action(
'xmlsf_upgrade',
function ( $db_version ) {
// Kilroy was here.
WP_DEBUG_LOG && error_log( 'XML Sitemap Feeds upgraded from ' . $db_version . ' to ' . XMLSF_VERSION );
}
);