You could force the cache to be "tidied" with a short script:
This may be covering up an underlying problem, but at least you'd know if the cron job could help.
Code:
<?phpdefine('IN_PHPBB', true);$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';$phpEx = substr(strrchr(__FILE__, '.'), 1);include($phpbb_root_path . 'common.' . $phpEx);global $cache;$cache->tidy();echo 'Cache tidied<br>';?>
Statistics: Posted by HB — Sun May 04, 2025 3:48 pm