> Please show how you are doing this. Using mod_wsgi and Apache, using I think a fairly standard .wsgi:
import os, sys path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) if path not in sys.path: sys.path.append(path) sys.path.append('/srv/myapp') os.environ['DJANGO_SETTINGS_MODULE'] = 'myapp.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() With this in my sites_enabled: WSGIScriptAlias / /srv/myapp/myapp/django.wsgi Also, keep in mind that the application does _run_ with Apache, it is only on calls related to user.get_profile() which causes the problem. Is there anything else you'd need to know? On Thu, Feb 13, 2014 at 3:01 PM, Tom Evans <tevans...@googlemail.com> wrote: > On Thu, Feb 13, 2014 at 6:00 AM, Rich Jones <miser...@gmail.com> wrote: > > Hey guys! > > > > I've got a real stumper here. Pulling my hair out over this one, would > > really appreciate some options! > > > > Anywhere in my application that calls user.get_profile() causes a > > FieldError.. but only in production. I'm using WSGI and Apache. > > > > Please show how you are doing this. > > I suspect mod_wsgi might be using a different version of django, > perhaps one in the system install. > > However, that is all just speculative without the config and comparing > it with how you start 'runserver'. > > Cheers > > Tom > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Django users" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/django-users/E4UVZHf6kP8/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAFHbX1L%2BhYT32SnOwphBDJzmhpLTHDCe%2BQsA3dWFwwceqyLZHw%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADJYzx%2BZPnFUP4xX7HYusLCLWoodBjjqmWH98ZPYkH3nERf2eQ%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.