1286 Posts in 355 Topics by 487 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 5419 Views |
-
Flushing Entire Site Cache

4 June 2009 at 10:02am
How does one flush the entire site cache after a template change?
http://mysite.com/?flush=1
and
http://mysite.com/home?flush=1...aren't doing it. Thanks in advance!
-
Re: Flushing Entire Site Cache

6 June 2009 at 7:36am Last edited: 6 June 2009 7:37am
Thank you! I promise I searched far and wide for this answer and got nowhere. This thread is also now atop the results for "silverstripe flush template cache" in Google, so here's to your future fame and riches.
-
Re: Flushing Entire Site Cache

9 August 2010 at 1:57pm
Hi there
Does this only work when a site is running in "dev" or "test"?
Running it on our live website returns the following:
Website Error
ForbiddenThe website server has not been able to respond to your request.
Cheers
Tama -
Re: Flushing Entire Site Cache

10 August 2010 at 5:04pm
Should work on live. If it doesn't, it means you don't have the ADMIN permission
if (isset($_GET['flush']) && $_GET['flush'] == 'all') {
if(Director::isDev() || Director::is_cli() || Permission::check('ADMIN')) {
self::flush_template_cache();
} else {
return Security::permissionFailure(null, 'Please log in as an administrator to flush the template cache.');
}
}Mateusz
| 5419 Views | ||
|
Page:
1
|
Go to Top |


