I recently installed Django-1.4. While the display of admin page on Django serveris as expected, the display on apache seems to be surprising. Apache is only displaying text on web page why?
Thanks in advance.
I recently installed Django-1.4. While the display of admin page on Django serveris as expected, the display on apache seems to be surprising. Apache is only displaying text on web page why?
Thanks in advance.
Admin statics are automatically served on devserver only. On production, follow The doc. ADMIN_MEDIA_PREFIX has been deprecated in Django 1.4, use STATIC_ROOT instead.
I would try and set up an alias to the media files. For me this is a little cleaner and more explicit than a symlink.