ImageBundle icon indicating copy to clipboard operation
ImageBundle copied to clipboard

Problems after Update

Open sebastianlueke opened this issue 11 years ago • 1 comments

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?

sebastianlueke avatar Dec 11 '13 09:12 sebastianlueke

Hi,

Can you be more clear about your problem? I don't have such issue on the last versions

Gregwar avatar Dec 12 '13 10:12 Gregwar