https://bugzilla.wikimedia.org/show_bug.cgi?id=71984
--- Comment #2 from bluelupo <[email protected]> --- Hi Andre, I have debugging enabled in LocalSettings.php with: $ wgDebugLogFile = "debug.log"; Now I have a page in my wiki changed and stored, usually in the CAPTCHA input box should appear. Then I searched the file for the string "ConfirmEdit". There was a hit in the debug file. ConfirmEdit: no need to show captcha. Following code for the configuration I have added to my LocalSettings.php: ----------------------------------------------------------------------------- require_once "$IP/extensions/ConfirmEdit/QuestyCaptcha.php"; $wgCaptchaClass = 'QuestyCaptcha'; $arr = array ( 'A question?' => 'An answer!', "What is this wiki's name?" => "$wgSitename", 'Please write the magic secret, "passion", here:' => 'passion', 'Type the code word, "567", here:' => '567', 'Which animal? <img src="http://www.example.com/path/to/filename_not_including_dog.jpg" alt="" title="" />' => 'dog', 'Fill in the blank: Blue is a ...' => array( 'colour', 'color' ), ); foreach ( $arr as $key => $value ) { $wgCaptchaQuestions[] = array( 'question' => $key, 'answer' => $value ); } ----------------------------------------------------------------------------- What can I do that the CAPTCHA is working again? Regards Michael -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
