ImageBundle
ImageBundle copied to clipboard
Problems after Update
Maybe we are not using the bundle in the right way, but after update from 2.0.2 to 2.0.13 with the include of the Gregware/Cache we have a problem running our project.
The problem is that the cache directory path is always prefixed with the actual script directory. So the cache directory is not the path given in the configuration yaml.
Changing some lines in Cache.php solve the problem:
l. 200 yours: $cacheFile = $this->getCacheFile($filename, true); my: $cacheFile = $this->getCacheFile($filename);
l. 257 yours: $cacheFile = $this->getCacheFile($filename, true, true); my: $cacheFile = $this->getCacheFile($filename, $actual, true);
Probably this is not only a problem of our special adaption of your bundle and a generell problem?
Hi,
Can you be more clear about your problem? I don't have such issue on the last versions