Make WordPress Core

Ticket #39165: 39165.11.patch

File 39165.11.patch, 33.4 KB (added by Clorith, 7 years ago)
  • src/wp-admin/css/debug.css

     
     1body.info-php tbody td {
     2    width: 80%;
     3}
     4
     5body.info-php tbody td ul,
     6body.info-php tbody td ol {
     7    margin: 0;
     8}
     9
     10body.info-php thead th:first-child,
     11body.info-php tbody td:first-child {
     12    width: 20%;
     13}
     14
     15#wpfooter #footer-debug {
     16    margin-left: 10px;
     17}
  • src/wp-admin/admin-footer.php

     
    4343                echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );
    4444                ?>
    4545        </p>
     46    <p id="footer-debug" class="alignright">
     47                <?php
     48                printf(
     49                        '<a href="%s">%s</a>',
     50                        esc_url( admin_url( 'info.php' ) ),
     51                        __( 'Show debug info' )
     52                )
     53                ?>
     54    </p>
    4655        <p id="footer-upgrade" class="alignright">
    4756                <?php
    4857                /**
  • src/wp-includes/script-loader.php

     
    10681068        $styles->add( 'site-icon', "/wp-admin/css/site-icon$suffix.css" );
    10691069        $styles->add( 'l10n', "/wp-admin/css/l10n$suffix.css" );
    10701070        $styles->add( 'code-editor', "/wp-admin/css/code-editor$suffix.css", array( 'wp-codemirror' ) );
     1071        $styles->add( 'debug', "/wp-admin/css/debug$suffix.css" );
    10711072
    1072         $styles->add( 'wp-admin', false, array( 'dashicons', 'common', 'forms', 'admin-menu', 'dashboard', 'list-tables', 'edit', 'revisions', 'media', 'themes', 'about', 'nav-menus', 'widgets', 'site-icon', 'l10n' ) );
     1073        $styles->add( 'wp-admin', false, array( 'dashicons', 'common', 'forms', 'admin-menu', 'dashboard', 'list-tables', 'edit', 'revisions', 'media', 'themes', 'about', 'nav-menus', 'widgets', 'site-icon', 'l10n', 'debug' ) );
    10731074
    10741075        $styles->add( 'login', "/wp-admin/css/login$suffix.css", array( 'dashicons', 'buttons', 'forms', 'l10n' ) );
    10751076        $styles->add( 'install', "/wp-admin/css/install$suffix.css", array( 'buttons' ) );
  • src/wp-admin/info.php

     
     1<?php
     2/**
     3 * Get system status for debugging and support.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
     9/** WordPress Administration Bootstrap */
     10require_once( dirname( __FILE__ ) . '/admin.php' );
     11
     12if ( ! current_user_can( 'update_core' ) ) {
     13        wp_die( __( 'Sorry, you do not have permission to access this page.' ) );
     14}
     15
     16global $wpdb;
     17
     18$title = __( 'System information' );
     19
     20require_once( ABSPATH . 'wp-admin/admin-header.php' );
     21?>
     22
     23        <div class="wrap">
     24                <h1 class="wp-heading-inline">
     25                        <?php echo esc_html( $title ); ?>
     26
     27                        <?php if ( function_exists( 'phpinfo' ) ) { ?>
     28                                <?php if ( ! isset( $_GET['phpinfo'] ) ) { ?>
     29                                        <a href="<?php echo esc_url( admin_url( 'info.php?phpinfo' ) ); ?>" class="page-title-action"><?php esc_html_e( 'PHP Information' ); ?></a>
     30                                <?php } else { ?>
     31                                        <a href="<?php echo esc_url( admin_url( 'info.php' ) ); ?>" class="page-title-action"><?php esc_html_e( 'Debug Information' ); ?></a>
     32                                <?php } ?>
     33                        <?php } ?>
     34                </h1>
     35
     36                <hr class="wp-header-end">
     37
     38                <?php
     39                if ( ! isset( $_GET['phpinfo'] ) ) {
     40
     41                        global $wpdb;
     42
     43
     44                        $upload_dir = wp_upload_dir();
     45                        if ( file_exists( ABSPATH . 'wp-config.php') ) {
     46                                $wp_config_path = ABSPATH . 'wp-config.php';
     47                        } else if ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
     48                                $wp_config_path = dirname( ABSPATH ) . '/wp-config.php';
     49                        }
     50
     51                        $info = array(
     52                                'wp-core'             => array(
     53                                        'label'  => __( 'WordPress' ),
     54                                        'fields' => array(
     55                                                array(
     56                                                        'label' => __( 'Version' ),
     57                                                        'value' => get_bloginfo( 'version' )
     58                                                ),
     59                                                array(
     60                                                        'label' => __( 'Site Language' ),
     61                                                        'value' => get_locale()
     62                                                ),
     63                                                array(
     64                                                        'label'   => __( 'Home URL' ),
     65                                                        'value'   => get_bloginfo( 'url' ),
     66                                                        'private' => true
     67                                                ),
     68                                                array(
     69                                                        'label'   => __( 'Site URL' ),
     70                                                        'value'   => get_bloginfo( 'wpurl' ),
     71                                                        'private' => true
     72                                                ),
     73                                                array(
     74                                                        'label' => __( 'Permalink structure' ),
     75                                                        'value' => get_option( 'permalink_structure' )
     76                                                ),
     77                                                array(
     78                                                        'label' => __( 'Is this site using HTTPS?' ),
     79                                                        'value' => ( is_ssl() ? __( 'Yes' ) : __( 'No' ) )
     80                                                ),
     81                                                array(
     82                                                        'label' => __( 'Can anyone register on this site?' ),
     83                                                        'value' => ( get_option( 'users_can_register' ) ? __( 'Yes' ) : __( 'No' ) )
     84                                                ),
     85                                                array(
     86                                                        'label' => __( 'Default comment status' ),
     87                                                        'value' => get_option( 'default_comment_status' )
     88                                                ),
     89                                                array(
     90                                                        'label' => __( 'Is this a multisite?' ),
     91                                                        'value' => ( is_multisite() ? __( 'Yes' ) : __( 'No' ) )
     92                                                )
     93                                        ),
     94                                ),
     95                                'wp-dropins'          => array(
     96                                        'label'       => __( 'Drop-ins' ),
     97                                        'description' => __( 'Drop-ins are single files that replace or enhance WordPress features in ways that are not possible for traditional plugins' ),
     98                                        'fields'      => array()
     99                                ),
     100                                'wp-active-theme'     => array(
     101                                        'label'  => __( 'Active Theme' ),
     102                                        'fields' => array()
     103                                ),
     104                                'wp-themes'           => array(
     105                                        'label'      => __( 'Other themes' ),
     106                                        'show_count' => true,
     107                                        'fields'     => array()
     108                                ),
     109                                'wp-mu-plugins'       => array(
     110                                        'label'      => __( 'Must Use Plugins' ),
     111                                        'show_count' => true,
     112                                        'fields'     => array()
     113                                ),
     114                                'wp-plugins-active'   => array(
     115                                        'label'      => __( 'Active Plugins' ),
     116                                        'show_count' => true,
     117                                        'fields'     => array()
     118                                ),
     119                                'wp-plugins-inactive' => array(
     120                                        'label'      => __( 'Inactive Plugins' ),
     121                                        'show_count' => true,
     122                                        'fields'     => array()
     123                                ),
     124                                'wp-media'            => array(
     125                                        'label'  => __( 'Media handling' ),
     126                                        'fields' => array()
     127                                ),
     128                                'wp-server'           => array(
     129                                        'label'       => __( 'Server' ),
     130                                        'description' => __( 'The options shown below relate to your server setup. If changes are required, you may need your web host\'s assistance.' ),
     131                                        'fields'      => array()
     132                                ),
     133                                'wp-database'         => array(
     134                                        'label'  => __( 'Database' ),
     135                                        'fields' => array()
     136                                ),
     137                                'wp-constants'        => array(
     138                                        'label'       => __( 'WordPress constants' ),
     139                                        'description' => __( 'These values represent values set in your websites code which affect WordPress in various ways that may be of importance when seeking help with your site.' ),
     140                                        'fields'      => array(
     141                                                array(
     142                                                        'label' => 'ABSPATH',
     143                                                        'value' => ( ! defined( 'ABSPATH' ) ? __( 'Undefined' ) : ABSPATH )
     144                                                ),
     145                                                array(
     146                                                        'label' => 'WP_HOME',
     147                                                        'value' => ( ! defined( 'WP_HOME' ) ? __( 'Undefined' ) : WP_HOME )
     148                                                ),
     149                                                array(
     150                                                        'label' => 'WP_SITEURL',
     151                                                        'value' => ( ! defined( 'WP_SITEURL' ) ? __( 'Undefined' ) : WP_SITEURL )
     152                                                ),
     153                                                array(
     154                                                        'label' => 'WP_DEBUG',
     155                                                        'value' => ( ! defined( 'WP_DEBUG' ) ? __( 'Undefined' ) : ( WP_DEBUG ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     156                                                ),
     157                                                array(
     158                                                        'label' => 'WP_MAX_MEMORY_LIMIT',
     159                                                        'value' => ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ? __( 'Undefined' ) : WP_MAX_MEMORY_LIMIT )
     160                                                ),
     161                                                array(
     162                                                        'label' => 'WP_DEBUG_DISPLAY',
     163                                                        'value' => ( ! defined( 'WP_DEBUG_DISPLAY' ) ? __( 'Undefined' ) : ( WP_DEBUG_DISPLAY ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     164                                                ),
     165                                                array(
     166                                                        'label' => 'WP_DEBUG_LOG',
     167                                                        'value' => ( ! defined( 'WP_DEBUG_LOG' ) ? __( 'Undefined' ) : ( WP_DEBUG_LOG ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     168                                                ),
     169                                                array(
     170                                                        'label' => 'SCRIPT_DEBUG',
     171                                                        'value' => ( ! defined( 'SCRIPT_DEBUG' ) ? __( 'Undefined' ) : ( SCRIPT_DEBUG ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     172                                                ),
     173                                                array(
     174                                                        'label' => 'WP_CACHE',
     175                                                        'value' => ( ! defined( 'WP_CACHE' ) ? __( 'Undefined' ) : ( WP_CACHE ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     176                                                ),
     177                                                array(
     178                                                        'label' => 'CONCATENATE_SCRIPTS',
     179                                                        'value' => ( ! defined( 'CONCATENATE_SCRIPTS' ) ? __( 'Undefined' ) : ( CONCATENATE_SCRIPTS ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     180                                                ),
     181                                                array(
     182                                                        'label' => 'COMPRESS_SCRIPTS',
     183                                                        'value' => ( ! defined( 'COMPRESS_SCRIPTS' ) ? __( 'Undefined' ) : ( COMPRESS_SCRIPTS ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     184                                                ),
     185                                                array(
     186                                                        'label' => 'COMPRESS_CSS',
     187                                                        'value' => ( ! defined( 'COMPRESS_CSS' ) ? __( 'Undefined' ) : ( COMPRESS_CSS ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     188                                                ),
     189                                                array(
     190                                                        'label' => 'WP_LOCAL_DEV',
     191                                                        'value' => ( ! defined( 'WP_LOCAL_DEV' ) ? __( 'Undefined' ) : ( WP_LOCAL_DEV ? __( 'Enabled' ) : __( 'Disabled' ) ) )
     192                                                )
     193                                        )
     194                                ),
     195                                'wp-filesystem' => array(
     196                                        'label'       => __( 'Filesystem permissions' ),
     197                                        'description' => __( 'The status of various locations WordPress needs to write files in various scenarios.' ),
     198                                        'fields'      => array(
     199                                                array(
     200                                                        'label' => __( 'The main WordPress directory' ),
     201                                                        'value' => ( wp_is_writable( ABSPATH ) ? __( 'Writable' ) : __( 'Not writable' ) )
     202                                                ),
     203                                                array(
     204                                                        'label' => __( 'The wp-content directory' ),
     205                                                        'value' => ( wp_is_writable( WP_CONTENT_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) )
     206                                                ),
     207                                                array(
     208                                                        'label' => __( 'The uploads directory' ),
     209                                                        'value' => ( wp_is_writable( $upload_dir['basedir'] ) ? __( 'Writable' ) : __( 'Not writable' ) )
     210                                                ),
     211                                                array(
     212                                                        'label' => __( 'The plugins directory' ),
     213                                                        'value' => ( wp_is_writable( WP_PLUGIN_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) )
     214                                                ),
     215                                                array(
     216                                                        'label' => __( 'The themes directory' ),
     217                                                        'value' => ( wp_is_writable( get_template_directory() . '/..' ) ? __( 'Writable' ) : __( 'Not writable' ) )
     218                                                )
     219                                        )
     220                                ),
     221                        );
     222
     223
     224
     225                        if ( is_multisite() ) {
     226                                $network_query = new WP_Network_Query();
     227                                $network_ids   = $network_query->query( array(
     228                                        'fields'        => 'ids',
     229                                        'number'        => 100,
     230                                        'no_found_rows' => false,
     231                                ) );
     232
     233                                $site_count = 0;
     234                                foreach ( $network_ids AS $network_id ) {
     235                                        $site_count += get_blog_count( $network_id );
     236                                }
     237
     238                                $info['wp-core']['fields'][] = array(
     239                                        'label' => __( 'User Count' ),
     240                                        'value' => get_user_count()
     241                                );
     242                                $info['wp-core']['fields'][] = array(
     243                                        'label' => __( 'Site Count' ),
     244                                        'value' => $site_count
     245                                );
     246                                $info['wp-core']['fields'][] = array(
     247                                        'label' => __( 'Network Count' ),
     248                                        'value' => $network_query->found_networks
     249                                );
     250                        } else {
     251                                $user_count = count_users();
     252
     253                                $info['wp-core']['fields'][] = array(
     254                                        'label' => __( 'User Count' ),
     255                                        'value' => $user_count['total_users']
     256                                );
     257                        }
     258
     259                        // WordPress features requiring processing.
     260                        $wp_dotorg = wp_remote_get( 'https://wordpress.org', array( 'timeout' => 10 ) );
     261                        if ( ! is_wp_error( $wp_dotorg ) ) {
     262                                $info['wp-core']['fields'][] = array(
     263                                        'label' => __( 'Communication with WordPress.org' ),
     264                                        'value' => sprintf(
     265                                                __( 'WordPress.org is reachable' )
     266                                        )
     267                                );
     268                        } else {
     269                                $info['wp-core']['fields'][] = array(
     270                                        'label' => __( 'Communication with WordPress.org' ),
     271                                        'value' => sprintf(
     272                                        // translators: %1$s: The IP address WordPress.org resolves to. %2$s: The error returned by the lookup.
     273                                                __( 'Unable to reach WordPress.org at %1$s: %2$s' ),
     274                                                gethostbyname( 'wordpress.org' ),
     275                                                $wp_dotorg->get_error_message()
     276                                        )
     277                                );
     278                        }
     279
     280                        // Get drop-ins.
     281                        $dropins            = get_dropins();
     282                        $dropin_description = _get_dropins();
     283                        foreach ( $dropins AS $dropin_key => $dropin ) {
     284                                $info['wp-dropins']['fields'][] = array(
     285                                        'label' => $dropin_key,
     286                                        'value' => $dropin_description[ $dropin_key ][0]
     287                                );
     288                        }
     289
     290                        // Populate the media fields.
     291                        $info['wp-media']['fields'][] = array(
     292                                'label' => __( 'Active editor' ),
     293                                'value' => _wp_image_editor_choose()
     294                        );
     295
     296                        // Get ImageMagic information, if available.
     297                        if ( class_exists( 'Imagick' ) ) {
     298                                // Save the Imagick instance for later use.
     299                                $imagick = new Imagick();
     300                                $imagick_version = $imagick->getVersion();
     301                        } else {
     302                                $imagick_version = 'Imagick not available';
     303                        }
     304                        $info['wp-media']['fields'][] = array(
     305                                'label' => __( 'Imagick Module Version' ),
     306                                'value' => ( is_array( $imagick_version ) ? $imagick_version['versionNumber'] : $imagick_version )
     307                        );
     308                        $info['wp-media']['fields'][] = array(
     309                                'label' => __( 'ImageMagick Version' ),
     310                                'value' => ( is_array( $imagick_version )  ? $imagick_version['versionString'] : $imagick_version )
     311                        );
     312
     313                        // If Imagick is used as our editor, provide some more information about its limitations.
     314                        if ( 'WP_Image_Editor_Imagick' === _wp_image_editor_choose() && isset( $imagick ) && $imagick instanceof Imagick ) {
     315                                $limits = array(
     316                                        'area'   => ( defined( 'imagick::RESOURCETYPE_AREA' ) ? size_format( $imagick->getResourceLimit( imagick::RESOURCETYPE_AREA ) ) : 'Not Available' ),
     317                                        'disk'   => ( defined( 'imagick::RESOURCETYPE_DISK' ) ? $imagick->getResourceLimit( imagick::RESOURCETYPE_DISK ) : 'Not Available' ),
     318                                        'file'   => ( defined( 'imagick::RESOURCETYPE_FILE' ) ? $imagick->getResourceLimit( imagick::RESOURCETYPE_FILE ) : 'Not Available' ),
     319                                        'map'    => ( defined( 'imagick::RESOURCETYPE_MAP' ) ? size_format( $imagick->getResourceLimit( imagick::RESOURCETYPE_MAP ) ) : 'Not Available' ),
     320                                        'memory' => ( defined( 'imagick::RESOURCETYPE_MEMORY' ) ? size_format( $imagick->getResourceLimit( imagick::RESOURCETYPE_MEMORY ) ) : 'Not Available' ),
     321                                        'thread' => ( defined( 'imagick::RESOURCETYPE_THREAD' ) ? $imagick->getResourceLimit( imagick::RESOURCETYPE_THREAD ) : 'Not Available' )
     322                                );
     323
     324                                $info['wp-media']['fields'][] = array(
     325                                        'label' => __( 'Imagick Resource Limits' ),
     326                                        'value' => $limits
     327                                );
     328                        }
     329
     330                        // Get GD information, if available.
     331                        if ( function_exists( 'gd_info' ) ) {
     332                                $gd = gd_info();
     333                        }
     334                        else {
     335                                $gd = false;
     336                        }
     337                        $info['wp-media']['fields'][] = array(
     338                                'label' => __( 'GD Version' ),
     339                                'value' => ( is_array( $gd ) ? $gd['GD Version'] : 'GD not available' )
     340                        );
     341
     342                        // Get Ghostscript information, if available.
     343                        if ( function_exists( 'exec' ) ) {
     344                                $gs = exec( 'gs --version' );
     345                                $gs = ( ! empty( $gs ) ? $gs : 'Not available' );
     346                        }
     347                        else {
     348                                $gs = __( 'Unable to determine if Ghostscript is installed' );
     349                        }
     350                        $info['wp-media']['fields'][] = array(
     351                                'label' => __( 'Ghostscript Version' ),
     352                                'value' => $gs
     353                        );
     354
     355                        // Populate the server debug fields.
     356                        $info['wp-server']['fields'][] = array(
     357                                'label' => __( 'Server architecture' ),
     358                                'value' => ( ! function_exists( 'php_uname' ) ? __( 'Unable to determine server architecture' ) : sprintf( '%s %s %s', php_uname( 's' ), php_uname( 'r' ), php_uname( 'm' ) ) )
     359                        );
     360                        $info['wp-server']['fields'][] = array(
     361                                'label' => __( 'PHP Version' ),
     362                                'value' => ( ! function_exists( 'phpversion' ) ? __( 'Unable to determine PHP version' ) : sprintf(
     363                                        '%s %s',
     364                                        phpversion(),
     365                                        ( 64 === PHP_INT_SIZE * 8 ? __( '(Supports 64bit values)' ) : '' )
     366                                )
     367                                )
     368                        );
     369                        $info['wp-server']['fields'][] = array(
     370                                'label' => __( 'PHP SAPI' ),
     371                                'value' => ( ! function_exists( 'php_sapi_name' ) ? __( 'Unable to determine PHP SAPI' ) : php_sapi_name() )
     372                        );
     373
     374                        if ( ! function_exists( 'ini_get' ) ) {
     375                                $info['wp-server']['fields'][] = array(
     376                                        'label' => __( 'Server settings' ),
     377                                        'value' => __( 'Unable to determine some settings as the ini_get() function has been disabled' )
     378                                );
     379                        } else {
     380                                $info['wp-server']['fields'][] = array(
     381                                        'label' => __( 'PHP max input variables' ),
     382                                        'value' => ini_get( 'max_input_vars' )
     383                                );
     384                                $info['wp-server']['fields'][] = array(
     385                                        'label' => __( 'PHP time limit' ),
     386                                        'value' => ini_get( 'max_execution_time' )
     387                                );
     388                                $info['wp-server']['fields'][] = array(
     389                                        'label' => __( 'PHP memory limit' ),
     390                                        'value' => ini_get( 'memory_limit' )
     391                                );
     392                                $info['wp-server']['fields'][] = array(
     393                                        'label' => __( 'Max input time' ),
     394                                        'value' => ini_get( 'max_input_time' )
     395                                );
     396                                $info['wp-server']['fields'][] = array(
     397                                        'label' => __( 'Upload max filesize' ),
     398                                        'value' => ini_get( 'upload_max_filesize' )
     399                                );
     400                                $info['wp-server']['fields'][] = array(
     401                                        'label' => __( 'PHP post max size' ),
     402                                        'value' => ini_get( 'post_max_size' )
     403                                );
     404                        }
     405
     406                        if ( function_exists( 'curl_version' ) ) {
     407                                $cURL                          = curl_version();
     408                                $info['wp-server']['fields'][] = array(
     409                                        'label' => __( 'cURL Version' ),
     410                                        'value' => sprintf( '%s %s', $cURL['version'], $cURL['ssl_version'] )
     411                                );
     412                        } else {
     413                                $info['wp-server']['fields'][] = array(
     414                                        'label' => __( 'cURL Version' ),
     415                                        'value' => __( 'Your server does not support cURL' )
     416                                );
     417                        }
     418
     419                        $info['wp-server']['fields'][] = array(
     420                                'label' => __( 'SUHOSIN installed' ),
     421                                'value' => ( ( extension_loaded( 'suhosin' ) || ( defined( 'SUHOSIN_PATCH' ) && constant( 'SUHOSIN_PATCH' ) ) ) ? __( 'Yes' ) : __( 'No' ) )
     422                        );
     423
     424                        $info['wp-server']['fields'][] = array(
     425                                'label' => __( 'Is the Imagick library available' ),
     426                                'value' => ( extension_loaded( 'imagick' ) ? __( 'Yes' ) : __( 'No' ) )
     427                        );
     428
     429
     430                        // Populate the database debug fields.
     431                        if ( is_resource( $wpdb->dbh ) ) {
     432                                // Old mysql extension.
     433                                $extension = 'mysql';
     434                        } else if ( is_object( $wpdb->dbh ) ) {
     435                                // mysqli or PDO.
     436                                $extension = get_class( $wpdb->dbh );
     437                        } else {
     438                                // Unknown sql extension.
     439                                $extension = null;
     440                        }
     441
     442                        if ( method_exists( $wpdb, 'db_version' ) ) {
     443                                if ( $wpdb->use_mysqli ) {
     444                                        $server = mysqli_get_server_info( $wpdb->dbh );
     445                                } else {
     446                                        $server = mysql_get_server_info( $wpdb->dbh );
     447                                }
     448                        } else {
     449                                $server = null;
     450                        }
     451
     452                        if ( isset( $wpdb->use_mysqli ) && $wpdb->use_mysqli ) {
     453                                $client_version = $wpdb->dbh->client_info;
     454                        } else {
     455                                if ( preg_match( '|[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}|', mysql_get_client_info(), $matches ) ) {
     456                                        $client_version = $matches[0];
     457                                } else {
     458                                        $client_version = null;
     459                                }
     460                        }
     461
     462                        $info['wp-database']['fields'][] = array(
     463                                'label' => __( 'Extension' ),
     464                                'value' => $extension
     465                        );
     466                        $info['wp-database']['fields'][] = array(
     467                                'label' => __( 'Server version' ),
     468                                'value' => $server
     469                        );
     470                        $info['wp-database']['fields'][] = array(
     471                                'label' => __( 'Client version' ),
     472                                'value' => $client_version
     473                        );
     474                        $info['wp-database']['fields'][] = array(
     475                                'label'   => __( 'Database user' ),
     476                                'value'   => $wpdb->dbuser,
     477                                'private' => true
     478                        );
     479                        $info['wp-database']['fields'][] = array(
     480                                'label'   => __( 'Database host' ),
     481                                'value'   => $wpdb->dbhost,
     482                                'private' => true
     483                        );
     484                        $info['wp-database']['fields'][] = array(
     485                                'label'   => __( 'Database name' ),
     486                                'value'   => $wpdb->dbname,
     487                                'private' => true
     488                        );
     489                        $info['wp-database']['fields'][] = array(
     490                                'label' => __( 'Database prefix' ),
     491                                'value' => $wpdb->prefix
     492                        );
     493
     494
     495                        // List must use plugins if there are any.
     496                        $mu_plugins = get_mu_plugins();
     497
     498                        foreach ( $mu_plugins AS $plugin_path => $plugin ) {
     499                                $plugin_version = $plugin['Version'];
     500                                $plugin_author = $plugin['Author'];
     501
     502                                $plugin_version_string = __( 'No version or author information available' );
     503
     504                                if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     505                                        // translators: %1$s: Plugin version number. %2$s: Plugin author name.
     506                                        $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author );
     507                                }
     508                                if ( empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     509                                        // translators: %s: Plugin author name.
     510                                        $plugin_version_string = sprintf( __( 'By %s' ), $plugin_author );
     511                                }
     512                                if ( ! empty( $plugin_version ) && empty( $plugin_author ) ) {
     513                                        // translators: %s: Plugin version number.
     514                                        $plugin_version_string = sprintf( __( 'Version %s' ), $plugin_version );
     515                                }
     516
     517                                $info['wp-mu-plugins']['fields'][] = array(
     518                                        'label' => $plugin['Name'],
     519                                        'value' => $plugin_version_string
     520                                );
     521                        }
     522
     523
     524                        // List all available plugins.
     525                        $plugins = get_plugins();
     526
     527                        foreach ( $plugins AS $plugin_path => $plugin ) {
     528                                $plugin_part = ( is_plugin_active( $plugin_path ) ) ? 'wp-plugins-active' : 'wp-plugins-inactive';
     529
     530                                $plugin_version = $plugin['Version'];
     531                                $plugin_author = $plugin['Author'];
     532
     533                                $plugin_version_string = __( 'No version or author information available' );
     534
     535                                if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     536                                        // translators: %1$s: Plugin version number. %2$s: Plugin author name.
     537                                        $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author );
     538                                }
     539                                if ( empty( $plugin_version ) && ! empty( $plugin_author ) ) {
     540                                        // translators: %s: Plugin author name.
     541                                        $plugin_version_string = sprintf( __( 'By %s' ), $plugin_author );
     542                                }
     543                                if ( ! empty( $plugin_version ) && empty( $plugin_author ) ) {
     544                                        // translators: %s: Plugin version number.
     545                                        $plugin_version_string = sprintf( __( 'Version %s' ), $plugin_version );
     546                                }
     547
     548
     549                                $info[ $plugin_part ]['fields'][] = array(
     550                                        'label' => $plugin['Name'],
     551                                        'value' => $plugin_version_string
     552                                );
     553                        }
     554
     555
     556                        // Populate the section for the currently active theme.
     557                        global $_wp_theme_features;
     558                        $theme_features = array();
     559                        if ( ! empty( $_wp_theme_features ) ) {
     560                                foreach ( $_wp_theme_features AS $feature => $options ) {
     561                                        $theme_features[] = $feature;
     562                                }
     563                        }
     564
     565                        $active_theme                      = wp_get_theme();
     566                        $info['wp-active-theme']['fields'] = array(
     567                                array(
     568                                        'label' => __( 'Name' ),
     569                                        'value' => $active_theme->Name
     570                                ),
     571                                array(
     572                                        'label' => __( 'Version' ),
     573                                        'value' => $active_theme->Version
     574                                ),
     575                                array(
     576                                        'label' => __( 'Author' ),
     577                                        'value' => wp_kses( $active_theme->Author, array() )
     578                                ),
     579                                array(
     580                                        'label' => __( 'Author website' ),
     581                                        'value' => ( $active_theme->offsetGet( 'Author URI' ) ? $active_theme->offsetGet( 'Author URI' ) : __( 'Undefined' ) )
     582                                ),
     583                                array(
     584                                        'label' => __( 'Parent theme' ),
     585                                        'value' => ( $active_theme->parent_theme ? $active_theme->parent_theme : __( 'Not a child theme' ) )
     586                                ),
     587                                array(
     588                                        'label' => __( 'Supported theme features' ),
     589                                        'value' => implode( ', ', $theme_features )
     590                                )
     591                        );
     592
     593                        // Populate a list of all themes available in the install.
     594                        $all_themes = wp_get_themes();
     595
     596                        foreach ( $all_themes AS $theme_slug => $theme ) {
     597                                // Ignore the currently active theme from the list of all themes.
     598                                if ( $active_theme->stylesheet == $theme_slug ) {
     599                                        continue;
     600                                }
     601
     602                                $theme_version = $theme->Version;
     603                                $theme_author = $theme->Author;
     604
     605                                $theme_version_string = __( 'No version or author information available' );
     606
     607                                if ( ! empty( $theme_version ) && ! empty( $theme_author ) ) {
     608                                        // translators: %1$s: Theme version number. %2$s: Theme author name.
     609                                        $theme_version_string = sprintf( __( 'Version %1$s by %2$s' ), $theme_version, wp_kses( $theme_author, array() ) );
     610                                }
     611                                if ( empty( $theme_version ) && ! empty( $theme_author ) ) {
     612                                        // translators: %s: Theme author name.
     613                                        $theme_version_string = sprintf( __( 'By %s' ), wp_kses( $theme_author, array() ) );
     614                                }
     615                                if ( ! empty( $theme_version ) && empty( $theme_author ) ) {
     616                                        // translators: %s: Theme version number.
     617                                        $theme_version_string = sprintf( __( 'Version %s' ), $theme_version );
     618                                }
     619
     620
     621                                $info['wp-themes']['fields'][] = array(
     622                                        // translators: %1$s: Theme name. %2$s: Theme slug.
     623                                        'label' => sprintf( __( '%1$s (%2$s)' ), $theme->Name, $theme_slug ),
     624                                        'value' => $theme_version_string
     625                                );
     626                        }
     627
     628                        // Add more filesystem checks
     629                        if ( defined( 'WPMU_PLUGIN_DIR' ) && is_dir( WPMU_PLUGIN_DIR ) ) {
     630                                $info['wp-filesystem']['fields'][] = array(
     631                                        'label' => __( 'The Must Use Plugins directory' ),
     632                                        'value' => ( wp_is_writable( WPMU_PLUGIN_DIR ) ? __( 'Writable' ) : __( 'Not writable' ) )
     633                                );
     634                        }
     635
     636
     637                        /**
     638                         * Add or modify new debug sections.
     639                         *
     640                         * Plugin or themes may wish to introduce their own debug information without creating additional admin pages for this
     641                         * kind of information as it is rarely needed, they can then utilize this filter to introduce their own sections.
     642                         *
     643                         * This filter intentionally does not include the fields introduced by core as those should always be un-modified
     644                         * and reliable for support related scenarios, take note that the core fields will take priority if a filtered value
     645                         * is trying to use the same array keys.
     646                         *
     647                         * Array keys added by core are all prefixed with `wp-`, plugins and themes are encouraged to use their own slug as
     648                         * a prefix, both for consistency as well as avoiding key collisions.
     649                         *
     650                         * @since 5.0.0
     651                         *
     652                         * @param array $args {
     653                         *     The debug information to be added to the core information page.
     654                         *
     655                         *     @type string  $label        The title for this section of the debug output.
     656                         *     @type string  $description  Optional. A description for your information section which may contain basic HTML
     657                         *                                 markup: `em`, `strong` and `a` for linking to documentation or putting emphasis.
     658                         *     @type boolean $show_count   Optional. If set to `true` the amount of fields will be included in the title for
     659                         *                                 this section.
     660                         *     @type boolean $private      Optional. If set to `true` the section and all associated fields will be excluded
     661                         *                                 from the copy-paste text area.
     662                         *     @type array   $fields {
     663                         *         An associative array containing the data to be displayed.
     664                         *
     665                         *         @type string  $label    The label for this piece of information.
     666                         *         @type string  $value    The output that is of interest for this field.
     667                         *         @type boolean $private  Optional. If set to `true` the field will not be included in the copy-paste text area
     668                         *                                 on top of the page, allowing you to show, for example, API keys here.
     669                         *     }
     670                         * }
     671                         */
     672                        $external_info = apply_filters( 'debug_information', array() );
     673
     674                        // Merge the core and external debug fields.
     675                        $info = array_replace_recursive( $info, array_replace_recursive( $external_info, $info ) );
     676                        ?>
     677
     678
     679                        <div class="notice notice-info">
     680                                <p>
     681                                        <?php esc_html_e( 'The system information shown below can also be copied and pasted into support requests such as on the WordPress.org forums, or to your theme and plugin developers.' ); ?>
     682                                </p>
     683                                <p>
     684                                        <button type="button" class="button button-primary" onclick="document.getElementById('system-information-copy-wrapper').style.display = 'block'; this.style.display = 'none';"><?php esc_html_e( 'Show copy and paste field' ); ?></button>
     685                                </p>
     686
     687                                <div id="system-information-copy-wrapper" style="display: none;">
     688                                <textarea id="system-information-copy-field" class="widefat" rows="10">`
     689<?php
     690                                        foreach ( $info AS $section => $details ) {
     691                                                // Skip this section if there are no fields, or the section has been declared as private.
     692                                                if ( empty( $details['fields'] ) || ( isset( $details['private'] ) && $details['private'] ) ) {
     693                                                        continue;
     694                                                }
     695
     696                                                printf(
     697                                                        "### %s%s ###\n\n",
     698                                                        $details['label'],
     699                                                        ( isset( $details['show_count'] ) && $details['show_count'] ? sprintf( ' (%d)', count( $details['fields'] ) ) : '' )
     700                                                );
     701
     702                                                foreach ( $details['fields'] AS $field ) {
     703                                                        if ( isset( $field['private'] ) && true === $field['private'] ) {
     704                                                                continue;
     705                                                        }
     706
     707                                                        printf(
     708                                                                "%s: %s\n",
     709                                                                $field['label'],
     710                                                                $field['value']
     711                                                        );
     712                                                }
     713                                                echo "\n";
     714                                        }
     715?>
     716`</textarea>
     717                                        <p>
     718                                                <?php esc_html_e( 'Some information may be filtered out from the list you are about to copy, this is information that may be considered private, and is not meant to be shared in a public forum.' ); ?>
     719                                                <br>
     720                                                <button type="button" class="button button-primary" onclick="document.getElementById('system-information-copy-field').select(); document.execCommand( 'copy' );"><?php esc_html_e( 'Copy' ); ?></button>
     721                                        </p>
     722                                </div>
     723                        </div>
     724
     725                        <div id="system-information-table-of-contents">
     726                                <?php
     727                                $toc = array();
     728
     729                                foreach ( $info AS $section => $details ) {
     730                                        if ( empty( $details['fields'] ) ) {
     731                                                continue;
     732                                        }
     733
     734                                        $toc[] = sprintf(
     735                                                '<a href="#%s" class="debug-toc">%s</a>',
     736                                                esc_attr( $section ),
     737                                                esc_html( $details['label'] )
     738                                        );
     739                                }
     740
     741                                echo implode( ' | ', $toc );
     742                                ?>
     743                        </div>
     744
     745                        <?php
     746                        foreach ( $info AS $section => $details ) {
     747                                if ( ! isset( $details['fields'] ) || empty( $details['fields'] ) ) {
     748                                        continue;
     749                                }
     750
     751                                printf(
     752                                        '<h2 id="%s">%s%s</h2>',
     753                                        esc_attr( $section ),
     754                                        esc_html( $details['label'] ),
     755                                        ( isset( $details['show_count'] ) && $details['show_count'] ? sprintf( ' (%d)', count( $details['fields'] ) ) : '' )
     756                                );
     757
     758                                if ( isset( $details['description'] ) && ! empty( $details['description'] ) ) {
     759                                        printf(
     760                                                '<p>%s</p>',
     761                                                wp_kses( $details['description'], array(
     762                                                        'a'      => array(
     763                                                                'href' => true
     764                                                        ),
     765                                                        'strong' => true,
     766                                                        'em'     => true,
     767                                                ) )
     768                                        );
     769                                }
     770                                ?>
     771                                <table class="widefat striped">
     772                                        <tbody>
     773                                        <?php
     774                                        foreach ( $details['fields'] AS $field ) {
     775                                                printf(
     776                                                        '<tr><td>%s</td><td>%s</td></tr>',
     777                                                        esc_html( $field['label'] ),
     778                                                        esc_html( $field['value'] )
     779                                                );
     780                                        }
     781                                        ?>
     782                                        </tbody>
     783                                </table>
     784                                <span style="display: block; width: 100%; text-align: <?php echo ( is_rtl() ? 'left' : 'right' ); ?>">
     785                                        <a href="#system-information-table-of-contents" class="debug-toc"><?php esc_html_e( 'Return to table of contents' ); ?></a>
     786                                </span>
     787                                <?php
     788                        }
     789                } else {
     790                        if ( ! function_exists( 'phpinfo' ) ) {
     791                        ?>
     792
     793                                <div class="notice notice-error">
     794                                        <p>
     795                                                <?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.' ); ?>
     796                                        </p>
     797                                </div>
     798
     799                        <?php } else { ?>
     800
     801                                <div class="notice notice-warning">
     802                                        <p>
     803                                                <?php esc_html_e( 'Some scenarios require you to look up more detailed server configurations than what is normally required. This page allows you to view all available configuration options for your PHP setup. Please be advised that WordPress does not guarantee that any information shown on this page may not be considered private.' ); ?>
     804                                        </p>
     805                                </div>
     806
     807                                <?php
     808                                ob_start();
     809                                phpinfo();
     810                                $phpinfo_raw = ob_get_clean();
     811
     812                                // Extract the body of the `phpinfo()` call, to avoid all the styles they introduce.
     813                                preg_match_all("/<body[^>]*>(.*)<\/body>/siU", $phpinfo_raw, $phpinfo );
     814
     815                                // Extract the styles `phpinfo()` creates for this page.
     816                                preg_match_all( "/<style[^>]*>(.*)<\/style>/siU", $phpinfo_raw, $styles );
     817
     818                                // We remove various styles that break the visual flow of wp-admin.
     819                                $remove_patterns = array(
     820                                        "/a:.+?\n/si",
     821                                        "/body.+?\n/si"
     822                                );
     823
     824                                // Output the styles as an inline style block.
     825                                if ( isset( $styles[1][0] ) ) {
     826                                        $styles = preg_replace( $remove_patterns, "", $styles[1][0] );
     827
     828                                        echo '<style type="text/css">' . $styles . '</style>';
     829                                }
     830
     831                                // Output the actual phpinfo data.
     832                                if ( isset( $phpinfo[1][0] ) ) {
     833                                        echo $phpinfo[1][0];
     834                                }
     835                                ?>
     836
     837                        <?php } ?>
     838
     839                <?php } ?>
     840        </div>
     841
     842<script type="text/javascript">
     843    jQuery(document).ready(function( $ ) {
     844        $(".debug-toc").click(function (e) {
     845            e.preventDefault();
     846
     847            // Remove the height of the admin bar, and an extra 10px for better positioning.
     848            var offset = $( $(this).attr('href') ).offset().top - $("#wpadminbar").height() - 10;
     849
     850            $('html, body').animate({
     851                scrollTop: offset
     852            }, 1200);
     853        });
     854    });
     855</script>
     856
     857<?php
     858include( ABSPATH . 'wp-admin/admin-footer.php' );