I am using TimThumb PHP Image Resizer: http://www.binarymoon.co.uk/projects/timthumb/ in one of my projects and I just noticed that my cache folder is full of files that have one line of php code in them: <?php die('Execution denied!'); //jpg ?> Everything is working just fine, but every time an image is posted and viewed or just viewed a new cache file appears for that image. Question: Is it normal? I know cache is cleaned regularly, but I am wondering if it's going to create an issue if I have thousands of those files cached day in and day out.
normaly scripts create a cache file once and will reuse that, please post a piece of code or links to the files to have others check what's wrong!
Actually, I should've researched more before posting the question. As it appears all the answers are in the script (it's smarter than I thought it was, lol). You can set how often you want the cache to be cleaned and the little piece of code: <?php die('Execution denied!'); //jpg ?> is for protection there. So it's all good.