Version Description
Download this release
Release Info
Developer | rtcamp |
Plugin | Nginx Helper |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.3.1
- admin/admin.php +33 -32
- admin/assets/nginx-icon-32x32.png +0 -0
- admin/assets/rtp-social-icons-32-32.png +0 -0
- nginx.php → nginx-helper.php +4 -4
- readme.txt +108 -14
admin/admin.php
CHANGED
@@ -13,12 +13,12 @@ namespace rtCamp\WP\Nginx{
|
|
13 |
}
|
14 |
|
15 |
function add_menu() {
|
16 |
-
add_submenu_page( 'options-general.php', 'Nginx', __( 'Nginx', 'rt_wp_nginx_helper' ), 'install_plugins', 'nginx', array (&$this, 'show_menu') );
|
17 |
//add_submenu_page($parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function)
|
18 |
}
|
19 |
|
20 |
function add_network_menu() {
|
21 |
-
add_submenu_page( 'settings.php', 'Nginx', __( 'Nginx', 'rt_wp_nginx_helper' ), 'install_plugins', 'nginx', array (&$this, 'show_menu'));
|
22 |
}
|
23 |
|
24 |
// load the script for the defined page and load only this code
|
@@ -61,14 +61,14 @@ namespace rtCamp\WP\Nginx{
|
|
61 |
}
|
62 |
|
63 |
}
|
64 |
-
if($
|
65 |
-
|
66 |
$rt_wp_nginx_helper->options['purge_homepage_on_edit'] = (isset($_POST['purge_homepage_on_edit']) and ($_POST['purge_homepage_on_edit'] == 1) ) ? 1 : 0;
|
67 |
$rt_wp_nginx_helper->options['purge_homepage_on_del'] = (isset($_POST['purge_homepage_on_del']) and ($_POST['purge_homepage_on_del'] == 1) ) ? 1 : 0;
|
68 |
-
|
69 |
$rt_wp_nginx_helper->options['purge_archive_on_edit'] = (isset($_POST['purge_archive_on_edit']) and ($_POST['purge_archive_on_edit'] == 1) ) ? 1 : 0;
|
70 |
$rt_wp_nginx_helper->options['purge_archive_on_del'] = (isset($_POST['purge_archive_on_del']) and ($_POST['purge_archive_on_del'] == 1) ) ? 1 : 0;
|
71 |
-
|
72 |
$rt_wp_nginx_helper->options['purge_archive_on_new_comment'] = (isset($_POST['purge_archive_on_new_comment']) and ($_POST['purge_archive_on_new_comment'] == 1) ) ? 1 : 0;
|
73 |
$rt_wp_nginx_helper->options['purge_archive_on_deleted_comment'] = (isset($_POST['purge_archive_on_deleted_comment']) and ($_POST['purge_archive_on_deleted_comment'] == 1) ) ? 1 : 0;
|
74 |
|
@@ -77,12 +77,12 @@ namespace rtCamp\WP\Nginx{
|
|
77 |
$rt_wp_nginx_helper->options['purge_page_on_deleted_comment'] = (isset($_POST['purge_page_on_deleted_comment']) and ($_POST['purge_page_on_deleted_comment'] == 1) ) ? 1 : 0;
|
78 |
|
79 |
}
|
80 |
-
|
81 |
|
82 |
|
83 |
$update = 1;
|
84 |
}
|
85 |
-
$rt_wp_nginx_helper->options =
|
86 |
|
87 |
|
88 |
?>
|
@@ -112,11 +112,13 @@ namespace rtCamp\WP\Nginx{
|
|
112 |
</table>
|
113 |
|
114 |
<?php
|
115 |
-
if($rt_wp_nginx_helper->options['enable_purge']
|
|
|
|
|
116 |
?>
|
117 |
-
<h3
|
118 |
|
119 |
-
<table class="form-table rtnginx-table"
|
120 |
<tr valign="top">
|
121 |
<th scope="row"><h4>Purge Homepage:</h4></th>
|
122 |
<td>
|
@@ -131,52 +133,52 @@ namespace rtCamp\WP\Nginx{
|
|
131 |
</td>
|
132 |
</tr>
|
133 |
</table>
|
134 |
-
<table class="form-table rtnginx-table"
|
135 |
<tr valign="top">
|
136 |
<th scope="row">
|
137 |
-
<h4>Purge
|
138 |
-
<small>(date, category, tag, author, custom taxonomies)</small>
|
139 |
</th>
|
140 |
<td>
|
141 |
<fieldset>
|
142 |
-
<legend class="screen-reader-text"><span> when
|
143 |
-
<label for="
|
144 |
-
</fieldset>
|
145 |
-
<fieldset>
|
146 |
-
<legend class="screen-reader-text"><span> when an existing post/page/custom post is trashed.</span></legend>
|
147 |
-
<label for="purge_archive_on_del"><input type="checkbox" value="1" id="purge_archive_on_del" name="purge_archive_on_del"<?php checked( $rt_wp_nginx_helper->options['purge_archive_on_del'], 1 ); ?>> when a <strong>published post</strong> (or page/custom post) is <strong>trashed</strong>.</label><br />
|
148 |
</fieldset>
|
149 |
-
<br />
|
150 |
<fieldset>
|
151 |
<legend class="screen-reader-text"><span> when a comment is approved/published.</span></legend>
|
152 |
-
<label for="
|
153 |
</fieldset>
|
154 |
<fieldset>
|
155 |
<legend class="screen-reader-text"><span> when a comment is unapproved/deleted.</span></legend>
|
156 |
-
<label for="
|
157 |
</fieldset>
|
158 |
-
|
159 |
</td>
|
160 |
</tr>
|
161 |
</table>
|
162 |
-
<table class="form-table rtnginx-table"
|
163 |
<tr valign="top">
|
164 |
<th scope="row">
|
165 |
-
<h4>Purge
|
|
|
166 |
</th>
|
167 |
<td>
|
168 |
<fieldset>
|
169 |
-
<legend class="screen-reader-text"><span> when
|
170 |
-
<label for="
|
171 |
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
172 |
<fieldset>
|
173 |
<legend class="screen-reader-text"><span> when a comment is approved/published.</span></legend>
|
174 |
-
<label for="
|
175 |
</fieldset>
|
176 |
<fieldset>
|
177 |
<legend class="screen-reader-text"><span> when a comment is unapproved/deleted.</span></legend>
|
178 |
-
<label for="
|
179 |
</fieldset>
|
|
|
180 |
</td>
|
181 |
</tr>
|
182 |
</table>
|
@@ -211,7 +213,6 @@ namespace rtCamp\WP\Nginx{
|
|
211 |
</td>
|
212 |
</tr>
|
213 |
</table>
|
214 |
-
<?php } ?>
|
215 |
|
216 |
<?php
|
217 |
if($rt_wp_nginx_helper->options['enable_log']!=false){
|
@@ -315,4 +316,4 @@ namespace rtCamp\WP\Nginx{
|
|
315 |
}
|
316 |
}
|
317 |
}
|
318 |
-
?>
|
13 |
}
|
14 |
|
15 |
function add_menu() {
|
16 |
+
add_submenu_page( 'options-general.php', 'Nginx Helper', __( 'Nginx Helper', 'rt_wp_nginx_helper' ), 'install_plugins', 'nginx', array (&$this, 'show_menu') );
|
17 |
//add_submenu_page($parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function)
|
18 |
}
|
19 |
|
20 |
function add_network_menu() {
|
21 |
+
add_submenu_page( 'settings.php', 'Nginx Helper', __( 'Nginx Helper', 'rt_wp_nginx_helper' ), 'install_plugins', 'nginx', array (&$this, 'show_menu'));
|
22 |
}
|
23 |
|
24 |
// load the script for the defined page and load only this code
|
61 |
}
|
62 |
|
63 |
}
|
64 |
+
if(isset($_POST['enable_purge'])){
|
65 |
+
|
66 |
$rt_wp_nginx_helper->options['purge_homepage_on_edit'] = (isset($_POST['purge_homepage_on_edit']) and ($_POST['purge_homepage_on_edit'] == 1) ) ? 1 : 0;
|
67 |
$rt_wp_nginx_helper->options['purge_homepage_on_del'] = (isset($_POST['purge_homepage_on_del']) and ($_POST['purge_homepage_on_del'] == 1) ) ? 1 : 0;
|
68 |
+
|
69 |
$rt_wp_nginx_helper->options['purge_archive_on_edit'] = (isset($_POST['purge_archive_on_edit']) and ($_POST['purge_archive_on_edit'] == 1) ) ? 1 : 0;
|
70 |
$rt_wp_nginx_helper->options['purge_archive_on_del'] = (isset($_POST['purge_archive_on_del']) and ($_POST['purge_archive_on_del'] == 1) ) ? 1 : 0;
|
71 |
+
|
72 |
$rt_wp_nginx_helper->options['purge_archive_on_new_comment'] = (isset($_POST['purge_archive_on_new_comment']) and ($_POST['purge_archive_on_new_comment'] == 1) ) ? 1 : 0;
|
73 |
$rt_wp_nginx_helper->options['purge_archive_on_deleted_comment'] = (isset($_POST['purge_archive_on_deleted_comment']) and ($_POST['purge_archive_on_deleted_comment'] == 1) ) ? 1 : 0;
|
74 |
|
77 |
$rt_wp_nginx_helper->options['purge_page_on_deleted_comment'] = (isset($_POST['purge_page_on_deleted_comment']) and ($_POST['purge_page_on_deleted_comment'] == 1) ) ? 1 : 0;
|
78 |
|
79 |
}
|
80 |
+
update_site_option( "rt_wp_nginx_helper_options", $rt_wp_nginx_helper->options );
|
81 |
|
82 |
|
83 |
$update = 1;
|
84 |
}
|
85 |
+
$rt_wp_nginx_helper->options = get_site_option("rt_wp_nginx_helper_options");
|
86 |
|
87 |
|
88 |
?>
|
112 |
</table>
|
113 |
|
114 |
<?php
|
115 |
+
if($rt_wp_nginx_helper->options['enable_purge']==false){
|
116 |
+
$displayvar = ' style="display:none"';
|
117 |
+
}
|
118 |
?>
|
119 |
+
<h3<?php echo $displayvar; ?>>Purging Options</h3>
|
120 |
|
121 |
+
<table class="form-table rtnginx-table"<?php echo $displayvar; ?>>
|
122 |
<tr valign="top">
|
123 |
<th scope="row"><h4>Purge Homepage:</h4></th>
|
124 |
<td>
|
133 |
</td>
|
134 |
</tr>
|
135 |
</table>
|
136 |
+
<table class="form-table rtnginx-table"<?php echo $displayvar; ?>>
|
137 |
<tr valign="top">
|
138 |
<th scope="row">
|
139 |
+
<h4>Purge Post/Page/Custom Post Type:</h4>
|
|
|
140 |
</th>
|
141 |
<td>
|
142 |
<fieldset>
|
143 |
+
<legend class="screen-reader-text"><span> when a post/page/custom post is published.</span></legend>
|
144 |
+
<label for="purge_page_on_mod"><input type="checkbox" value="1" id="purge_page_on_mod" name="purge_page_on_mod"<?php checked( $rt_wp_nginx_helper->options['purge_page_on_mod'], 1 ); ?>> when a <strong>post</strong> is <strong>published</strong>.</label><br />
|
|
|
|
|
|
|
|
|
145 |
</fieldset>
|
|
|
146 |
<fieldset>
|
147 |
<legend class="screen-reader-text"><span> when a comment is approved/published.</span></legend>
|
148 |
+
<label for="purge_page_on_new_comment"><input type="checkbox" value="1" id="purge_page_on_new_comment" name="purge_page_on_new_comment"<?php checked( $rt_wp_nginx_helper->options['purge_page_on_new_comment'], 1 ); ?>> when a <strong>comment</strong> is <strong>approved/published</strong>.</label><br />
|
149 |
</fieldset>
|
150 |
<fieldset>
|
151 |
<legend class="screen-reader-text"><span> when a comment is unapproved/deleted.</span></legend>
|
152 |
+
<label for="purge_page_on_deleted_comment"><input type="checkbox" value="1" id="purge_page_on_deleted_comment" name="purge_page_on_deleted_comment"<?php checked( $rt_wp_nginx_helper->options['purge_page_on_deleted_comment'], 1 ); ?>> when a <strong>comment</strong> is <strong>unapproved/deleted</strong>.</label><br />
|
153 |
</fieldset>
|
|
|
154 |
</td>
|
155 |
</tr>
|
156 |
</table>
|
157 |
+
<table class="form-table rtnginx-table"<?php echo $displayvar; ?>>
|
158 |
<tr valign="top">
|
159 |
<th scope="row">
|
160 |
+
<h4>Purge Archives:</h4>
|
161 |
+
<small>(date, category, tag, author, custom taxonomies)</small>
|
162 |
</th>
|
163 |
<td>
|
164 |
<fieldset>
|
165 |
+
<legend class="screen-reader-text"><span> when an post/page/custom post is modified or added.</span></legend>
|
166 |
+
<label for="purge_archive_on_edit"><input type="checkbox" value="1" id="purge_archive_on_edit" name="purge_archive_on_edit"<?php checked( $rt_wp_nginx_helper->options['purge_archive_on_edit'], 1 ); ?>> when a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or <strong>added</strong>.</label><br />
|
167 |
</fieldset>
|
168 |
+
<fieldset>
|
169 |
+
<legend class="screen-reader-text"><span> when an existing post/page/custom post is trashed.</span></legend>
|
170 |
+
<label for="purge_archive_on_del"><input type="checkbox" value="1" id="purge_archive_on_del" name="purge_archive_on_del"<?php checked( $rt_wp_nginx_helper->options['purge_archive_on_del'], 1 ); ?>> when a <strong>published post</strong> (or page/custom post) is <strong>trashed</strong>.</label><br />
|
171 |
+
</fieldset>
|
172 |
+
<br />
|
173 |
<fieldset>
|
174 |
<legend class="screen-reader-text"><span> when a comment is approved/published.</span></legend>
|
175 |
+
<label for="purge_archive_on_new_comment"><input type="checkbox" value="1" id="purge_archive_on_new_comment" name="purge_page_on_new_comment"<?php checked( $rt_wp_nginx_helper->options['purge_archive_on_new_comment'], 1 ); ?>> when a <strong>comment</strong> is <strong>approved/published</strong>.</label><br />
|
176 |
</fieldset>
|
177 |
<fieldset>
|
178 |
<legend class="screen-reader-text"><span> when a comment is unapproved/deleted.</span></legend>
|
179 |
+
<label for="purge_archive_on_deleted_comment"><input type="checkbox" value="1" id="purge_archive_on_deleted_comment" name="purge_archive_on_deleted_comment"<?php checked( $rt_wp_nginx_helper->options['purge_archive_on_deleted_comment'], 1 ); ?>> when a <strong>comment</strong> is <strong>unapproved/deleted</strong>.</label><br />
|
180 |
</fieldset>
|
181 |
+
|
182 |
</td>
|
183 |
</tr>
|
184 |
</table>
|
213 |
</td>
|
214 |
</tr>
|
215 |
</table>
|
|
|
216 |
|
217 |
<?php
|
218 |
if($rt_wp_nginx_helper->options['enable_log']!=false){
|
316 |
}
|
317 |
}
|
318 |
}
|
319 |
+
?>
|
admin/assets/nginx-icon-32x32.png
CHANGED
Binary file
|
admin/assets/rtp-social-icons-32-32.png
CHANGED
Binary file
|
nginx.php → nginx-helper.php
RENAMED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
Plugin Name: Nginx Helper
|
4 |
Plugin URI: http://rtcamp.com/
|
5 |
Description: An nginx helper that serves various functions.
|
6 |
-
Version: 1.
|
7 |
Author: rtCamp
|
8 |
Author URI: http://rtcamp.com
|
9 |
Requires at least: 3.0
|
@@ -230,7 +230,7 @@ namespace rtCamp\WP\Nginx {
|
|
230 |
}
|
231 |
function update_map(){
|
232 |
if (is_multisite()){
|
233 |
-
$rt_nginx_map = $this->
|
234 |
if ($fp = fopen(RT_WP_NGINX_HELPER_PATH .'map.conf','w+')) {
|
235 |
fwrite($fp, $rt_nginx_map);
|
236 |
fclose($fp);
|
@@ -333,4 +333,4 @@ namespace{
|
|
333 |
}
|
334 |
add_action('init','fetch_feeds');
|
335 |
}
|
336 |
-
?>
|
1 |
<?php
|
2 |
+
/*
|
3 |
Plugin Name: Nginx Helper
|
4 |
Plugin URI: http://rtcamp.com/
|
5 |
Description: An nginx helper that serves various functions.
|
6 |
+
Version: 1.3.1
|
7 |
Author: rtCamp
|
8 |
Author URI: http://rtcamp.com
|
9 |
Requires at least: 3.0
|
230 |
}
|
231 |
function update_map(){
|
232 |
if (is_multisite()){
|
233 |
+
$rt_nginx_map = $this->get_map();
|
234 |
if ($fp = fopen(RT_WP_NGINX_HELPER_PATH .'map.conf','w+')) {
|
235 |
fwrite($fp, $rt_nginx_map);
|
236 |
fclose($fp);
|
333 |
}
|
334 |
add_action('init','fetch_feeds');
|
335 |
}
|
336 |
+
?>
|
readme.txt
CHANGED
@@ -1,28 +1,122 @@
|
|
1 |
=== Nginx ===
|
2 |
-
Contributors: rtcamp,rahul286,saurabhshukla
|
3 |
-
Tags: nginx, cache, purge, nginx map, nginx cache
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.4.2
|
6 |
-
Stable tag: 1.
|
|
|
|
|
|
|
7 |
|
8 |
-
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
1. Adds index.php redirection to make your wordpress installation compatible with nginx.
|
15 |
-
2. Adds nginx proxy purge with detailed settings.
|
16 |
-
3. Adds support for nginx maps on a multisite/network installation to optimise performance, as described here:
|
17 |
-
<a href=\"http://rtcamp.com/tutorials/wordpress-nginx-multisite-subdirectories-nginx-map/\">http://rtcamp.com/tutorials/wordpress-nginx-multisite-subdirectories-nginx-map/</a>
|
18 |
|
19 |
== Installation ==
|
20 |
|
21 |
-
Extract the zip file
|
22 |
-
|
23 |
-
1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
== Changelog ==
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
=== Nginx ===
|
2 |
+
Contributors: rtcamp, rahul286, saurabhshukla
|
3 |
+
Tags: nginx, cache, purge, nginx map, nginx cache, maps, fastcgi, proxy, rewrite, permalinks
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.4.2
|
6 |
+
Stable tag: 1.3.1
|
7 |
+
License: GPLv2 or later (of-course)
|
8 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
+
Donate Link: http://rtcamp.com/donate/
|
10 |
|
11 |
+
Helps WordPress-Nginx work together nicely using fastcgi/proxy cache purging, nginx map{}, rewrite support for permalinks & more
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
1. Removes `index.php` from permalinks when using WordPress with nginx.
|
16 |
+
1. Add support for nginx fastcgi_cache_purge & proxy_cache_purge directive from [module](https://github.com/FRiCKLE/ngx_cache_purge "ngx_cache_purge module"). Provides settings so you can customize purging rules.
|
17 |
+
1. Adds support for nginx `map{..}` on a WordPress-multisite network installation. Using it Nginx can serve PHP file uploads even if PHP/MySQL crashes. Please check tutorials list below for related Nginx config.
|
18 |
+
|
19 |
+
= Tutorials =
|
20 |
+
|
21 |
+
You will need to follow one ore more tutorials below to get desired fundtionality:
|
22 |
+
|
23 |
+
* [Nginx Map + WordPress-Multisite + Static Files Handling](http://rtcamp.com/tutorials/nginx-maps-wordpress-multisite-static-files-handling/)
|
24 |
+
* [Nginx + WordPress + fastcgi_purge_cache](http://rtcamp.com/tutorials/wordpress-nginx-fastcgi-cache-purge-conditional/)
|
25 |
+
* [Nginx + WordPress-Multisite (Subdirectories) + fastcgi_purge_cache](http://rtcamp.com/tutorials/wordpress-multisite-subdirectories-nginx-fastcgi-cache-purge/)
|
26 |
+
* [Nginx + WordPress-Multisite (Subdomains/domain-mapping) + fastcgi_purge_cache](http://rtcamp.com/tutorials/wordpress-multisite-subdomains-domain-mapping-nginx-fastcgi-cache-purge/)
|
27 |
+
* [Other WordPress-Nginx Tutorials](http://rtcamp.com/wordpress-nginx/tutorials/)
|
28 |
|
|
|
|
|
|
|
|
|
29 |
|
30 |
== Installation ==
|
31 |
|
32 |
+
1. Extract the zip file.
|
33 |
+
1. Upload them to `/wp-content/plugins/` directory on your WordPress installation.
|
34 |
+
1. Then activate the Plugin from Plugins page.
|
35 |
+
|
36 |
+
For proper configuration, check **tutorial list** of [Description tab](http://wordpress.org/extend/plugins/nginx-helper/)
|
37 |
+
|
38 |
+
== Frequently Asked Questions ==
|
39 |
+
|
40 |
+
= FAQ - Installation/Comptability =
|
41 |
+
|
42 |
+
**Q. Will this work out of the box?**
|
43 |
+
|
44 |
+
No. You need to make some changes at Nginx end. Please check **tutorial list** of [Description tab](http://wordpress.org/extend/plugins/nginx-helper/)
|
45 |
+
|
46 |
+
= FAQ - Nginx Map =
|
47 |
+
|
48 |
+
**Q. On my Multisite, I am alredy using `WPMU_ACCEL_REDIRECT`. Do I still need Nginx Map?**
|
49 |
+
|
50 |
+
Definietly yes. `WPMU_ACCEL_REDIRECT` reduceds load on PHP, but it still ask WordPress i.e. PHP/MySQL to do some work for static files e.g. images in your post. Nginx map handles files by itself which gives you much better performance without using a CDN.
|
51 |
+
|
52 |
+
= FAQ - Nginx Fastcgi Cache Purge =
|
53 |
+
|
54 |
+
**Q. Does it work for custom posts and taxonomies?**
|
55 |
+
Yes. It handles all post-types same way.
|
56 |
+
|
57 |
+
For any page on your site, try purging cache manullay for it, by following instructions mentioned in next answer.
|
58 |
+
|
59 |
+
|
60 |
+
**Q. How do I know my Nginx config is correct for fastcgi purging?**
|
61 |
+
|
62 |
+
For any page on your site, try purging cache manullay for it, by following instructions mentioned in next answer.
|
63 |
+
|
64 |
+
**Q. I need to flush a cached page immediately! How do I do that?**
|
65 |
+
|
66 |
+
Nginx helper plugin try to handle all common cases when you need to purge a cached copy of page. e.g. a post is edited, a comment is approved on a post, etc.
|
67 |
+
|
68 |
+
If you come across any URL like `http://example.com/hello-world/' you can simply 'purge' before path-part of URL.
|
69 |
+
It will become like `http://example.com/purge/hello-world/'
|
70 |
+
Just open in browser and cache for `/hello-world/` will be flushed immeditaley!
|
71 |
+
|
72 |
+
|
73 |
+
= FAQ - Nginx Map =
|
74 |
|
75 |
+
**Q. I am using X plugin. Will it work on Nginx?**
|
76 |
+
|
77 |
+
Most likely yes. A wordpress plugin, if not using explictly any Apache-only mod, should work on Nginx. Some plugin may need some extra work.
|
78 |
+
|
79 |
+
|
80 |
+
= Still need help! =
|
81 |
+
|
82 |
+
Post your problem in [our free support forum](http://rtcamp.com/support/forum/wordpress-nginx/) or wordpress.org forum here. We answer questions everywhere. Including Nginx official forum, serverfault, stackoverflow, etc.
|
83 |
+
Its just that we are hyperactive on our own forum!
|
84 |
+
|
85 |
+
|
86 |
+
== Screenshots ==
|
87 |
+
1. Nginx plugin settings
|
88 |
+
2. Remaining settings
|
89 |
|
90 |
== Changelog ==
|
91 |
+
|
92 |
+
= 1.3 =
|
93 |
+
|
94 |
+
* Improved Readme
|
95 |
+
|
96 |
+
|
97 |
+
= 1.2 =
|
98 |
+
|
99 |
+
* Fixed map generation error.
|
100 |
+
* Fixed purging logic.
|
101 |
+
* Fixed UI where purge settings were lost on disabling and re-enabling purge.
|
102 |
+
* Minor Ui rearrangement.
|
103 |
+
|
104 |
+
= 1.1 =
|
105 |
+
|
106 |
+
* Improved readme.txt. Added Screenshots.
|
107 |
+
|
108 |
+
= 1.0 =
|
109 |
+
|
110 |
+
* First release
|
111 |
+
|
112 |
+
|
113 |
+
== Upgrade Notice ==
|
114 |
+
|
115 |
+
= 1.3 =
|
116 |
+
|
117 |
+
Improved Readme.
|
118 |
+
|
119 |
+
|
120 |
+
= 1.2 =
|
121 |
+
|
122 |
+
This release fixes a couple of bugs with nginx maps and purging logic.
|