Plugin info

Total downloads: 384
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 9/28/2022 (1190 days ago)
Added to WordPress: 12/24/2020 (5 years old)
Minimum WordPress version: 5.2.9
Tested up to WordPress version: 6.0.3
Minimum PHP version: 7.4

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1190 days ago

20/100

Is WP Ignitor abandoned?

Possibly abandoned (last update 1190 days ago).

Compatibility

Requires WordPress: 5.2.9
Tested up to: 6.0.3
Requires PHP: 7.4

Developers

Languages

Similar & Alternatives

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

Cornerstone
Rating 4.0/5 (6 reviews)Active installs 40,000
Automattic For Agencies Client
Rating 5.0/5 (2 reviews)Active installs 10,000
Plugin Compatibility Checker
Rating 3.8/5 (8 reviews)Active installs 7,000
Advanced Coupons for WooCommerce
Rating 0.0/5 (0 reviews)Active installs 7,000
Edit Flow
Rating 4.2/5 (50 reviews)Active installs 5,000
Admin Management Xtended
Rating 4.6/5 (18 reviews)Active installs 5,000

Description

All sites created with WordPress have the same file and directory structure, and the database table structure is simple. So it’s easy to imagine that it’s a website that is fairly easy to attack from the attacker.
This plugin doesn’t easily make visitors aware that your site is written in WordPress and provides robust performance in terms of security. In addition, it retains the versatility of being able to track updates such as cores and plugins as usual.

By using this plugin, we can easily perform troublesome server-side access restrictions and maintenance of various configuration files as likes above from the admin panel.

Main plugin features:

  • Move WordPress installation directory
  • Update and move wp-config.php
  • .htaccess maintenance
  • Cleanup HTML that output by WordPress
  • Control behavior each route of WP REST API
  • Set up a new login page URL
  • Restricted access to login page

Let’s get rid of our tedious configuration work right away and ignite the launch of the site!

Installation

  1. From the WP admin panel, click “Plugins” -> “Add new”.
  2. In the browser input box, type “WP Ignitor”.
  3. Select the “WP Ignitor” plugin and click “Install”.

1, 2, 3: You’re done!

Frequently Asked Questions

I failed to set up this plugin and can’t log in to WordPress

You can use the filter hook “wpignitor_emergency_recovery” added since version 1.0.3.
By enabling this filter hook, you can remove all the settings saved by the WP Ignitor and revert the updated “.htaccess” and “wp-config.php” files.
Prepare functions.php in the plugin directory and add it as shown below.

add_filter( 'wpignitor_emergency_recovery', '__return_true' );

After the filter hook enabled, accessing the site will perform an emergency recovery.
If you continue to use the WP Ignitor, please disable the filter hook for emergency recovery.

Source code does not appear in “Cleanup Frontend HTML” on the “Conceals” tab

You can use the “wpignitor_remote_request_args” filter added since version 1.0.1 to control the request behavior of the WP_Http API.
If you have problems with SSL communication such as “SSL certificate problem”, please add the following filter hook to functions.php.

add_filter( 'wpignitor_remote_request_args', function( $args, $get_uri ) {
    $args = [
        'sslverify' => false,
    ];
    return $args;
}, 10, 2 );

Refer to WP_Http::request() for details on the optional arguments that can be given when requesting by WP_Http API.

Review feed

No reviews available

Screenshots

  1. The globals section can have an overwhelming impact on your entire website.

    The globals section can have an overwhelming impact on your entire website.

  2. The Conceals section can have a securely conceal your website.

    The Conceals section can have a securely conceal your website.

  3. The authorizations section can have a customize the URL of WordPress login page.

    The authorizations section can have a customize the URL of WordPress login page.

  4. The utilities section contains useful features for site management.

    The utilities section contains useful features for site management.

Changelog

1.1.0

Bump to version – September 28, 2022

  • Added a new option to set basic or digest authentication into .htaccess.
  • Fixed a bug that some type declarations of filtering method do not have nullable arguments.
  • Fixed a bug that is not work the site_url filter when had been called “login_form_confirm_admin_email” action on login.
  • Unified to LF the line feed code of all files output by the plugin.

1.0.4

Bump to version – March 10, 2021

  • Improved .htaccess settings that plugins save. This will avoid the error that the WordPress health check does not complete the loopback request.
  • Fixed a bug that the tag of IfModule directive is missing for .htaccess inserted by this plugin.

1.0.3

Bump to version – February 22, 2021

  • Fixed a bug that the context helper tab of the management screen does not open.
  • Added the recovery script to reset all the plugin settings when can’t log in to WordPress, such as when the plugin settings fail.

1.0.2

Bump to version – January 19, 2021

  • Minor fixes in the settings page UI.
  • Added translation template and Japanese translation files.
  • Introduced a workflow for releasing packages to the SVN repository in sync with GitHub tag additions.

1.0.1

Bump to version – December 26, 2020

  • Fixed some minor UI bugs
  • Added filter hooks for “wpignitor_remote_request_args” and “wpignitor_remote_retrieve_html”.
  • Changed “functions.php” for bundled plugin extension to sample file.

1.0.0

Bump an publish version – December 24, 2020