djandrow
unread,Feb 18, 2009, 3:54:41 PM2/18/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Hello all,
I've been trying to add a few extra fields to my model, as part of my
blog app. So then I tried sqlall:
python "C:\ProgLangs\Python25\Lib\site-packages\django\conf
\project_template\manage.py" sqlall blog
theres another thread about why i've included the path, but i don't
see why it should make a difference. Anyway, when i run that i get
this error message.
Error: App with label blog could not be found. Are you sure your
INSTALLED_APPS
setting is correct?
my installed apps looks like this ;
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'akonline.blog',
)
it exists in akonline/blog and i created it in the proper way so can
someone explain why i get an error? Or are there some things i can try
to see whats going on?
Thanks,
Andrew