Re: Django Filebrowser with FastCGI

2008-02-25 Thread David Reynolds
On 24 Feb 2008, at 1:37 pm, shabda wrote: > > I think, In a lot of old code, _ was automatically imported as > ugettext, while the newer code explicitly imports it as > from django.utils.translation import ugettext_lazy as _ > Might be when you are running fastcgi, you are hitting some path > wh

Re: Django Filebrowser with FastCGI

2008-02-24 Thread shabda
I think, In a lot of old code, _ was automatically imported as ugettext, while the newer code explicitly imports it as from django.utils.translation import ugettext_lazy as _ Might be when you are running fastcgi, you are hitting some path where, _ is not imported, while under mod_python, you are

Re: Django Filebrowser with FastCGI

2008-02-24 Thread patrickk
hi stephane, i´ve never used the filebrowser with fastcgi. not sure whether this is a django or a filebrowser-issue. maybe someone with more experience using fastcgi has an idea ... patrick On Feb 23, 3:12 pm, Rufman <[EMAIL PROTECTED]> wrote: > Hey Guys > > I'm using the django filebrowser (ht

Django Filebrowser with FastCGI

2008-02-23 Thread Rufman
Hey Guys I'm using the django filebrowser (http://code.google.com/p/django- filebrowser/) for my django site. When I run it on my local server using Apache and mod_python I don't have any problems. But when I attempt to use the filebrowser through fastcgi I get the error global ' _' not defined.