Re: django runserver freeze after 10-15 min

2008-02-18 Thread diadya_vova
Big thanks to all folks! It's works fine with CherryPy. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this

Re: django runserver freeze after 10-15 min

2008-02-16 Thread Joseph Heck
Mark was also the one who got me working it. :-) At OSCON 2007 as well... On Feb 16, 2008 12:47 PM, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > On Sat, 2008-02-16 at 12:43 -0800, Joseph Heck wrote: > > The link to Gordon's page is much nicer than the hackery I did some > > time back, but

Re: django runserver freeze after 10-15 min

2008-02-16 Thread Malcolm Tredinnick
On Sat, 2008-02-16 at 12:43 -0800, Joseph Heck wrote: > The link to Gordon's page is much nicer than the hackery I did some > time back, but I thought I'd pipe in with a comment that the > WSGIServer from CherryPy works very nicely. Seconded. Mark Ramm pointed out to me at OSCON this year how s

Re: django runserver freeze after 10-15 min

2008-02-16 Thread Joseph Heck
The link to Gordon's page is much nicer than the hackery I did some time back, but I thought I'd pipe in with a comment that the WSGIServer from CherryPy works very nicely. We've embedded it into our Django Queue Service project (I yanked the WSGIServer directly - didn't need the rest: http://code

Re: django runserver freeze after 10-15 min

2008-02-16 Thread diadya_vova
> Have a look at thishttp://www.gordontillman.info/Development/DjangoCherryPy Oh! Thank you. It's looks like the best choice for me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: django runserver freeze after 10-15 min

2008-02-15 Thread cjl
Hi: As the guy behind Instant Django, I want to point out the disclaimer on the home page: "Be aware that Instant Django uses the built-in Django development web server, so it should not be used for deployment of Django projects." I wasn't joking, Instant Django is for learning Django basics, a

Re: django runserver freeze after 10-15 min

2008-02-15 Thread Steven Armstrong
diadya_vova wrote on 02/15/08 11:55: > Thank you for quick response! > > Dev. server not crashes. It's stop to respond on browsers requests. > Yeah, Apache is better choice for this. > But I need this application to be portable. Without instalation. > Because this I use "Instant Django" and SQLit

Re: django runserver freeze after 10-15 min

2008-02-15 Thread Julien
> But I need this application to be portable. Without instalation. > Because this I use "Instant Django" and SQLite. What do you mean by "portable". What are you exactly trying to achieve? Maybe you should consider something like Xampp [1], which makes it easy to install apache. [1] http://www.

Re: django runserver freeze after 10-15 min

2008-02-15 Thread Almir Karic
On Fri, Feb 15, 2008 at 11:55 AM, diadya_vova <[EMAIL PROTECTED]> wrote: > > Thank you for quick response! > > Dev. server not crashes. It's stop to respond on browsers requests. > Yeah, Apache is better choice for this. > But I need this application to be portable. Without instalation. > Bec

Re: django runserver freeze after 10-15 min

2008-02-15 Thread diadya_vova
Thank you for quick response! Dev. server not crashes. It's stop to respond on browsers requests. Yeah, Apache is better choice for this. But I need this application to be portable. Without instalation. Because this I use "Instant Django" and SQLite. I tried Google before asking :) And tried to

Re: django runserver freeze after 10-15 min

2008-02-15 Thread Julien
Hi, That command runs a server that is for development and testing purposes only. It is not meant to run for a long time, although that doesn't explain why it crashes after just 10 minutes. To use it in production, you should consider a proper server like Apache [http://www.apache.org/], which wi

django runserver freeze after 10-15 min

2008-02-15 Thread diadya_vova
Hello all, I run small application with "manage.py runserver MyIP". It used in small LAN by my coworkers. And if we don't use it some minutes - it's freeze. And don't respond. I use Django 0.96 in "Instant Django" package. --~--~-~--~~~---~--~~ You received this m