imagecache
imagecache copied to clipboard
Caching extension for the Intervention Image Class
QUEUE_DRIVER=redis I use `redis-cli` `flushall` `php artisan cache:clear`,it doesn't work. Please tell me where the cache that I can clear. [#25](https://github.com/Intervention/imagecache/issues/25)
Hello! I use Laravel 5.4 and I want the author to add a very important detail. In the /vendor/intervention/imagecache/src/Intervention/Image/ImageCache.php file, please add the ability to insert a prefix from the...
Q1) If I use the `imagecache`, what is the default cache lifetime if no lifetime is mentioned as second parameter like the below code: ``` $img = Image::cache(function($image) { return...
Is there any way to apply the middlware Auth for "original" and "download" routes/template? I tried to create a route for media/original/{filename} but it's always called InterventionImageCacheController@getResponse instead of my...
`ImageServiceProviderLaravel5` if (is_string(config('imagecache.route'))) { $filename_pattern = '[ \w\\.\\/\\-\\@\(\)]+'; // route to access template applied image file $app['router']->get(config('imagecache.route').'/{template}/{filename}', [ 'uses' => 'Intervention\Image\ImageCacheController@getResponse', 'as' => 'imagecache' ])->where(['filename' => $filename_pattern]); } **I have...
Im use laravel 5.4 and apache2. Cant access url with imagecache/{template}/name image
Kinda necroing #31 as one can't really cleanly catch 404 while using URL based image manipulation. Maybe we can get 'not-found image' as config variable?
If I try to get the mime of the image within the cache function (code below) I get the following error: `"call_user_func_array() expects parameter 1 to be a valid callback,...
hi, i'm using url based image cache for my laravel project but it doesn't work for utf-8 named files. what's the problem? am I doing wrong or something else ???