Excellent. I came a cross an issuie where it would attempt to cache album pictures (vb 3.8.7), but instead it cache a 1x1px img? (vBulletin's cron ?)
This however didn't happen when attachments were used in img tags
To work around I added the following code to y2kswimgcache.php so that any images in the forums were not cached:
PHP Code:
// Don't change local files ---------------------------------------
for($i = 0; $i < $n; $i++)
{
if(strpos($files[$i]['url'], $forum_home) !== FALSE)
{
$files[$i]['url'] = '';
}
}