Re: Moving from development server to apache

2006-11-28 Thread Chris Ryland
On Nov 28, 1:58 am, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > say you have an app called 'myapp'. Create a database user called > myapp and give it right to create databases and have a password: > createuser myapp -P > then create the databases: > createdb myapp -U myapp > enter myapp as us

Re: Moving from development server to apache

2006-11-27 Thread Kenneth Gonsalves
On 28-Nov-06, at 12:00 PM, David Abrahams wrote: > Finally, I had to explicitly specify a PostgreSQL user in my > settings.py file, because my apache runs as a different user (www) > than the one that created the database, and although I used > psql to say you have an app called 'myapp'. Create

Moving from development server to apache

2006-11-27 Thread David Abrahams
I've been very happily developing my Django site with the development server, and decided it was time to start it under Apache. I ran into several problems that really slowed my development down. I'm posting here because: a. I'd love some help with these if anyone can offer it; many of my