Wordpress

Check WordPress Versions

Description:

Plugin checks your WordPress installation for available updates.

Current Version

Last Release Date

February 4, 2010

Compatible With


Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Project Files
Project Notes
Uses the integrated update mechanisms of wordpress to check for available updates. Works with WP 2.8.*
Reviews (2) Add a Review
Added Support for 2.9 AND Multisite-Blogs
by Dewey, June 30, 2011
http://foobar.lamp-solutions.de/howtos/wordpress/sicherheit/sicherheits-einzelansicht/artikel/wordpress-mit-nagios-ueberwachen.html
Helpful? Yes  No 
Updated Version for Wordpress 2.9+ incl. check for theme-updates
by hteske, December 31, 2010
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);

?>
Helpful? Yes  No 
Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
3.8 (5)
Favorites
0
Views
181,645