Re: collectstatic is not working

2014-02-27 Thread Robin Lery
ohh my god..it should be STATICFILES_DIRS ! And not STATIC_DIRS? Thank you so much!!! On Thu, Feb 27, 2014 at 6:38 PM, Robin Lery wrote: > > if DEBUG: > MEDIA_URL = '/media/' > STATIC_ROOT = os.path.join(os.path.dirname( > BASE_DIR), "static", "static-only") > MEDIA_ROOT = os.path

Re: collectstatic is not working

2014-02-27 Thread Robin Lery
if DEBUG: MEDIA_URL = '/media/' STATIC_ROOT = os.path.join(os.path.dirname( BASE_DIR), "static", "static-only") MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static", "media") STATIC_DIRS = ( *os.path.join(os.path.dirname(**BASE_DIR), "static", "static"),* ) On

Re: collectstatic is not working

2014-02-27 Thread Timothy W. Cook
I think you need to set STATICFILES_DIRS as well On Thu, Feb 27, 2014 at 10:05 AM, Robin Lery wrote: > Hello, > I have been trying to collect statics from the static folder but, its not > collecting any files. But it did collect the admin files. What's wrong. > Please help me. > > Thank you.