Re: tutorial part 1...syncing db

2012-04-12 Thread Brandy
FINALLY! I used your modifications and adjusted the security settings of the directory (twice). And now it works. Thank you everyone for taking the time to look at my code! Brandy On Thursday, April 12, 2012 3:13:58 PM UTC-5, William Ratcliff wrote: > Hi Brandy, > > I downloaded your project

Re: tutorial part 1...syncing db

2012-04-12 Thread william ratcliff
Hi Brandy, I downloaded your project modified the beginning to the following: # Django settings for mysite project. import os,sys HOMEDIR=os.path.dirname(__file__) DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_em...@example.com'), ) MANAGERS = ADMINS DATABASES = {

Re: tutorial part 1...syncing db

2012-04-12 Thread william ratcliff
Can you post your full code somewhere as a zip? On Thu, Apr 12, 2012 at 2:33 PM, Leonid Toshchev wrote: > Hello. > Try to escape spaces. I don`t check how django work when path have > spaces inside, but i meet same problems in my practice. > > p.s. sorry for my bad english. > > 12 апреля 2012 г

Re: tutorial part 1...syncing db

2012-04-12 Thread Leonid Toshchev
Hello. Try to escape spaces. I don`t check how django work when path have spaces inside, but i meet same problems in my practice. p.s. sorry for my bad english. 12 апреля 2012 г. 21:32 пользователь victoria написал: > On Thu, Apr 12, 2012 at 7:09 PM, Brandy wrote: >> I am working (again) throug

Re: tutorial part 1...syncing db

2012-04-12 Thread Brandy
I am in version 1.4. I feel like this is what is happening: I open the file to edit it in either Emacs or BlueFish. The file seems to save properly (I have verified that the files are being saved to the correct directory), but those changes don't seem to be reflected in the files when I access t

Re: tutorial part 1...syncing db

2012-04-12 Thread victoria
On Thu, Apr 12, 2012 at 7:09 PM, Brandy wrote: > I am working (again) through the tutorial part 1. I have made changes to > Engine and Name as specified in the instructions. However, running "python > manage.py syncdb" continues to return "Please supply the ENGINE value." I > did not encounter thi

tutorial part 1...syncing db

2012-04-12 Thread Brandy
I am working (again) through the tutorial part 1. I have made changes to Engine and Name as specified in the instructions. However, running "python manage.py syncdb" continues to return "Please supply the ENGINE value." I did not encounter this problem the first time I worked through this tutor