Re: Deployment with Apache. Help !

2010-04-07 Thread Pep
Thanks for your answers. Well, it's working now. But I don't understand why. I just add a LocationMatch with a regular expression (CSS, png, etc.). But the location still not working :=° Any idea ? On 7 avr, 17:36, Nadae Ivar Badio wrote: > hi Pep: > > Do you give permissions to apache to acce

Re: Deployment with Apache. Help !

2010-04-07 Thread Nadae Ivar Badio
hi Pep: Do you give permissions to apache to acces to your css directory? Pep wrote: Hi everybody ! I didn't find the answer. I deployed my django project on a webserver with apache. First, I started with Debug = True and the website worked fine. So, I decided to do it with Debug = False.

Re: Deployment with Apache. Help !

2010-04-07 Thread Johan Sommerfeld
I had a similar problem when I went from "manage.py runserver" It was because I had some debugging prints within the code. Could it be that? /J On 7 apr 2010, at 17.09, Pep wrote: > Hi everybody ! > > I didn't find the answer. I deployed my django project on a webserver > with apache. First, I

Re: Deployment with Apache. Help !

2010-04-07 Thread andreas schmid
thats because you are serving your static media with django on debug=True but you don't serve it over apache on debug=False http://docs.djangoproject.com/en/dev/howto/static-files/ http://docs.djangoproject.com/en/dev/howto/deployment/modpython/#serving-media-files Pep wrote: > Hi everybody ! >

Deployment with Apache. Help !

2010-04-07 Thread Pep
Hi everybody ! I didn't find the answer. I deployed my django project on a webserver with apache. First, I started with Debug = True and the website worked fine. So, I decided to do it with Debug = False. I could see my project but not my CSS and other medias. In the httpd.conf I just put the S