[eluser]CroNiX[/eluser]
Very strange. Do the cached files get removed by themselves without you hitting the url for the cached page again in the browser? Like you visit a particular page once and then view the /cache dir, and see the new cache file there but the file just disappears by itself without doing ANYTHING at all?
If you view one of the cached HTML files, does it have the timestamp correctly inserted at the very top of the document before your regular HTML, like:
Code:
1404511152TS---><!doctype html>
There's nothing in CI that would remove a cache file unless it's expired, and it will only do that when you access a page via the browser that has an expired timestamp in the existing cache file.
The only other thing I can think of is to check the value of the timestamp and see what time it says it was created. It could be that a date setting such as timezone is not correct and it's creating a timestamp in the past instead of the current date/time. But again, that would only delete the cached file if you hit the URL again and not by itself.