cachify
cachify copied to clipboard
Update documentation
Our documentation has moved to cachify.pluginkollektiv.org.
I've updated the GitHub wiki to only link to new documentation site such that users can find the latest version.
cachify.de redirects to https://pluginkollektiv.github.io/cachify/
- [x] can we just delete pluginkollektiv.github.io and redirect to https://cachify.pluginkollektiv.org/de/ instead?
- [ ] - currently we show an example Apache configuration for HTTP only sites - shouldn't be HTTPS the default in 2021?
- [x] - links to nginx configuration and WPTouch gist broken
- [x] - include how to deactivate the Apache Content Cache (instead of linking the Gist)
<IfModule mod_cache.c>
CacheDisable /
</IfModule>
- [x] - remove link to nginx configuration gist, as the content is fully included on the page
- [x] - links to support forum and wpSEO broken
cachify.de redirects to https://pluginkollektiv.github.io/cachify/ - can we just delete pluginkollektiv.github.io and redirect to https://cachify.pluginkollektiv.org/de/ instead?
This was done recently. Also inline links to cachify.de have been updated in #211.
I have done some of this in December 2021 and checked again (also changed to tasks for easier visualization of progress).
Looks like the only one is http vs https. Maybe adding https only too?
After looking into it, it looks like that we could add one more item to "Which parts of the website are not cached by default?" Sitemaps (see: #254 )
Correct?
Below "Automatic clearing of the cache" there are listed some hooks:
- After publishing new posts
- After publishing new pages
- After publishing new custom post types
- After publishing new sheduled posts (only Cachify DB)
- After updating WordPress
- If you confirm the trash button on the adminbar
- After saving Cachify settings
Looks like we have some more: https://github.com/pluginkollektiv/cachify/blob/2abed98e1029729ab55a1d5e8b5723176213070c/inc/class-cachify.php#L1161-L1174
Switch theme, Trash/Delete post, Create/delete/edit term, Register/update/delete user is missing.
Is there a hook firing on theme update?
Looks like we can remove the mention of Carrington Mobile - last updates 2010. Only 100 active installations.
We mention a special .htaccess for permalink without training slash:
A slash at the end of the permalink is also needed. For permalinks without slash at the end, the use of a special .htaccess snippets is required. The snippet code replaces the provided .htaccess entry above.
But we do not provide it. Removing the sentence or trying to provide the .htaccess?
If you want to display the cached version of the blog pages to logged in and commenting users in WordPress, the two lines with the cookie query (RewriteCond %{HTTP_COOKIE}) must be excluded (# in front of it) in the code above.
Soll in WordPress angemeldeten und kommentierenden Nutzern ebenfalls die Cache-Version der Blogseiten angezeigt werden, müssen die beiden Zeilen mit der Cookie-Abfrage (RewriteCond %{HTTP_COOKIE}) im obigen Code einkommentiert werden (Raute davor stellen).
Shouldn't this be "auskommentiert" instead of "einkommentiert"?
https://www.wortbedeutung.info/auskommentieren/ vs. https://www.wortbedeutung.info/404/?query=einkommentieren
Hi everyone :)
May I add another thing to the "to update" list? I found it rather confusing that there is no mention of APC vs APCu in the documentation, only reading through issues here on GH I was able to deduct, that APC and APCu are totally different things, and that APCu is not supported (other that possibly via apcu_bc?).
Could we maybe explicitly mention the difference and requirements? For example:
APC is only available in PHP < 5.5, for later versions only the successor APCu is available, which is currently not fully supported. To be able to use APCu with Cachify, the module apcu_bc needs to be installed.
(or strike the last sentence, I didn't fully understand whether apcu_bc is a valid way based on #135)