Edgewall Software
Modify

Opened 18 years ago

Closed 16 years ago

Last modified 16 years ago

#3142 closed defect (invalid)

Wiki Preview and Wiki Submit problems with IE 7.

Reported by: adam.durling@… Owned by: Jonas Borgström
Priority: normal Milestone:
Component: general Version: 0.9.4
Severity: normal Keywords: sspi iexplorer
Cc: developer@… Branch:
Release Notes:
API Changes:
Internal Changes:

Description

A couple of our users are beta testing Internet Explorer 7 (beta2) and have come accross an issue where they are unable to preview and submit wiki pages. Rather than seeing the preview page or configuration of the submit, they see a "Create" page, which asks them to create the page they have just edited.

Attachments (0)

Change History (12)

comment:1 by hyugaricdeau@…, 18 years ago

Priority: normalhigh

We currently have two deployments of Trac 0.9.5 which are having this problem. Actually, the problem extends far beyond what the original ticket suggests: First of all, we are having this problem in IE6 as well. We've also tested it on Firefox 1.5.0.2 and Opera 8.5, but it just seems to be an IE thing.

Also, it applies not only to wiki pages, but to *everything* in Trac, including plug-ins. In fact, by capturing network communications, we've been able to determine that IE is simply not sending HTTP POST variables. This is only happening in Trac, so it shouldn't be a problem with our IE configuration either.

We also have a server using Trac 0.8.4, which does not have this issue. We haven't tested it on any other versions.

comment:2 by hyugaricdeau@…, 18 years ago

Well, now I'm not certain whether or not our problem was related to the original ticket. It turns out that the problem we were having was with our NTLM authentication scheme, which was apparently making IE barf (and yet other browsers that support NTLM worked fine—IE's NTLM scheme is rather poorly documented). So this is not a default in trac itself, I don't think.

comment:3 by Emmanuel Blot, 18 years ago

See also #1168 and/or search for SSPI on this web site.

If you think the trouble does not come from Trac, please close this bug as "worksforme".

comment:4 by hyugaricdeau@…, 18 years ago

Resolution: worksforme
Status: newclosed

comment:5 by adam.durling@…, 18 years ago

Cc: developer@… added
Resolution: worksforme
Status: closedreopened
Version: 0.9.50.9.4

We are still seeing this issue (although with RC1 of IE7 now)… even though we have set SSPIBasicPrefered On as suggested in the referenced ticket.

The problem does not exist for us in IE6… only IE7. We don't use ticketing - we just use the Wiki and Svn Browser… although I suspect we would see similar behaviour with ticketing if we switched it on.

I'm posting this ticket using IE7… I wonder if it will work? Well - preview does. I don't know if this issue has been addressed in a later version - I'm reluctant to upgrade at the moment (got plenty of other things to worry about) but I'd consider a fix to this problem a good reason to upgrade.

I've had a quick look - but can't find anything that doesn't say "SSPIBasicPreferred On works for me".

comment:6 by sid, 17 years ago

Keywords: sspi iexplorer added

comment:7 by richard.grace@…, 17 years ago

I am having a similar problem with sspi and IE7, which I think is probably related and may help with the resolution.

I used have to type my in my login in IE6, which then triggered all my top menu changes and allowed me to add tickets etc according to my permissions.

Now I get automatically logged in but the menu does not change and the ability to create new tickets/documents does not get enable.

comment:8 by Christian Boos, 17 years ago

Milestone: 0.10.4
Priority: highnormal

See also #4561, which might be related.

comment:9 by Christian Boos, 17 years ago

#2795 was marked as duplicate.

comment:10 by osimons, 16 years ago

Is this currently an issue for Trac? 'worksforme'?

comment:11 by adurling, 16 years ago

Resolution: invalid
Status: reopenedclosed

It seems this is more an apache issue than a trac issue. This also works for me now - after altering my apache configuration.

Here is the relevant section of my httpd.conf file if it helps.

<VirtualHost *:80>
    ServerAdmin whatever@whatever.com
    ServerName trac.whatever.com
    ServerAlias trac
    ErrorLog logs/trac-error_log
    CustomLog logs/trac-access_log common

    <Location />
      SetHandler mod_python
      PythonHandler trac.web.modpython_frontend 
      PythonOption TracEnvParentDir e:\trac
      PythonOption TracUriRoot /
      SetEnv PYTHON_EGG_CACHE c:\python23\cache
    </Location>

    <LocationMatch "/[^/]+/login">
      #NT Domain auth config
      AuthType SSPI
      SSPIAuth On
      SSPIAuthoritative On
      SSPIOfferBasic On 
      SSPIOmitDomain On
      SSPIDomain server.whatever.com
      # following line squishes bug #1168 if IE has troubles editing wiki pages.   
      SSPIBasicPreferred On 
      SSPIOfferSSPI off
      SSPIUsernameCase upper
      AuthName "Trac"
      Require valid-user
    </LocationMatch>

</VirtualHost>

I'm no apache guru - so I appologise if there are any undesirable settings in this example - but hopefully it will give a clue to someone having this problem about how to fix it.

From recollection this was to do with username / password case.

Adam.

comment:12 by Christian Boos, 16 years ago

Milestone: 0.10.5

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jonas Borgström.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jonas Borgström to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.