Question
For some reason, when a prospective new user clicks on "cancel" at the "Enter username and password" prompt he would expect to be taken to the register page. Instead he gets a standard server error message. Where should I start to look to debug this issue?
http://www.marcarchambault.com
Thanks, Marc
Environment
--
MarcArchambault - 05 Nov 2004
Answer
bin/.htaccess
--
MartinCleaver - 05 Nov 2004
Reply
Ok, that helped. I had: ErrorDocument 401 URL_path_to_TWiki!/bin/oops/TWiki/TWikiRegistration?template=oopsauth
The instructions in .htaccess state:
#REPLACE THE FOLLOWING STRINGS WITH PATHS SPECIFIC TO YOUR INSTALLATION:
# FILE_path_to_TWiki!
so I needed: ErrorDocument 401 /twiki/bin/oops/TWiki/TWikiRegistration?template=oopsauth
Thanks!