Re: changing settings.py

2007-09-28 Thread julian.bash
Simply use django's build-in server, it restarts automatically (./ manage.py runserver) On Sep 28, 12:02 pm, ygneo <[EMAIL PROTECTED]> wrote: > Ok, doesn't mind. There's nothing to do, you have to restart apache if > settings.py is changed. Is better > apache2 stop && apache2 start than apache2 r

Re: changing settings.py

2007-09-28 Thread ygneo
Ok, doesn't mind. There's nothing to do, you have to restart apache if settings.py is changed. Is better apache2 stop && apache2 start than apache2 restart, that's my experience. Someon how knows how to tell mod_python to reload code or not to use cache? On Sep 28, 11:23 am, ygneo <[EMAIL PROTEC

Re: changing settings.py

2007-09-28 Thread ygneo
I've do it, because i've read it in documentation, but it doesn't works. If I change MEDIA_URL or LANGUAGE_CODE (i.e.) it does nothing On Sep 28, 11:07 am, Dushyant Sharma <[EMAIL PROTECTED]> wrote: > you can try adding > MaxRequestsPerChild 1 > to your httpd.conf file and restart apache > th

Re: changing settings.py

2007-09-28 Thread Dushyant Sharma
you can try adding MaxRequestsPerChild 1 to your httpd.conf file and restart apache then i think you dont' need to restart apache every time. this is just for testing purpose, for more read documentation on it. --~--~-~--~~~---~--~~ You received this message beca

Re: changing settings.py

2007-09-28 Thread Jarek Zgoda
ygneo napisaƂ(a): > I'm writting my first django app. I use ubuntu + apache + postgresql + > django 0.96. > > The problem is that every time I change settings.py I need to restart > apache to apply changes, and sometines even that doesn't changes > nothing. > > Is that normal? 'Cause I don't th

Re: changing settings.py

2007-09-28 Thread Kenneth Gonsalves
On 28-Sep-07, at 2:31 PM, ygneo wrote: > The problem is that every time I change settings.py I need to restart > apache to apply changes, this is normal - you *must* restart apache whenever you change anything other than templates > and sometines even that doesn't changes > nothing. that is

changing settings.py

2007-09-28 Thread ygneo
I'm writting my first django app. I use ubuntu + apache + postgresql + django 0.96. The problem is that every time I change settings.py I need to restart apache to apply changes, and sometines even that doesn't changes nothing. Is that normal? 'Cause I don't think so. Any idea? Thank U for ur h