You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -28,7 +28,7 @@ Go forth and make awesome! And, once you've built something great, [send us feat
28
28
To install WP LCache, follow these steps:
29
29
30
30
1. Install the plugin from WordPress.org using the WordPress dashboard.
31
-
1a. Those installing from Github will need to run `composer install --no-dev` after cloning to get the [LCache library](https://github.com/lcache/lcache).
31
+
1a. Those installing from Github will need to run `composer install --no-dev --no-scripts` after cloning to get the [LCache library](https://github.com/lcache/lcache).
32
32
2. Activate the plugin, to ensure LCache's database tables are created. These are created on the plugin activation hook.
33
33
3. Symlink the object cache drop-in to its appropriate location: `cd wp-content; ln -s plugins/wp-lcache/object-cache.php object-cache.php`
34
34
@@ -43,7 +43,7 @@ If you need to install APCu, the PECL installer is the easiest way to do so.
43
43
44
44
If you can't easily use PHP 5.6 or greater, you should switch to a more responsible hosting provider.
45
45
46
-
### Admin notices ###
46
+
### Admin Notices ###
47
47
48
48
If any of the requirements for LCache to function are not met, you will see an admin notice indicating the issue. Here's how to resolve issues for each possible dependency:
49
49
@@ -78,6 +78,11 @@ Existing WP LCache users will need to alter the `value` column on the lcache_eve
78
78
79
79
## Changelog ##
80
80
81
+
### 0.3.0 (September 21st, 2016) ###
82
+
* Introduces the `wp lcache enable` WP-CLI command to create the `object-cache.php` symlink.
83
+
* Updates LCache to [v0.3.2](https://github.com/lcache/lcache/releases/tag/v0.3.2), which is more noisy about failed L2 serialization.
84
+
* Better admin notices: alerts when LCache database tables are missing, or if the plugin is active but `object-cache.php` is missing.
85
+
81
86
### 0.2.2 (September 14th, 2016) ###
82
87
* Updates LCache to [v0.3.1](https://github.com/lcache/lcache/releases/tag/v0.3.1), which has L2 cache guard against returning failed unserializations.
83
88
* Sets `STRICT_ALL_TABLES` on the database handler to fail and give warnings if there are issues with database inserts.
@@ -28,7 +28,7 @@ Go forth and make awesome! And, once you've built something great, [send us feat
28
28
To install WP LCache, follow these steps:
29
29
30
30
1. Install the plugin from WordPress.org using the WordPress dashboard.
31
-
1a. Those installing from Github will need to run `composer install --no-dev` after cloning to get the [LCache library](https://github.com/lcache/lcache).
31
+
1a. Those installing from Github will need to run `composer install --no-dev --no-scripts` after cloning to get the [LCache library](https://github.com/lcache/lcache).
32
32
2. Activate the plugin, to ensure LCache's database tables are created. These are created on the plugin activation hook.
33
33
3. Symlink the object cache drop-in to its appropriate location: `cd wp-content; ln -s plugins/wp-lcache/object-cache.php object-cache.php`
34
34
@@ -43,7 +43,7 @@ If you need to install APCu, the PECL installer is the easiest way to do so.
43
43
44
44
If you can't easily use PHP 5.6 or greater, you should switch to a more responsible hosting provider.
45
45
46
-
= Admin notices =
46
+
= Admin Notices =
47
47
48
48
If any of the requirements for LCache to function are not met, you will see an admin notice indicating the issue. Here's how to resolve issues for each possible dependency:
49
49
@@ -78,6 +78,11 @@ Existing WP LCache users will need to alter the `value` column on the lcache_eve
78
78
79
79
== Changelog ==
80
80
81
+
= 0.3.0 (September 21st, 2016) =
82
+
* Introduces the `wp lcache enable` WP-CLI command to create the `object-cache.php` symlink.
83
+
* Updates LCache to [v0.3.2](https://github.com/lcache/lcache/releases/tag/v0.3.2), which is more noisy about failed L2 serialization.
84
+
* Better admin notices: alerts when LCache database tables are missing, or if the plugin is active but `object-cache.php` is missing.
85
+
81
86
= 0.2.2 (September 14th, 2016) =
82
87
* Updates LCache to [v0.3.1](https://github.com/lcache/lcache/releases/tag/v0.3.1), which has L2 cache guard against returning failed unserializations.
83
88
* Sets `STRICT_ALL_TABLES` on the database handler to fail and give warnings if there are issues with database inserts.
0 commit comments