Django won't serve static files while using development server
I just started a new development server for a website I am working on and I can't seem to get the Django development server to serve the static files I have for CSS and other things. The CSS for the admin site loads fine. I am running it in a virtualenv sandbox. In settings.py I've messed around with MEDIA_ROOT and MEDIA_URL. So far for MEDIA_ROOT I've tried. MEDIA_ROOT = '/home/wluw/wluw/wluw/media' and MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media') I changed my ADMIN_MEDIA_PREFIX to ADMIN_MEDIA_PREFIX = '/admin_media/' my MEDIA_URL looks like this MEDIA_URL = '/media/' and the