
Important notice
In version 1.5.0 I initially accidently commited a version with some missing mandatory files, if your site gives you a white screen or goes down because of this, please remove/re-install the plugin from the repository.
Simple, efficient, ad- and bloatfree plugin for testing whether or not a given server address is up for just you, or everyone else on a given port and protocol.
Servers & services are checked in real-time whenever a user requests to view the page where the shortcode is inserted.
Intuitive interface, makes is really easy to maintain servers & services to check.
You have the ability to filter/hook the message displayed to the user through functions.php in your theme folder.
add_filter( "atr_server_success_message", function($message, $server) {
return $server->humanname." appears to be working alrstight.";
}, 10, 2);
add_filter( "atr_server_error_message", function($message, $server) {
return $server->humanname." is down.";
}, 10, 2);
You can also use the filter “atr_perm_administer_servers” to alter the permission being used to check access rights.
add_filter( "atr_perm_administer_servers", function( $permission ) {
$permission = "editor";
return $permission;
} );
Displays all servers entered in wp-admin
[server-status]
Display server by certain id
[server-status id="X"]
Display servers by multiple id’s
[server-status id="X,X,X"]
Excludes certain posts from display, only works if ‘id’ is not set.
[server-status exclude="X"]
If you’re looking for a full fledged server monitoring tool, no. Consider using thirdparty software such as zabbix instead
Otherwise, if you just want to provide a service, for your users/visitors to check whether or not one or more of your servers is running healthy then yes, this is for you.
Think this plugin is missing a feature? I’ll gladly discuss any feature requests sent to me either through the wordpress support forums, or via my contact formular.
Keep in mind, features must be able to fit seamlessly with the core wordpress UI, and must not be intrusive, or considered adware.
If you have any questions not answered here, do feel free to send me an email and I’ll do my best to answer you within 48 hours.
Response time is usually faster if you send me a mail, instead of using the wordpress support forums.
Download & install the zip archive
The plugin package installer can be downloaded from the WP2E project tab called “code”.
1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.
2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.
3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.
Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.