Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Check Wordpress Versions

Rating
5 votes
Favoured:
0
Hits
181112
Files:
FileDescription
check_wp_versions.php.gzcheck_wp_versions.php.gz
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Plugin checks your Wordpress installation for available updates.
Uses the integrated update mechanisms of wordpress to check for available updates.

Works with WP 2.8.*
Reviews (2)
http://foobar.lamp-solutions.de/howtos/wordpress/sicherheit/sicherheits-einzelansicht/artikel/wordpress-mit-nagios-ueberwachen.html
updates as $update) {
if($update->current != $wp_version) {
$core_updates = 1;
}
}

foreach($plugins->response as $plgupd) {
$plugin_updates = 1;
}

foreach($themes->response as $thupd) {
$theme_updates = 1;
}

if($core_updates) {
$text = "core updates available!";
} else {
$text = "core ok";
}

if($plugin_updates) {
$text .= " ; plugins updates are available!";
} else {
$text .= " ; plugins ok";
}

if($theme_updates) {
$text .= " ; theme updates are available!";
} else {
$text .= " ; themes ok";
}

if($core_updates || $plugin_updates || $theme_updates) {
print("CRITICAL - " . $text."
");
exit(2);
} else {
print("OK - " . $text."
");
exit(0);
}

print("CRITICAL - Error in check_wp_versions.php");
exit(2);

?>