Hi, I read that if I install a context processor, MEDIA_URL will automatically be available to my templates. However, it's not. Here's what I've done:
(1) Added the image files to my ftp server here: myserver.com/sites/myapp/images/ (2) Added this to settings.py (TEMPLATE_CONTEXT_PROCESSORS was not already defined): MEDIA_URL = 'http://mysite.com/sites/myapp/' TEMPLATE_CONTEXT_PROCESSORS = ('django.core.context_processors.auth', 'django.core.context_processors.debug', 'django.core.context_processors.i18n', 'django.core.context_processors.media' ) (3) Imported the RequestContext object in my views.py file: from django.template import Template, Context, RequestContext (4) In my HTML template, I have this line: <img src='{{ MEDIA_URL }}images/header-left.gif' alt='My page alt' title='My page title' align='left'> But when I run it, the image does not appear, and the page source looks like this (in my settings.py file I have TEMPLATE_STRING_IF_INVALID = '<invalid>'): <img src='<invalid>images/header-left.gif' alt=My page alt' title='My page title' align='left'> However, if I hard-code the direct path like this, the image appears as it should, so I know the image is OK: <img src='http://myserver.com/sites/myapp/images/header-left.gif' alt='My page alt' title='My page title' align='left'> It's the same way with javascript and CSS files too. What am I doing wrong? Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---