Hello all.  Just trying to make django serve my static media files
(css is my main test case right now) during development.  I've
included the lines in my URLconf as instructed by this page:
http://docs.djangoproject.com/en/dev/howto/static-files/

My issue is that this line is causing a 500 error when my site's main
template HTML requests a URL that falls into the regex for a static
file serve.  The error says:

ViewDoesNotExist: Could not import mysite.django.views.static. Error
was: No module named django.views.static

The issue here is that it's trying to root the search for the
'static.serve' package in "mysite".  Of course, the 'serve' function
is nowhere near "mysite" --- rather, it's in the default django
stuff.  But instead of searching for the package in the main django
package, it's searching in "mysite", which of course has no subset of
packages called "mysite.django.views.static".

Every other aspect of django seems to work out just great so far.  I'm
running Windows Vista as my development platform for now, and I'm
using the most up-to-date SVN trunk.  There's nothing special about my
installation of Django,  Python, or my URLconf.  I'm using Python
2.5.2 right now (since I'm tied to MySQLdb, which currently only has a
release for Python 2.5.x).

Any ideas?  I can't seem to find any better documentation than
provided in the link I posted first thing in this message.

Thanks in advance.
Tim

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to