A few things might be causing the problem:

   - is settings.SECRET_KEY empty? If so, it's easy enough to fix
   - in your settings, you might be importing a custom module *before* defining 
   the SECRET_KEY causing dependency problems
   - you're doing something wrong in your settings (e.g. importing models) 
   and that causes the problem

There might be other cases but I suggest you should double-check your 
settings first.

 

On Wednesday, 11 September 2013 09:46:35 UTC+1, Gabriele Angeli wrote:
>
> Hi guys i have the following errors when edit python manage.py syncdb :
>
> Traceback (most recent call last):
>   File "manage.py", line 11, in <module>
>     execute_manager(settings)
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", 
> line 469, in execute_manager
>     utility.execute()
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", 
> line 392, in execute
>     self.fetch_command(subcommand).run_from_argv(self.argv)
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", 
> line 272, in fetch_command
>     klass = load_command_class(app_name, subcommand)
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", 
> line 77, in load_command_class
>     module = import_module('%s.management.commands.%s' % (app_name, name))
>   File "/usr/local/lib/python2.7/dist-packages/django/utils/importlib.py", 
> line 35, in import_module
>     __import__(name)
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/syncdb.py",
>  
> line 8, in <module>
>     from django.core.management.sql import custom_sql_for_model, 
> emit_post_sync_signal
>   File 
> "/usr/local/lib/python2.7/dist-packages/django/core/management/sql.py", 
> line 9, in <module>
>     from django.db import models
>   File "/usr/local/lib/python2.7/dist-packages/django/db/__init__.py", 
> line 11, in <module>
>     if settings.DATABASES and DEFAULT_DB_ALIAS not in settings.DATABASES:
>   File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", 
> line 53, in __getattr__
>     self._setup(name)
>   File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", 
> line 48, in _setup
>     self._wrapped = Settings(settings_module)
>   File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", 
> line 152, in __init__
>     raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.")
> django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must 
> not be empty.
>
>
> Someone can help me?
>
> Thank you!!!
>
>
>
>
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to