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

After installing, with some trouble, django-cms to run in a virtualenv. I may load the index page as well as the admin pages. However, on the index page, I see the following text at the bottom

If you don't see the django CMS logo at the end of this line make sure you linked the static/cms folder to your static files: here should be a logo

The logo is missing. Loading the admin page loads plain black and white HTML undecorated with CSS and other static components of the page.

My access.log shows the following when loading www.mysite.com

 ..."GET / HTTP/1.1" 200 4214 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:14.0) Gecko/20100101 Firefox/14.0.1"
 ..."GET /static/cms/images/pony.jpg HTTP/1.1" 404 526 "http://www.mysite.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:14.0) Gecko/20100101 Firefox/14.0.1"
 ..."GET /static/cms/images/logo.jpg HTTP/1.1" 404 527 "http://www.mysite.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:14.0) Gecko/20100101 Firefox/14.0.1"

Similar errors are seen when loading the access log. Not that no "static" directory was created upon generation of the site.

My question is this : Do I simply copy the contents of /usr/local/pythonenv/django_cms_venv/lib/python2.7/site-packages/cms/static/ into the STATIC_ROOT defined in settings.py ?

My follow up would be, why doesn't this get done automatically ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Have you tried running the collectstatic management command?

./manage.py collectstatic

A quick glance at the docs might help as well :-)

share|improve this answer
Thank you, that does it. As far as glancing at the docs goes, it's a funny comment, but you're speaking from the place of an experienced django user, not with the perspective of a new user. I'd respond that a call to this command is in no way made clear in any tutorial or getting started guide that I found, and I searched quite a bit before posting my comment. Because the document exists in hundreds of pages of documents, doesn't mean it can be found in a 'glance'. – OYRM Aug 2 '12 at 20:36
Sorry, my "glance" comment wasn't meant to be derogatory. I just wanted to point you into the right direction so you can read up on the whole staticfiles app. – Benjamin Wohlwend Aug 3 '12 at 7:14
Thanks Benjamin. It is sometimes easy to read subtext wrongly online. Again, your advice is right on, and It gives me a new way think about researching the use of Django's utilities. – OYRM Aug 3 '12 at 14:26

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.