Sebey,

On Wed, 7 May 2008, sebey wrote:

What do you have for your DATABASE_NAME in your settings.py file?

> sqlite3.DatabaseError: file is encrypted or is not a database

It looks like it's pointed to an existing file that's not an SQLite file. 
It should look something like:

DATABASE_NAME = '/home/user_name/Django/myproject/db/test.db'

substituting the path to the directory you want to store the SQLite db file 
in for the above.  If it's a new project you're probably wanting the 
syncdb command to a new database file.  In that case the directory the 
path is pointing to should exist but the database file itself, test.db in 
the example above, shouldn't.  It will get created when you run syncdb.


Kevin
http://www.RawFedDogs.net
http://www.WacoAgilityGroup.org
Bruceville, TX

Si hoc legere scis nimium eruditionis habes.
Longum iter est per praecepta, breve et efficax per exempla!!!


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to