I installed ConfirmAccount Extension according to the instructions provided here: https://www.mediawiki.org/wiki/Extension:ConfirmAccount
When a new user clicks the 'Request account' link on the top right of the page, it refreshes and nothing has changes. It remains on the 'Login required' Page.
Product Version
MediaWiki 1.26.0
PHP 5.3.3 (apache2handler)
MySQL 5.6.17
There are no entries in the apache error log.
The apache access log simply gives:
108.x.x.x - - [03/Dec/2015:17:29:09 -0500] "GET /index.php/Special:RequestAccount HTTP/1.1" 200 9692 "http://wiki.mycompany.com/index.php/Special:RequestAccount" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
108.x.x.x - - [03/Dec/2015:17:29:10 -0500] "GET /opensearch_desc.php HTTP/1.1" 200 926 "-" "com.apple.Safari.SearchHelper/10601.2.3 CFNetwork/720.5.7 Darwin/14.5.0 (x86_64)"
I ran the update.php and the additional database tables where created.
The upload directory is writable.
Here is some of my LocalSettings.php
...
$wgGroupPermissions['*']['createaccount'] = true;
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['*']['read'] = false;
...
require_once "$IP/extensions/ConfirmAccount/ConfirmAccount.php";
$wgConfirmAccountContact = "me@mycompany.com";
Does anyone know what I should check next? Thanks.