Matthew Dapena-Tretter

Results 115 comments of Matthew Dapena-Tretter

@RevolutionTech wanna update the readme with that recommendation?

@vstoykov Do you have permissions to push pilkit updates?

[It was removed](https://github.com/matthewwithanm/django-imagekit/commit/05ec0c1b33f469c9471789a5996ad9e14b370e01). I was relying on @bryanveloso to update it with changes I was making which probably wasn't very reasonable. I'd love to see it return but it would...

@nishimu Sorry for the delay in responding. Can you share the full error and the version of Django you're using? I'm not seeing this.

In general, trying to access a URL for an image that doesn't have a source _should_ throw an error. This is based on the behavior of Django itself—if you have...

Yeah, this is a common issue. It makes sense when you think about it, though: you can pass any variables into the template so the only options for suppressing errors...

Just to reiterate (and maybe expand on) what I said in IRC for other users' benefit: There's currently not a great way to do this. We removed the feature for...

There's nothing I know of in IK that would cause this…I would suggest trying to use the processor directly ``` python ResizeToFit(width=230).process(source_image) ``` If that also causes the error, you...

Hi @drepo! You shouldn't be setting `IMAGEKIT_DEFAULT_FILE_STORAGE` to `None`: you should either omit it (in which case [`settings.DEFAULT_FILE_STORAGE`](https://docs.djangoproject.com/en/1.4/ref/settings/#default-file-storage) will be used) or set it to a full class path like...

@svschannak Can you share the error?