Your previous description sounds pretty close. Check your URLs in your HTML (mentioned by Karen Tracey in this thread).
As a quick reference, here are the relevant entries in my settings.py: import os ROOT_DIR = os.path.normpath(os.path.dirname(__file__)) MEDIA_ROOT = os.path.join(ROOT_DIR, 'media') MEDIA_URL = '/media/' ADMIN_MEDIA_PREFIX = '/admin-media/' and the relevant entry in my urls.py: import settings urlpatterns += patterns('', (r'^%s(.*)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), ) The only relevant thing to note based on your earlier post would be that '/media/' is by default used by the ADMIN_MEDIA_PREFIX setting. Perhaps the 'media' URL is experiencing some stompage... Also, forget about the whole HTML page for now and try and pull up your static media directly in your browser: http://localhost:8000/media/JavaScript/MyJSFile.js Check the output of the dev server when hitting that URL, maybe it'll be helpful in telling you what's going on... fwiw. On Apr 15, 7:33 am, Reisswolf <[EMAIL PROTECTED]> wrote: > Hi, > > Sorry to bother everyone again, but the suggestion above is not > working either. > > Actually, I fail to see why the ROOT_PATH suggestion would work when > hard-coding the path document_root is not working. But that could > just as well be due to my ignorance. > > I have tried the ROOT_PATH suggestion. I have tried everything else I > could think of. If anyone has any more suggestions, I would be very > grateful. --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---