Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
On Tuesday, May 3, 2011 6:33:20 PM UTC-4, Jacob Kaplan-Moss wrote: > > On Tue, May 3, 2011 at 5:07 PM, Jeff Blaine wrote: > > Thanks Jacob -- does the site entry in the database have to be anything > > specific? We don't really use that. Just put any old thing in there via > > Admin in the devel

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jacob Kaplan-Moss
On Tue, May 3, 2011 at 5:07 PM, Jeff Blaine wrote: > Thanks Jacob -- does the site entry in the database have to be anything > specific?  We don't really use that.  Just put any old thing in there via > Admin in the development server? Well, if you want all the parts of the admin to work correctl

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
On Tuesday, May 3, 2011 4:42:25 PM UTC-4, Jacob Kaplan-Moss wrote: > > Hi Jeff -- > > To make the admin work w/r/t sites, you'll need three things: > > * An entry in the sites table. > * A setting SITE_ID set to the ID of the Site entry you'd like to use > (i.e. SITE_ID = 1). > * `django.contrib.si

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jacob Kaplan-Moss
Hi Jeff -- To make the admin work w/r/t sites, you'll need three things: * An entry in the sites table. * A setting SITE_ID set to the ID of the Site entry you'd like to use (i.e. SITE_ID = 1). * `django.contrib.sites` in your INSTALLED_APPS. Check all three; I'll be you're missing one or two of

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
I'd certainly like to hear more about this, but I got it all working fine by commenting out 'django.contrib.sites' from INSTALLED_APPS That's obviously not the right solution... -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this g

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
Also, adding an example.com site (via /admin via dev server) doesn't change the behavior. Same error. I'm not sure if that's what you were suggesting to do or not. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send e

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
On Tuesday, May 3, 2011 2:03:14 PM UTC-4, Daniel Roseman wrote: > > I don't know why you think this is a WSGI error. As you say, Apache is > finding your WSGI app with no problem, and the error you get is a Django one > - you simply don't seem to have any data in your Site table, whereas the > D

Re: Stuck at integration step w/ WSGI

2011-05-03 Thread Daniel Roseman
On Tuesday, May 3, 2011 6:38:40 PM UTC+1, Jeff Blaine wrote: > > I've read the following and am still stuck and wondering what piece of this > puzzle > I am missing. If anyone has any ideas, please do comment! > > http://docs.djangoproject.com/en/1.3/howto/deployment/modwsgi/ > > http://code.go

Stuck at integration step w/ WSGI

2011-05-03 Thread Jeff Blaine
I've read the following and am still stuck and wondering what piece of this puzzle I am missing. If anyone has any ideas, please do comment! http://docs.djangoproject.com/en/1.3/howto/deployment/modwsgi/ http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango Using the Django 1.3 developme