Re: Cannot find ../django/contrib/admin/media

2013-02-20 Thread Pankaj Singh
Hey, In case it helps, I have shared my apache conf at - http://pastebin.com/bsK26gek and project tree is at - http://pastebin.com/NRTypUCi .. I generally create a local wsgi file which activates virtual env and then imports everything from wsgi.py. I generally symlink my project root to

Re: Cannot find ../django/contrib/admin/media

2013-02-20 Thread Bill Freeman
1. modpython is deprecated, use modwsgi 2. the development server serves static media, but the production Django does not. You must configure Apache to serve STATIC_ROOT at STATIC_URL and to serve MEDIA_ROOT at MEDIA_URL, as they are specified in the settings.py file. Look for modwsgi deployment

Cannot find ../django/contrib/admin/media

2013-02-20 Thread Vittorio
As a newbye I'm using django 1.4.3 under Mac OS X. Reading the tutorials (and an Italian book on django by Marco Beri), I was able to set up my app 'home' using a legacy mysql db, and play with it as admin by means of the server 'python manage.py runserver'. Nice layout indeed! I modified my