> generally this means that you should put in some url-rewriting...

hm.. maybe this has something to do with it.  I got the following
warnings prior to the index exception

WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI!
WSGIServer: missing FastCGI param SERVER_NAME required by WSGI!
WSGIServer: missing FastCGI param SERVER_PORT required by WSGI!
WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI!


here is my .htacess config (this is from the Django Project)

AddHandler fastcgi-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ /flickr.fcgi/$1 [QSA,L]

I've also used a config that's similar to the jeffcroft.com tutorial.
I still got the same error on common.py.  I've also tried a simple
hello.fcgi test

from fcgi import WSGIServer
def test_app(env, start_response):
        start_response('200 OK', [('Content-Type', 'text/plain')])
        yield 'Hello world!'

WSGIServer(test_app).run()

>> python hello.fcgi
output:
>>
WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI!
WSGIServer: missing FastCGI param SERVER_NAME required by WSGI!
WSGIServer: missing FastCGI param SERVER_PORT required by WSGI!
WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI!
Status: 200 OK
Content-Type: text/plain

What am I missing?


--~--~---------~--~----~------------~-------~--~----~
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 group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to