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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.