imagecache icon indicating copy to clipboard operation
imagecache copied to clipboard

Caching extension for the Intervention Image Class

Results 51 imagecache issues
Sort by recently updated
recently updated
newest added

Is there a particular reason why '..' is not allowed in file names? I'm caching images with that pattern (I'm not the owner of the files) and, of course, this...

In the ImageCacheController class, it looks like the BaseController parent class isn't being leveraged and Config::get() can be replaced with the config() helper function. Making those changes the controller becomes...

Hi Thanks for good package. I add default image option to specify default image when image cache can't find main image try to return default image. It's optional and can...

This adds recursive search in paths in order to find a image in a sub-directory, useful in a case like this: https://github.com/Intervention/imagecache/issues/36#issuecomment-127094597

Hi, It would be really nice if we would have the possibility to specify an alternative file cache driver for the image cache, instead of selecting the global one. Current...

Hi, After a few projects I noticed that I'm actually using one particular (custom) template over and over again, but the only differences are the image sizes. I made a...

When I am requesting a specific image, I get this resposne: ![image](https://cloud.githubusercontent.com/assets/3786627/12337004/d14b7a32-bb07-11e5-905d-14df27478ed4.png) What is wrong? It used to work perfectly. It does not work on production nor local. It happens...

My app is very complex, I don't want to upgrade to lastest version now, but I have already installed Intervention Image, So I have I could use this cache extension...

Contents of "app/config/packages/intervention/imagecache/config.php": ``` 'templates' => array( 'small' => 'Intervention\Image\Templates\Small', 'medium' => 'Intervention\Image\Templates\Medium', 'large' => 'Intervention\Image\Templates\Large', 'test' => 'App\Filters\Test' ), ``` Placed file with my custom preset under "app/filters/filters.php": ```...

In my Laravel 4 project, I have faced the issues that imagecache checks the image name in a number of folders with configured sequence. If same name is found in...