Plugin info

Total downloads: 2,177
Active installs: 300
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 12/6/2023 (756 days ago)
Added to WordPress: 11/24/2019 (6 years old)
Minimum WordPress version: 4.6
Tested up to WordPress version: 6.4.7
Minimum PHP version: 7.4

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 756 days ago

20/100

Is WP Shield abandoned?

Possibly abandoned (last update 756 days ago).

Compatibility

Requires WordPress: 4.6
Tested up to: 6.4.7
Requires PHP: 7.4

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Enviromon
Rating 0.0/5 (0 reviews)Active installs 10

Description

This plugin will allow you to secure your development, staging and UAT environments
with an http authentication block that can be controlled in admin but also turned
off via a declared variable in your config file. It allows you to bring your Database
back to non-production environments without having to physically turn off the plugin each time.

Variable: define('WP_SHIELD_UN', '');

This simple line of code (recommended to add to a file ignored by your code management
software and required into your wp_config.php file) will override the enabled flag
if the plugin’s settings. Enable in production and add the above code. If that
require file doesn’t exist in your other environments, it will prompt users for the
set username and password.

Installation

  1. Download WP Shield from the WordPress plugin directory
  2. Activate the plugin through the ‘Plugins’ screen in WordPress
  3. Use the Settings->’WP Shield’ screen to configure the plugin
  4. Enter the username and password you want use for the shield
  5. Check the enabled checkbox and Submit
  6. Add the following code to your wp_config.php file:

    if(file_exists('shield-settings.php')) {
      include('shield-settings.php');
    }
    

For production environments:
7. Add the above snippet of code to the shield_settings.php file in the root of
your WordPress installation.

NOTE: Depending on your setup you may need to add one of the following to your .htaccess
or apache conf file:

.htaccess

RewriteRule .* index.php [QSA,E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

Apache conf

SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1

Frequently Asked Questions

TBD

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Initial release of the Plugin

1.2

  • Add code to bypass shield on WP-CLI calls

1.3

  • Update readme for authorization setup

1.4

  • Fix for caching of credentials

1.5

  • Tested and confirmed for WordPress 6.1

1.6

  • Tested and confirmed for WordPress 6.4