Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Jeff Anderson
Scott Moonen wrote: >> I think this way, apache could be a little more faster. Am I right? >> >> > > I don't think it will be faster. Django normally runs as a long-standing > process (either inside Apache or as a standalone process, depending on the > deployment model you've chosen). So,

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread pength
Tim and Scott, thank you very much! On Jun 9, 10:03 pm, Tim Chase <[EMAIL PROTECTED]> wrote: > >> I think this way, apache could be a little more faster. Am I > >> right? > > > I don't think it will be faster. Django normally runs as a > > long-standing process (either inside Apache or as a

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Tim Chase
>> I think this way, apache could be a little more faster. Am I >> right? > > I don't think it will be faster. Django normally runs as a > long-standing process (either inside Apache or as a standalone > process, depending on the deployment model you've chosen). > So, unlike ordinary CGI

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Scott Moonen
> > I think this way, apache could be a little more faster. Am I right? > I don't think it will be faster. Django normally runs as a long-standing process (either inside Apache or as a standalone process, depending on the deployment model you've chosen). So, unlike ordinary CGI scripts, your

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread pength
Thanks a lot ! I changed the user information in apache2's conf file, and now it's OK! I think this way, apache could be a little more faster. Am I right? On 6月9日, 下午7时39分, "Valts Mazurs" <[EMAIL PROTECTED]> wrote: > Hello, > > Check if web server process has enough privileges to write in the

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Valts Mazurs
Hello, Check if web server process has enough privileges to write in the directories containing .py files. Regards, Valts. On Mon, Jun 9, 2008 at 1:25 PM, pength <[EMAIL PROTECTED]> wrote: > > I have justed built my site on slicehost. Alhough my site is running > properly, I found if I update

why my django site doesn't create .pyc file?

2008-06-09 Thread pength
I have justed built my site on slicehost. Alhough my site is running properly, I found if I update any file (.py file, of course), it never recreate the .pyc file. Actually, if I delete any .pyc file, then it will never appear. I think there's something wrong with my site config, can anyone