Django Apache/mod_python Admin CSS not appearing with admin tables - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T21:37:01Zhttp://stackoverflow.com/feeds/question/480665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables2Django Apache/mod_python Admin CSS not appearing with admin tablesAna2009-01-26T17:42:29Z2009-11-23T16:18:25Z
<p>Hello, </p>
<p>I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made additions in
SETTINGS.PY
INSTALLED_APPS
'django.contrib.admin',</p>
<p>URL.PY
from django.contrib import admin
admin.autodiscover()
(r'^admin/(.*)', admin.site.root),</p>
<p>conf/http.conf</p>
<p>
SetHandler python-program
PythonPath "['C:/django'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
</p>
<p>
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE myapplication.settings
PythonInterpreter /myapplication
PythonDebug On
</p>
<p>I'm stumped. Is there more code I should have added somewhere.</p>
<p>Thanks for any help.</p>
<p>May</p>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/480682#4806827Answer by Harper Shelby for Django Apache/mod_python Admin CSS not appearing with admin tablesHarper Shelby2009-01-26T17:47:28Z2009-01-26T18:08:38Z<p>Does your ADMIN_MEDIA_PREFIX exist? Is it different from MEDIA_URL? Did you include the trailing slash? Is Apache handled to correctly serve up the admin media?</p>
<p>The default Django configuration has the admin media located at {Django install dir}/contrib/admin/media. ADMIN_MEDIA_PREFIX defaults to /media/. So you need to add something like this to your Apache config:</p>
<pre><code>Alias /media/ /path/to/django/contrib/admin/media/
</code></pre>
<p>This will tell Apache that requests for mysite.com/media/css/whatever.css mean to serve up /path/to/django/contrib/admin/media/css/whatever.css, which should solve your issue.</p>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/480697#4806970Answer by Ana for Django Apache/mod_python Admin CSS not appearing with admin tablesAna2009-01-26T17:50:39Z2009-01-26T17:50:39Z<p>Hello, </p>
<p>No. I didn't do anything with this line:</p>
<p>ADMIN_MEDIA_PREFIX = ''</p>
<p>What code should I place? </p>
<p>Thanks, </p>
<p>May</p>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/520052#5200522Answer by Helmut for Django Apache/mod_python Admin CSS not appearing with admin tablesHelmut2009-02-06T12:03:07Z2009-02-06T12:19:26Z<p>I used to have the same problem and the following entry in the http.conf worked fine with me:</p>
<pre><code><Directory "Path-to-python/Lib/site-packages/django/contrib/admin/media/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Alias /media/ "Path-to-Python/Lib/site-packages/django/contrib/admin/media/"
<Location "/mysite/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonOption django.root /mysite
PythonInterpreter mysite
PythonDebug On
PythonPath "['C:/Python/Django/apps'] + sys.path"
</Location>
</code></pre>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/728710#7287100Answer by fastmultiplication for Django Apache/mod_python Admin CSS not appearing with admin tablesfastmultiplication2009-04-08T06:05:28Z2009-04-08T06:05:28Z<p>Here is my django-specific apache configuration. Note, django handles every incoming url to the site (location /) except media, where it's disabled, and the data is served from django's media directory.</p>
<pre><code><Location "/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
#PythonOption django.root /
PythonDebug On
PythonPath "['e:/dj'] + sys.path"
</Location>
</code></pre>
<p>Alias /media e:/dj/django-trunk/django/contrib/admin/media/
SetHandler None
</p>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/872422#8724220Answer by Henri for Django Apache/mod_python Admin CSS not appearing with admin tablesHenri2009-05-16T13:17:51Z2009-05-16T13:17:51Z<p>I am having a similar problem but with the project/app running on FreeBSD6.3. The entire application is running on on FreeBSD just fine, but the admin app. doesn't format, i.e. doesn't load its CSS. I tried symbolic linking the admin media directory to my project directory but that doesn't make a difference. It looks like the admin app. is looking elsewhere for its CSS. So I tried a test. In the view which is responsible for displaying the index I added this code:</p>
<p>def index(request):
cur_dir = os.getcwd() # added code
list_dir = os.listdir(cur_dir) # added code</p>
<pre><code>template = language + '/' + 'index/index.html'
return render_to_response(template, {'dir': cur_dir, 'dircon': list_dir})
</code></pre>
<p>to display the current directory and its contents. I expect to see the project directory and its contents.</p>
<p>On my Mac, running the django development server, it does just that. On my FreeBSD system this same code displays the 'root' directory of the operating system.......</p>
<p>The funny thing is that the application is running just fine on the FreeBSD system.</p>
<p>This is the apache conf file:</p>
<p>Listen 192.168.1.62:80</p>
<p>
ServerAdmin info@example.com
ServerName www.example.com
ServerAlias example.com</p>
<pre><code>DocumentRoot /home/django/sites_django/wmssite
<Directory "/home/django/sites_django/wmssite">
Options -Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Location "/">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE wmssite.settings
</code></pre>
<h1>PythonOption django.root /</h1>
<pre><code> PythonDebug On
PythonPath "['/home/django/sites_django/'] + sys.path"
</Location>
<Location "/site_media">
SetHandler None
</Location>
</code></pre>
<p></p>
<p>this is my settings.py:</p>
<p>MEDIA_ROOT = ''
MEDIA_URL = ''
ADMIN_MEDIA_PREFIX = '/media/'
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware', # added to serve flatpages
)</p>
<p>ROOT_URLCONF = 'wmssite.urls'</p>
<p>TEMPLATE_DIRS = (
'/home/django/sites_django/wmssite/templates',
)</p>
<p>INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.flatpages', # added to serve flatpages
'django.contrib.admin',
'wmssite.wms',
)</p>
<p>and this my urls.py:</p>
<p>from django.conf.urls.defaults import *</p>
<h1>Uncomment the next two lines to enable the admin:</h1>
<p>from django.contrib import admin
admin.autodiscover()</p>
<p>urlpatterns = patterns('wmssite.wms.views',
(r'^$', 'index'),</p>
<pre><code># Uncomment the next line to enable the admin:
(r'^admin/(.*)', admin.site.root),
</code></pre>
<p>)</p>
<p>I hope anyone can help me out with this.</p>
http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/1784208#17842080Answer by duncan for Django Apache/mod_python Admin CSS not appearing with admin tablesduncan2009-11-23T16:18:25Z2009-11-23T16:18:25Z<p>If you don't want to have admin media use the /media directory, you can specify ADMIN_MEDIA_PREFIX = 'admin_media', then create a link/alias from your webserver which redirects calls to /admin_media/ to the /usr/share/pyshared/django/contrib/admin/media (depending on your OS) for your production server...</p>