HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/plugins/google-sitemap-generator/sitemap-wpmu.php
<?php
/**
 * $Id: sitemap-wpmu.php 534582 2012-04-21 22:25:36Z arnee $
 *
 * Google XML Sitemaps Generator for WordPress MU activation
 * ==============================================================================
 *
 * If you want to use this plugin with a automatic network-wide activation, copy the "google-sitemaps-generator" directory
 * in wp-content/mu-plugins and copy this file into wp-content/mu-plugins directly:
 *
 * + wp-content/
 * | + mu-plugins/
 * | | - sitemap-wpmu.php
 * | | + google-sitemap-generator/
 * | | | - sitemap.php
 * | | | - [...]
 *
 * All files in the mu-plugins directory are included for all sites by WordPress by default, so there is no need to
 * activate this plugin anymore (and it also can not be deactivated).
 *
 * @package Sitemap
 */

if ( ! defined( 'WPINC' ) ) {
	return;
}

$gsg_file = dirname( __FILE__ ) . '/google-sitemap-generator/sitemap.php';

if ( file_exists( $gsg_file ) ) {
	require_once $gsg_file;
} else {
	// phpcs:disable
	esc_html( trigger_error( 'XML Sitemap Generator was loaded via mu-plugins directory, but the plugin was not found under $gsg_file', E_USER_WARNING ) );
	// phpcs:enable
}