Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen several posts for this issue but didn't found my solution.

I'm trying to serve static files within my Django 1.3 development environment.

Here are my settings

...
STATIC_ROOT = '/home/glide/Documents/django/cbox/static/'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
  '/static/',
)
...

My urls.py

urlpatterns = patterns('',
...
  url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
    {'document_root', settings.STATIC_ROOT}
  ),
...
);

My /home/glide/Documents/django/cbox/static/ directory is like

css
  main.css
javascript
image

I get a 404 error when trying to access http://127.0.0.1:8000/static/css/main.css.

Do I have to specify patterns for css, javascript and images individually ?

share|improve this question

2 Answers

up vote 16 down vote accepted

In fact I confused STATIC_ROOT and STATICFILES_DIRS

Actually I was not really understanding the utility of STATIC_ROOT. I thought that it was the directory on which I have to put my common files. This directory is used for the production, this is the directory on which static files will be put (collected) by collectstatic.

STATICFILES_DIRS is the one that I need.

Since I'm in a development environment, the solution for me is to not use STATIC_ROOT (or to specify another path) and set my common files directory in STATICFILES_DIRS:

#STATIC_ROOT = (os.path.join(SITE_ROOT, 'static_files/'))
import os
SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
STATICFILES_DIRS = (
  os.path.join(SITE_ROOT, 'static/'),
)

Also don't forget to from django.conf import settings

share|improve this answer
Did you also edit urls.py to use staticfiles_urlpatterns? – Enrico Dec 9 '11 at 20:58
1  
No the urls.py should be like in the question (same thing for media) and don't forget to from django.conf import settings of course – Pierre de LESPINAY Dec 12 '11 at 7:08

It seems right, that should be it.

How does the url look like and what is the structure under "/home/glide/Documents/django/cbox/static/"?

share|improve this answer
Under /home/glide/Documents/django/cbox/static/ I have 3 directories image, css, javascript. The url called is actually HTTP://127.0.0.1:8000/static/css/mains.css – Pierre de LESPINAY May 16 '11 at 8:25
Hmm, strange! If it's not a secret project you can zip it and send it to me, when it's much better to find the bug. – programmersbook May 16 '11 at 9:00
uncomment "django.contrib.staticfiles" in INSTALLED_APPS and in urls.py "{'document_root': settings.STATIC_ROOT}" ":" instead of comma – programmersbook May 16 '11 at 10:08
This was already done. I found the solution see my next post – Pierre de LESPINAY May 16 '11 at 10:19
good, one problem less :) – programmersbook May 16 '11 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.