• Do not register here on develop.twiki.org, login with your twiki.org account.
• Use View topic Item7848 for generic doc work for TWiki-6.1.1. Use View topic Item7851 for doc work on extensions that are not part of a release. More... Close
• Anything you create or change in standard webs (Main, TWiki, Sandbox etc) will be automatically reverted on every SVN update.
Does this site look broken?. Use the LitterTray web for test cases.

I'm running two instances ('test' and 'twiki') of Dakar (4.0.1) on the same system. A redirect command in httpd.cond (RedirectMatch permanent /$ http://example.com/twiki/bin/view) also redirects the 'test' instance group add to the twiki instance then errors out.

I don't see this behavior with anything except adding a group at this point -- http://example.com/test/bin/view/Main/TWikiGroups redirects to http://example.com/twiki/bin/view/Main/TWikiGroups


I don't understand what you are reporting here. Are you asking for help with Apache redirects? I would suggest you refer to the Apache documentation in this case, or failing that to their newsgroups. If you are trying to report a reproducable TWiki bug, please give clear instructions here how to reproduce the bug.

Discarded, pending a clearer report.

CC


WOW. Actually no, not describing a problem with Apache Redirect.

The Redirect line in the httpd.conf file works as expected. It redirects http://example.com -> http://example.com/twiki/bin/view HOWEVER, I have two twiki instances running on the system -- one named 'twiki' and one named 'test' (for testing purposes, installing plugins, etc). That one works as expected except for one minor thing......when trying to add a group through http://example.com/test/bin/view/Main/TWikiGroups I enter the new group name, hit the 'Add' button and get redirected to an error on http://example.com/twiki/bin/view (the instance named 'twiki') -- redirected to the other instance than the one I was using.

When I comment out the redirect line in httpd.conf and restart the web server all behaves as it should.....meaning that the group is created on the correct instance of the twiki ('test' in this case). It appears to me that it would be a form problem in twiki perhaps or something else within twiki that is trying to go to 'http://example.com' (URLHOST) the appending the path once it goes to the URLHOST -- the URLHOST in this case redirects to the production twiki, thus ignoring the actual instance I am testing ('test' in this case).

Is this more clear? It is not an apache error or problem. This seems to be fairly significant if you have people running multiple instances of twiki on one system and using a redirect to guide to the primary instance.


Sorry, Dana, but CC is right - this is a problem with your Apache redirection.

Your RedirectMatch directive will redirect every URL ending in a slash to http://example.com/twiki/bin/view. Just try http://example.com/manual/ - this should in a conventional Apache redirect to the user's manual. Bet you get /twiki/bin/view ?

When creating a group, the form has an action ending in a slash:

<form action="%SCRIPTURLPATH{"edit"}%/%WEB%/" method="get">
...and this gets redirected according to your RedirectMatch directive, whatever was in %SCRIPTURLPATH% before. It is just a coincidence that most TWiki URLs do not end in a slash if they are passing topic as a query parameter.

You want to write

RedirectMatch permanent ^/$ http://example.com/twiki/bin/view
...or to venture to using mod_rewrite if you are planning more complicated stuff. So I dare to discard the item again. (BTW, after testing that my corrected RedirectMatch does what I thought it should, I decided to keep it, since on my localhost I'm using TWiki as PIM)

TWiki:Main.HaraldJoerg

ItemTemplate
Summary Two instances of twiki same machine (test & twiki), apache redirect set to 'twiki' redirects 'test' add group to twiki
ReportedBy TWiki:Main.DanaCarrington
Codebase

SVN Range Tue, 14 Feb 2006 build 8800
AppliesTo Engine
Component

Priority Normal
CurrentState No Action Required
WaitingFor

TargetRelease major
Edit | Attach | Watch | Print version | History: r6 < r5 < r4 < r3 < r2 | Backlinks | Raw View |  Raw edit | More topic actions
Topic revision: r6 - 2006-02-17 - HaraldJoerg
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2023 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback