On Aug 3, 10:17 pm, uxp <unitep...@gmail.com> wrote: > On Aug 2, 4:21 pm, Daniel Roseman <dan...@roseman.org.uk> wrote: > > Maybe a silly question, but you keep talking about > > 'myproject.settings' - do you mean this is what you've called the > > file? That won't work at all. The settings should be called > > settings.py, you don't need to copy/rename it. In the documentation, > > 'myproject.settings' refers to the settings.py file in the myproject > > module/directory. > > > -- > > DR. > > Daniel, No. The format referred to in django is "mysite.settings". The > settings file is not named mysite.settings, it is settings.py since > its a python file.
But you're talking about making it a 'copy' of settings.py - it shouldn't be a copy, it should *be* settings.py. And you mentioned using the 'absolute path' in os.environ['DJANGO_SETTINGS_MODULE']. This refers to a *Python* path, not a file system path. So if you've set it to the value 'myproject.settings', Python will look for the file 'settings.py' in the 'myproject' directory in one of the directories on your Pythonpath. Assuming your Django code lives under /home2/timatlee/djcode/mysite, you must then have a myproject directory underneath mysite, which contains your settings.py. If your settings.py is actually in the 'mysite' folder, then set the DJANGO_SETTINGS_MODULE to simply 'settings'. Also, make sure all your directories have __init__.py files in them. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---