Are you using the Django built-in development server ('manage.py
runserver') or a deployment under a regular web server?If using Django, you will need to set it up to serve static files for you. See this doc: http://www.djangoproject.com/documentation/static_files/ Please beware that this method of serving static files is NOT RECOMMENDED for production use. I use something like this in my main urls.py to selectively use this when I am in development/DEBUG mode: if settings.DEBUG: urlpatterns += patterns('', (r'^files/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/my/media/root/'}), ) Also, make sure that your MEDIA_ROOT and MEDIA_URL are correct in settings.py. If none of this helps, try to look at the source of the HTML that Django servers for this page. Does the img src attribute value look OK? Cheers, -Raj --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

