Note that there are some explanatory texts on larger screens.

plurals
  1. PODjango admin page is missing images/css/js
    primarykey
    data
    text
    <p>I have found a few questhons re my problem, you the solutions didn't help me so I started a new question. Basically that's how I see the admin page <img src="https://i.stack.imgur.com/hhuOv.jpg" alt="no css/no js/ no images"></p> <p>Apache's config: </p> <pre><code>&lt;VirtualHost *.*.*.*:80&gt; ServerName ********.org ServerAdmin ****@******.org WSGIScriptAlias / /var/www/webproxy/webproxy/wsgi.py DocumentRoot /var/www/cgi-bin/ ScriptAlias /cgi-bin/ /var/www/cgi-bin/ ErrorLog /var/www/webproxy/apache/error.log LogLevel warn CustomLog /var/www/webproxy/apache/access.log combined Alias /media/ "/var/www/webproxy/media/" &lt;Directory "/var/www/webproxy/media/"&gt; Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Allow from all &lt;/Directory&gt; &lt;Directory "/var/www/webproxy/static/"&gt; Order deny,allow Allow from all &lt;/Directory&gt; </code></pre> <p></p> <p>This is what I have in urls.py:</p> <pre><code>from django.conf.urls.defaults import * from django.contrib import admin admin.autodiscover() from core import urls as core_urls from settings import MEDIA_ROOT, WEBPROXY_MEDIA_ROOT urlpatterns = patterns('', (r'^admin/', include(admin.site.urls)), (r'^media/(?P&lt;path&gt;.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT}), (r'^ui/(?P&lt;path&gt;.*)$', 'django.views.static.serve', {'document_root': WEBPROXY_MEDIA_ROOT}), ) </code></pre> <p>settings.py:</p> <pre><code>MEDIA_ROOT = '/var/www/webproxy/media/' STATIC_ROOT = '/var/www/webproxy/static/' WEBPROXY_MEDIA_ROOT = '/var/www/webproxy/static/media/' </code></pre> <p>I'm not sure what's wrong here. Any help would be really appreciated.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload