Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Nick Tidey
Awesome. Thanks Doug. That's precisely what I've been working towards over the last couple of hours, but didn't know about search paths in Postgres. I was trying to handle it within Django by prefixing a "SCHEMA_PREFIX" to the table name on my own app models (of which there aren't many). Unfortu

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread robin_percy
I think everything could be accomplished by creating a separate settings.py file for each site, and pointing to them in your virtual hosts. By installing your apps outside the project dirs, but still in the PYTHON_PATH, you can refer to the same app dirs in all settings files. The only problem I

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Doug Van Horn
On Apr 24, 5:59 pm, Nick Tidey <[EMAIL PROTECTED]> wrote: > Thanks for the help Robin. I'm new to Python also, so wasn't too sure > about how to reuse the apps. > > I'll see if I can't use triggers to propagate the user information > between databases. Unless there's a better way? > You could ins

Re: Need guidance on multiple domain site configuration.

2007-04-24 Thread Nick Tidey
Thanks for the help Robin. I'm new to Python also, so wasn't too sure about how to reuse the apps. I'll see if I can't use triggers to propagate the user information between databases. Unless there's a better way? On Apr 25, 3:02 am, robin_percy <[EMAIL PROTECTED]> wrote: > I think everything co