My app is missing!

2009-02-18 Thread djandrow
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

Re: My app is missing!

2009-02-18 Thread Malinka Rellikwodahs
my first gues would be you are not in the akonline folder On Wed, Feb 18, 2009 at 15:54, djandrow wrote: > > 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 >

Re: My app is missing!

2009-02-18 Thread djandrow
I am: C:\Program Files\Apache2.2\akonline>python "C:\ProgLangs\Python25\Lib \site-packa ges\django\conf\project_template\manage.py" sqlall blog Error: App with label blog could not be found. Are you sure your INSTALLED_APPS setting is correct? On Feb 18, 9:00 pm, Malinka Rellikwodahs wrote: > m

Re: My app is missing!

2009-02-19 Thread djandrow
I may just try creating a new app and see if that works and if it does just copy the things over. --~--~-~--~~~---~--~~ 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

Re: My app is missing!

2009-02-19 Thread Tim
The problem is that you are using the manage.py that is in the project_template directory, which will load the settings.py file from the project_template directory. You need to use the manage.py that is in the akonline directory, so that the proper settings.py file is loaded. --~--~-~--~-

Re: My app is missing!

2009-02-19 Thread djandrow
Thanks Tim, I got it sorted out. On Feb 19, 3:39 pm, Tim wrote: > The problem is that you are using the manage.py that is in the > project_template directory, which will load the settings.py file from > the project_template directory. > > You need to use the manage.py that is in the akonline dir