fishy wrote: > and it works well before. I've upgraded my apache today(debian > testing) and it didn't works anymore. When I visit my /trac/login, it > says: > ---- > Error > > No handler matched request to /error/HTTP_UNAUTHORIZED.html.var > ----
See http://trac.edgewall.org/ticket/2371 Basically this happens due to the Apache "ErrorDocument" setting redirecting you to another page based on the error code. Either find this line and remove it: ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var Or override it with: ErrorDocument 401 default -- Matt Good --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users -~----------~----~----~----~------~----~------~--~---
