thewebmen / silverstripe-staticpages
Silverstripe static page caching
Installs: 158
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 14
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
- silverstripe/cms: ^4.0@dev
- silverstripe/vendor-plugin: ^1.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^3.0
README
Introduction
Generate static cache for pages, a cache file for a page is generated the first time you visit the pages that needs cache but doesn't have cache.
Requirements
- SilverStripe CMS ^4.0
Installation
composer require "thewebmen/silverstripe-staticpages"
Run the task: dev/tasks/install-staticpages
How to use
By default the module creates static pages for all SiteTree pages, you can change this by adding the method "generatestatic" on a page object and return false if that pages does not need a static version. Example:
public function generatestatic(){
if($this->URLSegment == 'contact-us'){
return false;
}
return true;
}
If you publish a page with static change then the system wil remove the cache for that page and all pages returned by the optional "urlsAffectedByThisPage" method, make sure that this method returns absolute urls. Example:
public function urlsAffectedByThisPage(){
$children = SiteTree::get()->filter('ParentID', $this->ID);
$urls = [];
foreach($children as $child){
$urls[] = $child->AbsoluteURL();
}
return $urls;
}
View the uncached version
Uncached versiones are served when viewing the website in stage mode are when you add ?skipcache=1 to the url
Dynamic content
If your page contains dynamic content and/or forms then you need to ajax them
Tasks
There are three tasks available:
- dev/tasks/install-staticpages (create the staticpages folder, create a symlink and modify the htaccess)
- dev/tasks/staticpages (generate all static pages, most of the times not needed)
- dev/tasks/flush-staticpages (remove all generated pages, useful after a template change)
Flushing the cache
You can flush the cache just like the regular silverstripe cache by adding ?flush=1 or ?flush=all to the url, where all deletes all static cache and 1 deletes only the cache for the current page. This works only for logged in users with admin rights.
Pages with query parameters
It is also possible to cache pages with query parameters this is especially useful for pages with pagination. You can do this by creating a file called staticpages_config.php in the root of your website with the following content:
<?php
$staticpages_config = [
'query_params' => ['start']
];
Where ['start'] is an array of query params to cache.
Todo
- Find a better way of caching pages with query params