Talk:Main Page
From Semantic MediaWiki Community Wiki
[edit] Captcha for registered users?
Whats the deal with that? Every page I edit, even though I'm registered and not adding 'external links' seems to trigger a captcha. I'm tempted to write a bot to solve the capthca for me! --Dan Bolser 11:21, May 9, 2009 (UTC)
Below is my suggestion for how to set up the captcha:
The following set rules strikes the right balance between keeping spam down and allowing unrestrictive access to users:
- Any user can edit the wiki, because registration puts people off.
- Unregistered users are always presented with a captcha.
- Registration requires a captcha.
- Registered users are never presented with a captcha.
In the MediaWiki config those rules looks like this:
// Fix the default captcha behaviour $wgGroupPermissions['*' ]['skipcaptcha'] = false; $wgGroupPermissions['user' ]['skipcaptcha'] = true; $wgGroupPermissions['autoconfirmed']['skipcaptcha'] = true; $wgGroupPermissions['bot' ]['skipcaptcha'] = true; // registered bots $wgGroupPermissions['sysop' ]['skipcaptcha'] = true; $wgCaptchaTriggers['edit'] = true; $wgCaptchaTriggers['create'] = true; $wgCaptchaTriggers['createaccount'] = true;
(all other permissions having their default values)
[edit] Main page could do with more links
Sidebar (at least in "Cologne Blue" skin) suggests that the wiki contains little apart from user pages and special pages. And I can't see an "Add data" link as mentioned. How about a "Categories" panel like the one we get on a "Browse data" page but accessible in one click instead of two? Robin Patterson 12:00, June 19, 2010 (UTC)
- You shouldn't use the Cologne Blue skin, then. Yaron Koren 23:26, June 20, 2010 (UTC)

