Thx for that, it seems to be working now and I'm not quite sure what I
did to fix it.  I think it was something to do with the fact that my
SSPI wasn't quite working properly, because that's the only thing I've
been fiddling with.

For the record, here's my new httpd.conf section (noticed I switched
off Basic athentication):

#=============================================================
# Trac Setup
#=============================================================
<Location /trac>
        #--------------------------------------------
        # Trac with mod_python
        #--------------------------------------------
        SetHandler mod_python
        PythonInterpreter main_interpreter
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir "E:/TRAC_ENV"
        PythonOption TracUriRoot /trac

        #--------------------------------------------
        # Authentication
        #--------------------------------------------

        # use and enable SSPI authentication
        AuthType SSPI
        SSPIAuth On

        # authentication realm
       AuthName "Trac"

        # do not allow any other form of authentication for Trac
        SSPIAuthoritative On

        # only authenticate users in this domain
        SSPIDomain PRODUCTION

        # do not pass domain to Trac as part of login name
        SSPIOmitDomain On

        # do not allow basic authentication if SSPI fails
        SSPIOfferBasic Off

        # make username lowercase when passing to Trac
        SSPIUsernameCase lower

        # user must be authenticated
       Require valid-user
</Location>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to