Question
Is there an official or preferred way to disable the registration for new users?
Environment
--
MarkusKolb - 15 Sep 2004
Answer
On possible way, may be wrong:
- move twiki/bin/register file to somewhere nobody can access
--
ChunhuaLiao - 16 Oct 2004
Don't forget to edit TWiki.TWikiRegistration as well.
--
MartinCleaver - 16 Oct 2004
You do not need to move register, if you are using Basic Authentication what you can do is edit the /twiki/bin/.htaccess file and change
<FilesMatch "configure.*">
require user "BigbadAdministrator"
</FilesMatch>
to
<FilesMatch "(register|configure).*">
require user "BigbadAdministrator"
</FilesMatch>
that way administrators are able to still use the form to register for other users while keeping the file locations intact.
--
NicodemusChan - 09 Oct 2006