Re: Reading data from database tied to another Django project?

2009-07-14 Thread Benjamin Kreeger
I was using PostgreSQL at first, but then I found information about reading data across databases only with MySQL, so I'm using MySQL for the time being. Now, I don't have a database set for P1 yet because it's just displaying reStructuredText files; if I were to set up that site to access P2's d

Re: Reading data from database tied to another Django project?

2009-07-17 Thread Benjamin Kreeger
Thanks for your help, Ian. Two awesome solutions; I'll try and check 'em out today if I get the chance. Ben On Jul 15, 1:26 pm, Ian Clelland wrote: > On Jul 14, 8:23 am,BenjaminKreeger > wrote: > > > I was using PostgreSQL at first, but then I found information about > > reading data across da

Re: Django & mod_wsgi, multipart/form-data forms, and hell

2009-09-10 Thread Benjamin Kreeger
And for what it's worth, the view asks for authentication using a @login_required decorator (and django.contrib.auth), and that's all hunky-dory, too. Haven't had any problems with that part of it before. --~--~-~--~~~---~--~~ You received this message because you a

Re: Django & mod_wsgi, multipart/form-data forms, and hell

2009-09-10 Thread Benjamin Kreeger
. On Sep 10, 12:41 pm, Benjamin Kreeger wrote: > And for what it's worth, the view asks for authentication using a > @login_required decorator (and django.contrib.auth), and that's all > hunky-dory, too. Haven't had any problem