Hi guys,
I'm running
MediaWiki: 1.11.0 PHP: 5.2.0 (cgi-fcgi) MySQL: 5.1.72-community Server: IIS 8.5 (Win 2012 R2)
and I added inside my LocalSettings.php
$wgGroupPermissions['*']['read'] = false;
to prevent anonymous user to read my wiki.
So far so good, unfortunately, every time an anonymous user clicks on an "Special" page on my index.php (e.g. random article) he sees a very nasty error message: Internal Error - Invalid special page name "".
If I disable "$wgGroupPermissions['*']['read'] = false;" inside my LocalSettings.php the error message is gone.
Is there any way to hide this special pages for anonymous users? I'm looking for something like this:
- navigation
- mainpage|mainpage
- portal-url|portal
- currentevents-url|currentevents
- recentchanges-url|recentchanges
if (!anonymousUser) {
** randompage-url|randompage
}
- helppage|help
- sitesupport-url|sitesupport
inside my Sidebar (index.php?title=MediaWiki:Sidebar)
Is there any way to solve my issue? Thanks in advance. Please don't ask me about my MW version.