Server IP : 85.214.239.14 / Your IP : 18.188.198.173 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/wp-content/plugins/health-check/pages/ |
Upload File : |
<?php /** * The PHPInfo tab contents. * * @package Health Check */ // Make sure the file is not directly accessible. if ( ! defined( 'ABSPATH' ) ) { die( 'We\'re sorry, but you can not directly access this file.' ); } ?> <div class="health-check-body"> <h2> <?php esc_html_e( 'Extended PHP Information', 'health-check' ); ?> </h2> <?php if ( ! function_exists( 'phpinfo' ) ) { ?> <div class="notice notice-error inline"> <p> <?php esc_html_e( 'The phpinfo() function has been disabled by your host. Please contact the host if you need more information about your setup.', 'health-check' ); ?> </p> </div> <?php } else { ob_start(); phpinfo(); $phpinfo_raw = ob_get_clean(); // Extract the body of the `phpinfo()` call, to avoid all the styles they introduce. preg_match_all( '/<body[^>]*>(.*)<\/body>/siU', $phpinfo_raw, $phpinfo ); // Extract the styles `phpinfo()` creates for this page. preg_match_all( '/<style[^>]*>(.*)<\/style>/siU', $phpinfo_raw, $styles ); // We remove various styles that break the visual flow of wp-admin. $remove_patterns = array( "/a:.+?\n/si", "/body.+?\n/si", ); // Output the styles as an inline style block. if ( isset( $styles[1][0] ) ) { $styles = preg_replace( $remove_patterns, '', $styles[1][0] ); echo '<style type="text/css">' . $styles . '</style>'; } // Output the actual phpinfo data. if ( isset( $phpinfo[1][0] ) ) { echo $phpinfo[1][0]; } ?> <?php } ?> </div>