1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
350 B
PHP

#!/usr/bin/env php
<?php
require dirname(__DIR__) . '/public/bootstrap.php';
// manually set the cache prefix
$kirby = $kirby->clone([
'options' => [
'cache' => [
'pages' => [
'active' => true,
'prefix' => 'lukasbestle.com'
]
]
]
]);
$kirby->cache('pages')->flush();