Bill Pairaktaridis

Results 10 comments of Bill Pairaktaridis

I'm running into a very similar issue. In my development machine there's no issue but on my actual server I get asked for a ton of settings that should be...

@matthewwithanm Well, for one thing my dev is serving all files locally and my production is serving them from S3 via django-storages. So, I have this in a condition in...

Any ideas on this issue?

``` Beginning conf.py Ending conf.py Validating generator: giaola:giaolaprofile:profile_image_big AttributeError: 'Settings' object has no attribute 'IMAGEKIT_DEFAULT_FILE_STORAGE' ``` Could it be an import issue on my part? Maybe an issue with my...

And trying to save a new profile image I got this: ``` AttributeError: 'Settings' object has no attribute 'IMAGEKIT_CACHEFILE_NAMER' ``` in my log.

Shouldn't the code here: ``` python def get_default_cachefile_backend(): """ Get the default file backend. """ from django.conf import settings return get_singleton(settings.IMAGEKIT_DEFAULT_CACHEFILE_BACKEND, 'file backend') ``` cause an error if that doesn't...

If I set all the missing variables as follows: ``` DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' IMAGEKIT_DEFAULT_CACHEFILE_BACKEND = 'imagekit.cachefiles.backends.Async' IMAGEKIT_DEFAULT_FILE_STORAGE = DEFAULT_FILE_STORAGE IMAGEKIT_CACHE_PREFIX = 'imagekit_' IMAGEKIT_CACHEFILE_NAMER = 'imagekit.cachefiles.namers.hash' IMAGEKIT_SPEC_CACHEFILE_NAMER = 'imagekit.cachefiles.namers.source_name_as_path' IMAGEKIT_CACHEFILE_DIR =...

Apache with mod_wsgi On Thu, Jan 9, 2014 at 2:32 PM, Jannis Leidel [email protected]: > @bill-pairaktaridis https://github.com/bill-pairaktaridis Hey, what are > you using to run your Django project? gunicorn, Apache?...

``` >>> print ik_conf.configured_data {'CACHE_BACKEND': 'default', 'CACHEFILE_DIR': 'CACHE/images', 'DEFAULT_CACHEFILE_BACKEND': 'imagekit.cachefiles.backends.Simple', 'CACHEFILE_NAMER': 'imagekit.cachefiles.namers.hash', 'USE_MEMCACHED_SAFE_CACHE_KEY': True, 'DEFAULT_CACHEFILE_STRATEGY': 'imagekit.cachefiles.strategies.JustInTime', 'SPEC_CACHEFILE_NAMER': 'imagekit.cachefiles.namers.source_name_as_path', 'CACHE_PREFIX': 'imagekit:', 'DEFAULT_FILE_STORAGE': 'storages.backends.s3boto.S3BotoStorage'} >>> print ik_conf._meta.__dict__ {'holder_path': 'django.conf.settings', 'required': [], 'configured_data':...

I can't scroll either. If I use a `` or `` everything works correctly. But with `` I can basically only scroll if I drag an item. EDIT: I was...