Django Apache/mod_python Admin CSS not appearing with admin tables - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:37:01Z http://stackoverflow.com/feeds/question/480665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables 2 Django Apache/mod_python Admin CSS not appearing with admin tables Ana 2009-01-26T17:42:29Z 2009-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#480682 7 Answer by Harper Shelby for Django Apache/mod_python Admin CSS not appearing with admin tables Harper Shelby 2009-01-26T17:47:28Z 2009-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#480697 0 Answer by Ana for Django Apache/mod_python Admin CSS not appearing with admin tables Ana 2009-01-26T17:50:39Z 2009-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#520052 2 Answer by Helmut for Django Apache/mod_python Admin CSS not appearing with admin tables Helmut 2009-02-06T12:03:07Z 2009-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>&lt;Directory "Path-to-python/Lib/site-packages/django/contrib/admin/media/"&gt; AllowOverride None Options None Order allow,deny Allow from all &lt;/Directory&gt; Alias /media/ "Path-to-Python/Lib/site-packages/django/contrib/admin/media/" &lt;Location "/mysite/"&gt; 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" &lt;/Location&gt; </code></pre> http://stackoverflow.com/questions/480665/django-apache-modpython-admin-css-not-appearing-with-admin-tables/728710#728710 0 Answer by fastmultiplication for Django Apache/mod_python Admin CSS not appearing with admin tables fastmultiplication 2009-04-08T06:05:28Z 2009-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>&lt;Location "/"&gt; SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings #PythonOption django.root / PythonDebug On PythonPath "['e:/dj'] + sys.path" &lt;/Location&gt; </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#872422 0 Answer by Henri for Django Apache/mod_python Admin CSS not appearing with admin tables Henri 2009-05-16T13:17:51Z 2009-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 &lt;Directory "/home/django/sites_django/wmssite"&gt; Options -Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all &lt;/Directory&gt; &lt;Location "/"&gt; 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" &lt;/Location&gt; &lt;Location "/site_media"&gt; SetHandler None &lt;/Location&gt; </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#1784208 0 Answer by duncan for Django Apache/mod_python Admin CSS not appearing with admin tables duncan 2009-11-23T16:18:25Z 2009-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>