Assuming you can run memcached on your server, you can skip files entirely. Here's the line in config.php:yandr wrote: Sun May 04, 2025 8:44 amThis is also the file count limit for my web hosting account and it creates a significant problem for me.
Code: Select all
$acm_type = 'phpbb\\cache\\driver\\memcached';
Code: Select all
<div>
<a id="bottom" class="anchor" accesskey="z"></a>
{% if not S_IS_BOT %}{{ RUN_CRON_TASK }}{% endif %}
</div>
php bin/phpbbcli.php cron:list
.Code: Select all
<?php
define('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>';
?>
Run periodic tasks from system cron:
should be set to no and the cron task will run without cron job.