<div dir="ltr"><div><div>OK - so per the info here, you have to set the type of Captcha and add in editing and create page as triggers requiring Captcha.  <br><br></div>As an example to use QuestyCaptcha a the bottom of the LocalSettings.php file:<br><br><a href="https://www.mediawiki.org/wiki/Extension:ConfirmEdit#QuestyCaptcha">https://www.mediawiki.org/wiki/Extension:ConfirmEdit#QuestyCaptcha</a><br><br></div>And make sure the triggers are set:<br><div><div><br><a href="https://www.mediawiki.org/wiki/Extension:ConfirmEdit#Configuration">https://www.mediawiki.org/wiki/Extension:ConfirmEdit#Configuration</a> <br><br></div><div>So, for example (you might want to change the questions), but the below should at least stop the bleeding?<br><br>require_once "$IP/extensions/ConfirmEdit/ConfirmEdit.php";<br><br>// Use this line ONLY if your MediaWiki version is 1.25 or newer:<br>//wfLoadExtension( 'ConfirmEdit/QuestyCaptcha' );<br>// Use this line ONLY if your MediaWiki version is older than 1.25:<br>require_once "$IP/extensions/ConfirmEdit/QuestyCaptcha.php";<br><br>$wgCaptchaClass = 'QuestyCaptcha';<br><br>// Add your questions in LocalSettings.php using this format<br>$wgCaptchaQuestions[] = array( 'question' => "A question?", 'answer' => "An Answer");<br>$wgCaptchaQuestions[] = array( 'question' => 'How much wood would a woodchuck chuck if a woodchuck could chuck wood?', 'answer' => 'as much wood as...' );<br>$wgCaptchaQuestions[] = array( 'question' => "What is this wiki's name?", 'answer' => "$wgSitename" );<br>// You can also provide several acceptable answers to a given question (the answers shall be in lowercase):<br>$wgCaptchaQuestions[] = array( 'question' => "2 + 2 ?", 'answer' => array( '4', 'four' ) );<br><br>$wgCaptchaTriggers['edit']          = true; <br>$wgCaptchaTriggers['create']        = true; <br><br></div><div><div><div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><span style="font-family:arial,helvetica,sans-serif">J.P. Maxwell / <a href="http://www.tipit.net" target="_blank">tipit.net</a> <br><br></span></div></div></div></div></div>
<br><div class="gmail_quote">On Tue, Feb 23, 2016 at 12:55 AM, Tom Fifield <span dir="ltr"><<a href="mailto:tom@openstack.org" target="_blank">tom@openstack.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">For wiki.o.o, I believe this is at:<br>
<br>
<a href="https://wiki.openstack.org/wiki/Special:Version" rel="noreferrer" target="_blank">https://wiki.openstack.org/wiki/Special:Version</a><span class=""><br>
<br>
On 23/02/16 14:51, JP Maxwell wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="">
I did setup a wiki and have a look at this briefly.   Can you confirm<br>
what extensions you are loading?  When you setup the wiki it generates a<br>
localsettings.php file that lists the extensions:<br>
<br>
<br>
<br></span><span class="">
Inline image 1<br>
<br>
# Enabled Extensions. Most extensions are enabled by including the base<br>
extension file here<br>
# but check specific extension documentation for more details<br>
# The following extensions were automatically enabled:<br>
wfLoadExtension( 'ConfirmEdit' );<br>
wfLoadExtension( 'InputBox' );<br>
wfLoadExtension( 'SpamBlacklist' );<br>
wfLoadExtension( 'TitleBlacklist' );<br>
wfLoadExtension( 'WikiEditor' );<br>
<br>
I think if you have that ConfirmEdit extension you can enable captcha<br>
when creating new pages / editing existing ones.  In addition, there do<br>
seem to be some spam extensions that come built in.<br>
<br>
</span><br></blockquote></blockquote></div></div></div></div></div></div></div>