it`s standart: #!/usr/bin/env python import os import sys import imp try: imp.find_module('settings') # Assumed to be in the same directory. except ImportError: import sys sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__) sys.exit(1)
import settings if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") #path to the settings py file from django.core.management import execute_from_command_line execute_from_command_line(sys.argv) manage.py, settings... In root folder public_html -- 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/958ae613-8c68-4e75-81d2-675074a6aa8b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.