by Jb Audras
5 (1 reviews)
WP Down Slack Alert
Connect WordPress Recovery Mode to a your Slack team to receive alerts when websites are down.
Compatible with WP 6.9
v0.4.1
Current Version v0.4.1
Updated 1 month ago
Last Update on 27 Nov, 2025
Synced 7 hours ago
Last Synced on
Rank
#19,800
+2 this week
Active Installs
60+
-13%
KW Avg Position
122.5
+0.5 better
Downloads
5.1K
+3 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 70
60+
70+
823
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 5 more installs to reach 70+
Rank Changes
Current
#19,800
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.4.1
- Last Updated
- Nov 27, 2025
- Requires WP
- 5.2+
- Tested Up To
- 6.9
- PHP Version
- 5.6 or higher
- Author
- Jb Audras
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about WP Down Slack Alert
Go to Tools > WP Down Slack Alert and follow the tutorial to get your Slack API token and customize your Slack notification bot: To set up your Slack app, you'll need to get a Slack Bot token: Go to this page: https://api.slack.com/apps?new_app=1 and provide a name for your App, choose a Slack workspace and click on "Create App" button. In the "Features and functionality" section, click on the "Bots" panel. That will lead you to the "Bot user" screen. Click on "Add a Bot User" button. Leave the default names (you will be able to override that in the plugin’s settings), and click "Add bot user" button. Click on the "Install App" menu item in the navigation sidebar, then click on the "Install App to Workspace" button. Allow this Slack App to access your Slack team: click on the "Allow" button. Copy/paste the Bot User OAuth Access Token in the plugin’s settings field.
To programmatically define your settings, you can optionally use the following PHP constants, in a customized mu-plugin: // Disable the admin settings screen (false to disable) define( 'WPDSA_SETTINGS', false ); // Define the Slack API Token (string) define( 'WPDSA_NOTIFICATION_TOKEN', 'qcsqkjcssjcksqh' ); // Define the notification channel (string - slugified) define( 'WPDSA_NOTIFICATION_CHANNEL', 'my_slack_channel' ); // Disable the notification email (true to disable) define( 'WPDSA_NOTIFICATION_DISABLE_EMAIL', true ); // Define the Slack notification recurrence (string - accepted values: '0,5', '1', '2', '6', '24', 'anytime') define( 'WPDSA_NOTIFICATION_RECURRENCE', '2' ); // Define the notification bot name (string - slugified) define( 'WPDSA_NOTIFICATION_BOTNAME', 'My_bot_name' ); // Define the notification message title text (string) define( 'WPDSA_NOTIFICATION_MESSAGE_TITLE', 'My message title' ); // Define the notification message footer text (string) define( 'WPDSA_NOTIFICATION_MESSAGE_FOOTER', 'My message footer text' ); // Define the notification message image (string - absolute link to an online image) define( 'WPDSA_NOTIFICATION_MESSAGE_IMAGE', 'http://assets.whodunit.fr/brand/logo_whodunit_petit.png' ); // Disable the "Green" notification message (true to disable) define( 'WPDSA_NOTIFICATION_DISABLE_GREEN', true ); Follow this link to download a complete example of mu-plugin file You can download it, change the constants values if needed and upload it to /wp-content/mu-plugins folder. You can also define the PHP constants in your wp-config.php file.