WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by rehhoff v1.5.1

ATR Server Status

Important notice

ATR Server Status

The facts

Rating
4.3★ from 11
Active installs
100+
Price
Free
Last updated
8 Oct 2024
Added
Mar 2017
Requires WP
4.0
Tested up to
WP 5.8.15
Requires PHP
5.6
Downloads
8,398

Our analysis

AI-assisted

ATR Server Status is a WordPress plugin designed to check the availability of server addresses in real-time. It allows you to insert shortcodes into your pages to display the status of various servers and services based on specified criteria.

The plugin features an intuitive interface for managing server checks and offers filtering options to customise user messages. However, it is important to note that this plugin is no longer in active development and should not be used in high-availability environments.

Best for: This plugin is suitable for users who need a simple solution to monitor server status on their WordPress site.

What it does well

  • Checks server availability in real-time
  • User-friendly interface for managing servers
  • Customisable messages through theme functions
  • Supports multiple shortcode options

Where it falls short

  • No longer in active development
  • Not suitable for high-availability environments

Verdict

ATR Server Status provides basic functionality for checking server availability but may not be reliable for critical applications due to its lack of ongoing support.

From the developer

rehhoff's own description of ATR Server Status, lightly tidied.

Important notice
This plugin is no longer in active development, do not use in high-availability environments.

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;
} );

Shortcode Examples

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"]

Read the full description on the official page →

Tagged as