Re: Flup question

2009-04-10 Thread mysticalfirebird
Thanks this is my misunderstanding,I had consider flup can be a webserver and other webserver can call it. l`ll try to setup lighttpd or cherokee. thanks again --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Flup question

2009-04-10 Thread Alex Koshelev
Flup is just a proxy library between your Django project and web-server. It is communicating with web-server through FastCGI protocol. So you cannot just start FastCGI daemon and visit you project with browser. To work properly you must set up your web-server's FastCGI capabilities and direct it

Flup question

2009-04-09 Thread mysticalfirebird
I`m a rookie. I wonder how flup work. I have typed "python manage.py runfcgi host=127.0.0.1 port=8000 daemonize=false ". the terminal return nothing but a newline. I try to visit http://127.0.0.1:8000/ with my Firefox.but no page return.and the port(127.0.0.1:8000) is used. if I type "python