Version Description
- Added check to avoid error "Notice: Undefined index: SERVER_ADDR in" when SERVER_ADDR is not set.
Download this release
Release Info
Developer | apasionados |
Plugin | Server IP & Memory Usage Display |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- readme.txt +5 -2
- server-ip-memory-usage.php +3 -2
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Author URI: http://apasionados.es/
|
|
5 |
Tags: memory, memory-limit, ip, ips, admin, adress, php, server, info
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 4.4
|
8 |
-
Stable tag: 1.3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -80,6 +80,9 @@ Of course we do. That's why we created it. ;-)
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
83 |
= 1.3.1 =
|
84 |
* Added check to avoid error "Notice: Undefined index: SERVER_ADDR in" when SERVER_ADDR is not set.
|
85 |
|
@@ -116,7 +119,7 @@ Of course we do. That's why we created it. ;-)
|
|
116 |
|
117 |
== Upgrade Notice ==
|
118 |
|
119 |
-
= 1.3.
|
120 |
* Bug fix to prevent PHP Warning when SERVER_ADDR is not set.
|
121 |
|
122 |
== Contact ==
|
5 |
Tags: memory, memory-limit, ip, ips, admin, adress, php, server, info
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 4.4
|
8 |
+
Stable tag: 1.3.2
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 1.3.2 =
|
84 |
+
* Added check to avoid error "Notice: Undefined index: SERVER_ADDR in" when SERVER_ADDR is not set.
|
85 |
+
|
86 |
= 1.3.1 =
|
87 |
* Added check to avoid error "Notice: Undefined index: SERVER_ADDR in" when SERVER_ADDR is not set.
|
88 |
|
119 |
|
120 |
== Upgrade Notice ==
|
121 |
|
122 |
+
= 1.3.2 =
|
123 |
* Bug fix to prevent PHP Warning when SERVER_ADDR is not set.
|
124 |
|
125 |
== Contact ==
|
server-ip-memory-usage.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Server IP & Memory Usage Display
|
4 |
Plugin URI: http://apasionados.es/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=server-ip-memory-usage-plugin
|
5 |
Description: Show the memory limit, current memory usage and IP address in the admin footer.
|
6 |
-
Version: 1.3.
|
7 |
Author: Apasionados, Apasionados del Marketing
|
8 |
Author URI: http://apasionados.es
|
9 |
Text Domain: server-ip-memory-usage
|
@@ -84,7 +84,8 @@ if ( is_admin() ) {
|
|
84 |
|
85 |
function add_footer($content) {
|
86 |
$this->check_memory_usage();
|
87 |
-
|
|
|
88 |
$content .= ' | ' . __( 'Memory', 'server-ip-memory-usage' ) . ': ' . $this->memory['usage'] . ' ' . __( 'of', 'server-ip-memory-usage' ) . ' ' . $this->memory['limit'] . ' MB (<span style="' . $this->memory['color'] . '">' . $this->memory['percent'] . '%</span>) | ' . __( 'WP LIMIT', 'server-ip-memory-usage' ) . ': ' . $this->check_wp_limit() . ' | IP ' . $server_ip_address . ' (' . gethostname() . ') | PHP ' . PHP_VERSION . ' @' . (PHP_INT_SIZE * 8) . 'BitOS';
|
89 |
return $content;
|
90 |
}
|
3 |
Plugin Name: Server IP & Memory Usage Display
|
4 |
Plugin URI: http://apasionados.es/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=server-ip-memory-usage-plugin
|
5 |
Description: Show the memory limit, current memory usage and IP address in the admin footer.
|
6 |
+
Version: 1.3.2
|
7 |
Author: Apasionados, Apasionados del Marketing
|
8 |
Author URI: http://apasionados.es
|
9 |
Text Domain: server-ip-memory-usage
|
84 |
|
85 |
function add_footer($content) {
|
86 |
$this->check_memory_usage();
|
87 |
+
//$server_ip_address = $_SERVER[ 'SERVER_ADDR' ];
|
88 |
+
$server_ip_address = (!empty($_SERVER[ 'SERVER_ADDR' ]) ? $_SERVER[ 'SERVER_ADDR' ] : "");
|
89 |
$content .= ' | ' . __( 'Memory', 'server-ip-memory-usage' ) . ': ' . $this->memory['usage'] . ' ' . __( 'of', 'server-ip-memory-usage' ) . ' ' . $this->memory['limit'] . ' MB (<span style="' . $this->memory['color'] . '">' . $this->memory['percent'] . '%</span>) | ' . __( 'WP LIMIT', 'server-ip-memory-usage' ) . ': ' . $this->check_wp_limit() . ' | IP ' . $server_ip_address . ' (' . gethostname() . ') | PHP ' . PHP_VERSION . ' @' . (PHP_INT_SIZE * 8) . 'BitOS';
|
90 |
return $content;
|
91 |
}
|