Title: WP Ignitor
Author: ka2
Published: <strong>2020년 12월 24일</strong>
Last modified: 2024년 4월 18일

---

플러그인 검색

![](https://ps.w.org/wp-ignitor/assets/banner-772x250.png?rev=2445510)

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/wp-ignitor/assets/icon.svg?rev=2445510)

# WP Ignitor

 작성자: [ka2](https://profiles.wordpress.org/ka2/)

[다운로드](https://downloads.wordpress.org/plugin/wp-ignitor.1.1.2.zip)

 * [세부사항](https://ko.wordpress.org/plugins/wp-ignitor/#description)
 * [평가](https://ko.wordpress.org/plugins/wp-ignitor/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/wp-ignitor/#installation)
 * [개발](https://ko.wordpress.org/plugins/wp-ignitor/#developers)

 [지원](https://wordpress.org/support/plugin/wp-ignitor/)

## 설명

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!

## 스크린샷

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

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

[⌊The Conceals section can have a securely conceal your website.⌉⌊The Conceals section
can have a securely conceal your website.⌉[

The Conceals section can have a securely conceal your website.

[⌊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.⌉[

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

[⌊The utilities section contains useful features for site management.⌉⌊The utilities
section contains useful features for site management.⌉[

The utilities section contains useful features for site management.

## 설치

 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!

## FAQ

### 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()](https://developer.wordpress.org/reference/classes/WP_Http/request/)
for details on the optional arguments that can be given when requesting by WP_Http
API.

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“WP Ignitor”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ ka2 ](https://profiles.wordpress.org/ka2/)

[자국어로 “WP Ignitor”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/wp-ignitor)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/wp-ignitor/)는, [SVN 저장소](https://plugins.svn.wordpress.org/wp-ignitor/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/wp-ignitor/)
을 [RSS](https://plugins.trac.wordpress.org/log/wp-ignitor/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.1.2

Bump to version – April 18, 2024

 * Add filter-hooks of “wpignitor_get_remote_hosts”, “wpignitor_get_remote_addr”,“
   wpignitor_get_fqdn” and “wpignitor_remote_request_uri”.
 * Removed the process to overwrite the default time zone in this plugin.

#### 1.1.1

Bump to version – April 17, 2024

 * Fixed a bug where plugins could not be activate/deactivate since PHP8.x.
 * Fixed invalid accessors for class member variables and methods.
 * Fixed some other minor bugs.

#### 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

## 기초

 *  버전 **1.1.2**
 *  최근 업데이트: **2년 전**
 *  활성화된 설치 **10+**
 *  워드프레스 버전 ** 5.2.9 또는 그 이상 **
 *  다음까지 시험됨: **6.5.12**
 *  PHP 버전 ** 7.4 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/wp-ignitor/)
 * 태그:
 * [management](https://ko.wordpress.org/plugins/tags/management/)
 *  [고급 보기](https://ko.wordpress.org/plugins/wp-ignitor/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/wp-ignitor/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/wp-ignitor/reviews/)

## 기여자

 *   [ ka2 ](https://profiles.wordpress.org/ka2/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/wp-ignitor/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://github.com/sponsors/ka215)