So, switching to "require_once('./template_cache.php');" and using the new template_cache fixed all your problems?
My idea is that include() is weaker. If you upgrade your board, move to a new server, and forget template_cache.php, it won't break anything if you miss the file, because include() will just complain about a missing file then. Require will stop the execution.
|