Django: serving ADMIN media files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:18:43Z http://stackoverflow.com/feeds/question/1081596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081596/django-serving-admin-media-files 2 Django: serving ADMIN media files Adrian Liem 2009-07-04T05:43:16Z 2009-11-01T10:28:37Z <p>Hi all,</p> <p>I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot the problem for several hours already with no luck (been googling too and read the django doc about serving static files as well).</p> <p>The error as I tried to access localhost:8000/media/a.gif is as following:</p> <blockquote> <p>Page not found: f:\python25\lib\site-packages\django/contrib/admin/media\a.gif</p> </blockquote> <p>I put the admin media files in directory named "media", while I put the normal media files in directory named "static". I'm on Windows, too.</p> <p>Here's how I serve the ordinary media files in urls.py:</p> <pre><code># serve static files from django.conf import settings if settings.ENVIRONMENT==settings.ENV_DEVELOPMENT: urlpatterns += patterns("django.views", url(r"%s(?P&lt;path&gt;.*)$" % settings.MEDIA_URL[1:], "static.serve", {"document_root": settings.MEDIA_ROOT,}) ) </code></pre> <p>And my settings.py (only the important pieces):</p> <pre><code>import project_path MEDIA_ROOT = project_path.MEDIA.replace('\\','/') MEDIA_URL = '/static/' ADMIN_MEDIA_PREFIX = '/media/' TEMPLATE_DIRS = ( project_path.TEMPLATE.replace('\\','/'), ) </code></pre> <p>And my project_path.py:</p> <pre><code>import sys from os.path import dirname, join ROOT = dirname(__file__) APP = join(ROOT, "apps") TEMPLATE = join(ROOT, "templates") MEDIA = join(ROOT, "static") ADMIN_MEDIA = join(ROOT, "media") </code></pre> <p>Any hints?</p> <p>or maybe at least please share how do you serve your admin media files (without changing any files from the web server, but only via the django source code)</p> <p>Thanks in advance :)</p> http://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1081706#1081706 1 Answer by ars for Django: serving ADMIN media files ars 2009-07-04T07:04:56Z 2009-07-04T07:04:56Z <p>Try changing:</p> <p><code>ADMIN_MEDIA_PREFIX = '/static/media/'</code></p> <p>This assumes that your MEDIA_ROOT/media/ directory contains the admin media folder (which is what I understood from your question).</p> http://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1081746#1081746 0 Answer by Paul Tarjan for Django: serving ADMIN media files Paul Tarjan 2009-07-04T07:40:30Z 2009-07-04T07:40:30Z <p>Try </p> <p>(r'^admin_media/(.*)', 'django.views.static.serve', {'document_root' : 'django/contrib/admin/media/', 'show_indexes' : True}),</p> <p>in your urls.py file. And change your </p> <pre><code>ADMIN_MEDIA_PREFIX = '/admin_media/' </code></pre> http://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1231279#1231279 0 Answer by Danielb for Django: serving ADMIN media files Danielb 2009-08-05T05:00:58Z 2009-08-05T05:00:58Z <p>I just fixed a similar bug in my test site. ASMIN_MEDIA_PREFIX and MEDIA_URL should never be the same, see the following note in the <a href="http://docs.djangoproject.com/en/dev/ref/settings/#setting-ADMIN%5FMEDIA%5FPREFIX" rel="nofollow">docs</a>:</p> <blockquote> <p>Make sure to use a trailing slash, and to have this be different from the MEDIA_URL setting (since the same URL cannot be mapped onto two different sets of files).</p> </blockquote> http://stackoverflow.com/questions/1081596/django-serving-admin-media-files/1656828#1656828 0 Answer by phoku for Django: serving ADMIN media files phoku 2009-11-01T10:28:37Z 2009-11-01T10:28:37Z <p>Your answer is that unless <code>ADMIN_MEDIA_PREFIX</code> explicitly sets a domain the runserver command will serve out the admin media files from contrib.admin.</p> <p>I got burned by this <em>magic</em> behaviour, too. There was a ticket for this (<a href="http://code.djangoproject.com/ticket/8336" rel="nofollow">Ticket #8336</a>), but the design decision was to leave the convenience and confusion as it is.</p> <p>So to serve your admin media (for using grappelli or whatever admin skin you want to use) from your directories with the <code>runserver</code> command you have to use something like:</p> <pre><code>MEDIA_ROOT = os.path.join(PROJECT_ROOT, 'media/') ADMIN_MEDIA_ROOT = os.path.join(PROJECT_ROOT, 'admin-media/') MEDIA_URL = '/site-media/' ADMIN_MEDIA_PREFIX = 'http:/localhost:8000/admin-media/' </code></pre> <p>I hope I am resurrecting the correct question here. Apologies in advance.</p>