Re: Admin site doesn't work

2014-06-12 Thread Glen J
Running on linux mint. I'll keep plugging away and see what I can find. On Thursday, June 12, 2014 3:56:08 AM UTC-4, Sanjay Bhangar wrote: > > Hey Glen, > > Hm, whatever it is, is not apparent to me, sorry :/. The only thing I > can think of is possibly inconsistent indentation. Some comments /

Re: Admin site doesn't work

2014-06-12 Thread Sanjay Bhangar
Hey Glen, Hm, whatever it is, is not apparent to me, sorry :/. The only thing I can think of is possibly inconsistent indentation. Some comments / questions inline -- On Thu, Jun 12, 2014 at 3:39 AM, Glen J wrote: > urls.py: > from django.conf.urls import patterns, include, url > > # Uncomment t

Re: Admin site doesn't work

2014-06-11 Thread Glen J
urls.py: from django.conf.urls import patterns, include, url # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', # Examples: # url(r'^$', 'mysite.views.home', name='home'), # url(r'^mysite/', include('m

Re: Admin site doesn't work

2014-06-11 Thread Sanjay Bhangar
On 11 Jun 2014 18:04, "Glen J" wrote: > Sanjay, > Thanks for the reply. I've tried accessing it various ways using both > nginx and the included devserver on :8000. I've done both 127.0.0.1/admin > and 127.0.0.1/admin/ with the same results. I can post the contents of > my urls.py later today

Re: Admin site doesn't work

2014-06-11 Thread Glen J
Sanjay, Thanks for the reply. I've tried accessing it various ways using both nginx and the included devserver on :8000. I've done both 127.0.0.1/admin and 127.0.0.1/admin/ with the same results. I can post the contents of my urls.py later today when I have access to my machine at home. FWIW

Re: Admin site doesn't work

2014-06-11 Thread Sanjay Bhangar
hey Glen, Sorry if this is a silly question - but are you sure you are visiting /admin on your site? If you are and still getting this error, can you please paste the contents of your urls.py On Wed, Jun 11, 2014 at 4:24 PM, Glen J wrote: > I've tried it both on the development server you indica

Re: Admin site doesn't work

2014-06-11 Thread Glen J
I've tried it both on the development server you indicate below as well as on a my own web server (nginx using uwsgi) and get the same results. No errors are displayed, simply the welcome page for Django. Syncdb works fine (using Postgresql) and shows output when I do it. One thing I did spo

Re: Admin site doesn't work

2014-06-10 Thread Rini Michael
while launching through the browser do u give something like http://127.0.0.1:8000/admin/ On Wed, Jun 11, 2014 at 7:40 AM, Glen J wrote: > I read another post on here about how their Django site admin site would > not come up. In their case, they had failed to edit the urls.py and > settings.p

Admin site doesn't work

2014-06-10 Thread Glen J
I read another post on here about how their Django site admin site would not come up. In their case, they had failed to edit the urls.py and settings.py to enable the site. I have done that and also done a syncdb after making those changes and the admin sited does not come up. All that displ