# adminify/4.2.23/Inc/Modules/ServerInformation/ServerInfo_Server_Details.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.2.23. 509 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.2.23/code/Inc/Modules/ServerInformation/ServerInfo_Server_Details.php
- Raw: https://pluginprobe.com/plugins/adminify/4.2.23/raw/Inc/Modules/ServerInformation/ServerInfo_Server_Details.php
- Modified: 2026-05-27T18:54:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/4.2.23/code/Inc/Modules/ServerInformation/ServerInfo_Server_Details.php#L10-L20`.

```php
<?php

namespace PXLBSAdminify\Inc\Modules\ServerInformation;

use PXLBSAdminify\Inc\Classes\ServerInfo;
use PXLBSAdminify\Inc\Utils;
// no direct access allowed
if ( !defined( 'ABSPATH' ) ) {
    exit;
}
/**
 * PXLBSAdminify
 *
 * @package Server Information
 *
 * @author WP Adminify <support@wpadminify.com>
 */
class ServerInfo_Server_Details {
    public function __construct() {
        $this->init();
    }

    public function init() {
        $server_info = new ServerInfo();
        $help = '<span class="dashicons dashicons-editor-help"></span>';
        $enabled = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Enabled', 'adminify' ) . '</span>';
        $disabled = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'Disabled', 'adminify' ) . '</span>';
        $yes = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Yes', 'adminify' ) . '</span>';
        $no = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'No', 'adminify' ) . '</span>';
        $entered = '<span class="adminify-compability enable"><span class="dashicons dashicons-yes"></span> ' . esc_html__( 'Defined', 'adminify' ) . '</span>';
        $not_entered = '<span class="adminify-compability disable"><span class="dashicons dashicons-no"></span> ' . esc_html__( 'Not defined', 'adminify' ) . '</span>';
        $sec_key = '<span class="error"><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Please enter this security key in the wp-confiq.php file', 'adminify' ) . '!</span>';
        ?>

		<div class="wrap">
			<h1> <?php 
        echo esc_html( Utils::admin_page_title( esc_html__( 'Server Info', 'adminify' ) ) );
        ?> </h1>

			<p><?php 
        echo wp_kses_post( 'Interesting information about your web server. You can also use <a href="http://linfo.sourceforge.net/" target="_blank" rel="noopener">linfo</a> or <a href="https://phpsysinfo.github.io/phpsysinfo/" target="_blank" rel="noopener">phpsysinfo</a> to get more information about the web server' );
        ?>.</p>

			<p><?php 
        echo wp_kses_post( 'In the most cases you can modify some server settings like "PHP Memory Limit" or "PHP Post Max Size" by upload and modify a <code>php.ini</code> file in the WordPress <code>/wp-admin/</code> folder. Learn more about <a href="https://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/" target="_blank" rel="noopener">here</a>' );
        ?>.</p>


			<table class="wp-list-table widefat posts mt-6">
				<thead>
					<tr>
						<th style="width: 300px" class="manage-column"><?php 
        echo esc_html__( 'Info', 'adminify' );
        ?></th>
						<th class="manage-column"><?php 
        echo esc_html__( 'Result', 'adminify' );
        ?></th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td><?php 
        esc_html_e( 'OS', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( PHP_OS );
        ?> / <?php 
        echo wp_kses_post( PHP_INT_SIZE * 8 ) . esc_html__( 'Bit OS', 'adminify' ) . ' (' . wp_kses_post( php_uname() ) . ')';
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Software', 'adminify' );
        ?>:</td>
						<td><?php 
        echo esc_html( ( isset( $_SERVER['SERVER_SOFTWARE'] ) ? sanitize_text_field( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ) ) : '' ) );
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'IP Address', 'adminify' );
        ?>:</td>
						<td><?php 
        echo esc_html( ( isset( $_SERVER['SERVER_ADDR'] ) ? sanitize_text_field( wp_unslash( $_SERVER['SERVER_ADDR'] ) ) : '' ) );
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Web Port', 'adminify' );
        ?>:</td>
						<td><?php 
        echo esc_html( ( isset( $_SERVER['SERVER_PORT'] ) ? sanitize_text_field( wp_unslash( $_SERVER['SERVER_PORT'] ) ) : '' ) );
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Date / Time (WP)', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( gmdate( 'Y-m-d H:i:s', time() ) ) . ' (' . wp_kses_post( current_time( 'mysql' ) ) . ')';
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Timezone (WP)', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( date_default_timezone_get() ) . ' (' . wp_kses_post( $server_info->get_wp_timezone() ) . ')';
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Default Timezone is UTC', 'adminify' );
        ?>:</td>
						<td>
					<?php 
        $default_timezone = date_default_timezone_get();
        if ( 'UTC' !== $default_timezone ) {
            echo '<span>' . wp_kses_post( Utils::kses_custom( $no ) ) . sprintf( wp_kses_post( 'Default timezone is %s - it should be UTC', 'adminify' ), esc_html( $default_timezone ) ) . '</span>';
        } else {
            echo wp_kses_post( Utils::kses_custom( $yes ) );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Protocol', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( php_uname( 'n' ) );
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'CGI Version', 'adminify' );
        ?>:</td>
						<td><?php 
        echo esc_html( ( isset( $_SERVER['GATEWAY_INTERFACE'] ) ? sanitize_text_field( wp_unslash( $_SERVER['GATEWAY_INTERFACE'] ) ) : '' ) );
        ?></td>
					</tr>

					<?php 
        ?>

					<tr>
						<td><?php 
        esc_html_e( 'CPU Usage', 'adminify' );
        ?>:</td>
						<td>
							<div class="adminify-system-progress">
								<div class="status-progressbar">
									<span><?php 
        echo wp_kses_post( Utils::kses_custom( $server_info->get_server_cpu_load_percentage() ) ) . '% ';
        ?></span>
									<div style="width: <?php 
        echo esc_attr( Utils::kses_custom( $server_info->get_server_cpu_load_percentage() ) );
        ?>%"></div>
								</div>
							</div>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'CPU Load Average', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( Utils::kses_custom( $server_info->get_cpu_load_average() ) );
        ?></td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Disk Space', 'adminify' );
        ?>:</td>
						<td>
						<?php 
        $disk_space = $server_info->get_server_disk_size();
        if ( $disk_space != 'N/A' ) {
            echo esc_html__( 'Total', 'adminify' ) . ': ' . esc_html( $disk_space['size'] ) . ' GB / ' . esc_html__( 'Free', 'adminify' ) . ': ' . esc_html( $disk_space['free'] ) . ' GB / ' . esc_html__( 'Used', 'adminify' ) . ': ' . esc_html( $disk_space['used'] ) . ' GB';
        } else {
            echo esc_html( $disk_space );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Disk Space Usage', 'adminify' );
        ?>:</td>
						<td>
							<?php 
        $disk_space = $server_info->get_server_disk_size();
        if ( $disk_space != 'N/A' ) {
            ?>
								<div class="status-progressbar">
									<span><?php 
            echo esc_html( $disk_space['usage'] . '% ' );
            ?></span>
									<div style="width: <?php 
            echo esc_attr( $disk_space['usage'] );
            ?>%"></div>
								</div>
								<?php 
            echo esc_html( ' ' . $disk_space['used'] . ' GB of ' . $disk_space['size'] . ' GB' );
        } else {
            echo esc_html( $disk_space );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Memory (RAM) Total', 'adminify' );
        ?>:</td>
						<td>
							<?php 
        $server_ram = $server_info->get_server_ram_details();
        if ( $server_ram != 'N/A' ) {
            echo esc_html( $server_ram['MemTotal'] ) . ' GB';
        } else {
            echo esc_html( $server_ram );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Memory (RAM) Free', 'adminify' );
        ?>:</td>
						<td>
							<?php 
        $server_ram = $server_info->get_server_ram_details();
        if ( $server_ram != 'N/A' ) {
            echo esc_html( $server_ram['MemFree'] ) . ' GB';
        } else {
            echo esc_html( $server_ram );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Memory (RAM) Usage', 'adminify' );
        ?>:</td>
						<td>
							<?php 
        $server_ram = $server_info->get_server_ram_details();
        if ( $server_ram != 'N/A' ) {
            ?>
								<div class="status-progressbar">
									<span>
										<?php 
            echo esc_html( $server_ram['MemUsagePercentage'] . '% ' );
            ?>
									</span>
									<div style="width: <?php 
            echo esc_attr( $server_ram['MemUsagePercentage'] );
            ?>%">
									</div>
								</div>
								<?php 
            echo esc_html( ' ' . ($server_ram['MemTotal'] - $server_ram['MemFree']) . ' GB of ' . $server_ram['MemTotal'] . ' GB' );
        } else {
            echo esc_html( $server_ram );
        }
        ?>
						</td>
					</tr>
					<tr>
						<td><?php 
        esc_html_e( 'Memcached', 'adminify' );
        ?>:</td>
						<td>
							<?php 
        if ( extension_loaded( 'memcache' ) ) {
            echo wp_kses_post( Utils::kses_custom( $yes ) );
        } else {
            echo wp_kses_post( Utils::kses_custom( $no ) );
        }
        ?>
						</td>
					</tr>

					<?php 
        ?>

					<tr class="table-border-top">
						<td><?php 
        esc_html_e( 'PHP Version', 'adminify' );
        ?>:</td>
						<td><?php 
        echo wp_kses_post( Utils::kses_custom( $server_info->get_php_version() ) );
        ?></td>
					</tr>

					<?php 
        if ( function_exists( 'ini_get' ) ) {
            ?>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Memory Limit (WP)', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( Utils::kses_custom( $server_info->get_wp_memory_limit() ) );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Memory Usage', 'adminify' );
            ?>:</td>
							<td>
									<?php 
            if ( $server_info->get_server_memory_usage()['MemLimitGet'] == '-1' ) {
                ?>
										<?php 
                echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . esc_html__( 'Unlimited', 'adminify' ) . ' (-1)';
                ?>
								<?php 
            } else {
                ?>
										<?php 
                echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageFormat'] ) ) . ' ' . esc_html__( 'of', 'adminify' ) . ' ' . wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemLimitFormat'] ) );
                ?>

									<div class="adminify-system-progress">
										<div class="status-progressbar"><span><?php 
                echo wp_kses_post( Utils::kses_custom( $server_info->get_server_memory_usage()['MemUsageCalc'] ) ) . '% ';
                ?></span>
											<div style="width: <?php 
                echo esc_attr( $server_info->get_server_memory_usage()['MemUsageCalc'] );
                ?>%"></div>
										</div>
									</div>

								<?php 
            }
            ?>
							</td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Max Upload Size (WP)', 'adminify' );
            ?>:</td>
							<td><?php 
            echo (int) wp_kses_post( ini_get( 'upload_max_filesize' ) ) . ' MB (' . wp_kses_post( size_format( wp_max_upload_size() ) ) . ')';
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Post Max Size', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( size_format( $server_info->convert_memory_size( ini_get( 'post_max_size' ) ) ) );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Max Input Vars', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( ini_get( 'max_input_vars' ) );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Max Execution Time', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( ini_get( 'max_execution_time' ) ) . ' ' . esc_html__( 'Seconds', 'adminify' );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Extensions', 'adminify' );
            ?>:</td>
							<td><?php 
            echo esc_html( implode( ', ', get_loaded_extensions() ) );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'GD Library', 'adminify' );
            ?>:</td>
							<td>
									<?php 
            $gdl = gd_info();
            if ( $gdl ) {
                echo wp_kses_post( Utils::kses_custom( $yes ) ) . ' / ' . esc_html__( 'Version', 'adminify' ) . ': ' . wp_kses_post( $gdl['GD Version'] );
            } else {
                echo wp_kses_post( Utils::kses_custom( $no ) );
            }
            ?>
							</td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'cURL Version', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( Utils::kses_custom( $server_info->get_cURL_version() ) );
            ?></td>
						</tr>
						<tr>
							<td><?php 
            esc_html_e( 'SUHOSIN Installed', 'adminify' );
            ?>:</td>
							<td><?php 
            echo ( wp_kses_post( extension_loaded( 'suhosin' ) ) ? '<span class="dashicons dashicons-yes"></span>' : '&ndash;' );
            ?></td>
						</tr>
					<?php 
        }
        ?>

					<?php 
        if ( function_exists( 'ini_get' ) ) {
            ?>
						<tr>
							<td><?php 
            esc_html_e( 'PHP Error Log File Location', 'adminify' );
            ?>:</td>
							<td><?php 
            echo wp_kses_post( ini_get( 'error_log' ) );
            ?></td>
						</tr>
					<?php 
        }
        ?>

								<?php 
        $fields = [];
        // fsockopen/cURL.
        $fields['fsockopen_curl']['name'] = 'fsockopen/cURL';
        if ( function_exists( 'fsockopen' ) || function_exists( 'curl_init' ) ) {
            $fields['fsockopen_curl']['success'] = true;
        } else {
            $fields['fsockopen_curl']['success'] = false;
        }
        // SOAP.
        $fields['soap_client']['name'] = 'SoapClient';
        if ( class_exists( 'SoapClient' ) ) {
            $fields['soap_client']['success'] = true;
        } else {
            $fields['soap_client']['success'] = false;
            /* translators: %s: SoapClient class link */
            $fields['soap_client']['note'] = sprintf( __( 'Your server does not have the %s class enabled - some gateway plugins which use SOAP may not work as expected.', 'adminify' ), '<a href="https://php.net/manual/en/class.soapclient.php">SoapClient</a>' );
        }
        // DOMDocument.
        $fields['dom_document']['name'] = 'DOMDocument';
        if ( class_exists( 'DOMDocument' ) ) {
            $fields['dom_document']['success'] = true;
        } else {
            $fields['dom_document']['success'] = false;
            /* translators: %s: DOMDocument class link */
            $fields['dom_document']['note'] = sprintf( __( 'Your server does not have the %s class enabled - HTML/Multipart emails, and also some extensions, will not work without DOMDocument.', 'adminify' ), '<a href="https://php.net/manual/en/class.domdocument.php">DOMDocument</a>' );
        }
        // GZIP.
        $fields['gzip']['name'] = 'GZip';
        if ( is_callable( 'gzopen' ) ) {
            $fields['gzip']['success'] = true;
        } else {
            $fields['gzip']['success'] = false;
            /* translators: %s: gzopen function link */
            $fields['gzip']['note'] = sprintf( __( 'Your server does not support the %s function - this is required to use the GeoIP database from MaxMind.', 'adminify' ), '<a href="https://php.net/manual/en/zlib.installation.php">gzopen</a>' );
        }
        // Multibyte String.
        $fields['mbstring']['name'] = 'Multibyte String';
        if ( extension_loaded( 'mbstring' ) ) {
            $fields['mbstring']['success'] = true;
        } else {
            $fields['mbstring']['success'] = false;
            /* translators: %s: mbstring functions link */
            $fields['mbstring']['note'] = sprintf( __( 'Your server does not support the %s functions - this is required for better character encoding. Some fallbacks will be used instead for it.', 'adminify' ), '<a href="https://php.net/manual/en/mbstring.installation.php">mbstring</a>' );
        }
        foreach ( $fields as $field ) {
            $mark = ( !empty( $field['success'] ) ? 'yes' : 'error' );
            ?>
						<tr>
							<td data-export-label="<?php 
            echo esc_attr( $field['name'] );
            ?>"><?php 
            echo esc_html( $field['name'] );
            ?>:</td>
							<td>
								<span class="<?php 
            echo esc_attr( $mark );
            ?>">
									<?php 
            echo ( !empty( $field['success'] ) ? wp_kses_post( Utils::kses_custom( $yes ) ) : wp_kses_post( Utils::kses_custom( $no ) ) );
            ?>
									<?php 
            echo ( !empty( $field['note'] ) ? wp_kses_post( Utils::kses_custom( $field['note'] ) ) : '' );
            ?>
								</span>
							</td>
						</tr>
								<?php 
        }
        ?>
				</tbody>
			</table>
		</div>


								<?php 
    }

}

```
