On Tuesday, a few of us decided to head down to Miller Ground in Windermere/Bowness for some lakeside bonfire fun.
Spared the arduous task of finding wood (there was a massive heap right by the beach), we got to work right away and soon had a massive inferno going. Once convinced that our fire was hot enough to warm us up, the bravest amongst us decided to go for a dip off the pier. To our surprise the lake wasn’t as cold as might have been expected but there was certainly no hanging about!
Finally, we got cooking burgers and steak whilst toasting a few marshmallows. To end on a high note, we transferred some fire to a metal tray, piled on Dave’s already-smouldering boxer shorts and sent the ensemble on its way… until somebody sank the vessel with some pebbles! Heres some of our best clichés…
June, 2007
29
Jun 07
Miller Ground Fun
19
Jun 07
North Face Trail – Episode 3
After thoroughly enjoying my last ride around this great trail last week, I decided to head back there for another blast. This time, I knew where to expect all the best bits and probably did my fastest ever lap. Sometime soon I would really like to take the whole thing slowly, making notes and taking photos so that I can do a full-on review. Anyway, here are some more photos for the timebeing.
16
Jun 07
North Face Trail… Again
Making the most of a slight gap in the bad spell of weather we have been having recently, I headed out with my french pal to Grizedale for a lap and a bit of the brilliant North Face Trail. This time I knew where some of the better features were hidden (boardwalks, jumps, berms etc) and so we rode it even faster. An excellent ride, recommended to anybody on the hunt for sweet sweet singletrack.
11
Jun 07
Cracking down on Wiki Spam
After having long being plagued by spammers on my WL-HDD Wiki, I have decided to take measures to crack down! One of the main reasons for doing this is that spam decreases rankings in Google. Furthermore, when I am in China from July onwards, I will not be checking my mail as regurarly so spam would go unnoticed which could be damaging.I have therefore upgraded to a more secure and spamproof version of Mediawiki – v1.10
The best way to deal with the spam is to force wiki users to register before editing. Even better is to force them to confirm their email address before they can start editing any of the pages. To force users to register before editing, you will need user permissions such as these in LocalSettings.php:
# Edit Permissions // Implicit group for all visitors $wgGroupPermissions['*' ]['createaccount'] = true; $wgGroupPermissions['*' ]['read'] = true; $wgGroupPermissions['*' ]['edit'] = false; // Stop unregistered users from making edits $wgGroupPermissions['*' ]['createpage'] = false; // Stop unregistered users from making edits $wgGroupPermissions['*' ]['createtalk'] = false; // Stop unregistered users from making edits // Implicit group for all logged-in accounts $wgGroupPermissions['user' ]['move'] = true; $wgGroupPermissions['user' ]['read'] = true; $wgGroupPermissions['user' ]['edit'] = true; $wgGroupPermissions['user' ]['createpage'] = true; $wgGroupPermissions['user' ]['createtalk'] = true; $wgGroupPermissions['user' ]['upload'] = false; $wgGroupPermissions['user' ]['reupload'] = false; $wgGroupPermissions['user' ]['reupload-shared'] = false; $wgGroupPermissions['user' ]['minoredit'] = true; $wgGroupPermissions['user' ]['purge'] = false; // can use ?action=purge without clicking "ok" // Implicit group for accounts that pass $wgAutoConfirmAge $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true; // Implicit group for accounts with confirmed email addresses // This has little use when email address confirmation is off $wgGroupPermissions['emailconfirmed']['emailconfirmed'] = true; // Users with bot privilege can have their edits hidden // from various log pages by default $wgGroupPermissions['bot' ]['bot'] = true; $wgGroupPermissions['bot' ]['autoconfirmed'] = true; $wgGroupPermissions['bot' ]['nominornewtalk'] = true; $wgGroupPermissions['bot' ]['autopatrol'] = true; // Most extra permission abilities go to this group $wgGroupPermissions['sysop']['block'] = true; $wgGroupPermissions['sysop']['createaccount'] = true; $wgGroupPermissions['sysop']['delete'] = true; $wgGroupPermissions['sysop']['deletedhistory'] = true; // can view deleted history entries, but not see or restore the text $wgGroupPermissions['sysop']['editinterface'] = true; $wgGroupPermissions['sysop']['import'] = true; $wgGroupPermissions['sysop']['importupload'] = true; $wgGroupPermissions['sysop']['move'] = true; $wgGroupPermissions['sysop']['patrol'] = true; $wgGroupPermissions['sysop']['autopatrol'] = true; $wgGroupPermissions['sysop']['protect'] = true; $wgGroupPermissions['sysop']['proxyunbannable'] = true; $wgGroupPermissions['sysop']['rollback'] = true; $wgGroupPermissions['sysop']['trackback'] = true; $wgGroupPermissions['sysop']['upload'] = true; $wgGroupPermissions['sysop']['reupload'] = true; $wgGroupPermissions['sysop']['reupload-shared'] = true; $wgGroupPermissions['sysop']['unwatchedpages'] = true; $wgGroupPermissions['sysop']['autoconfirmed'] = true; $wgGroupPermissions['sysop']['upload_by_url'] = true; $wgGroupPermissions['sysop']['ipblock-exempt'] = true; // Permission to change users' group assignments $wgGroupPermissions['bureaucrat']['userrights'] = true;
To implement the force email confirmation feature, you simply need to add this line of code to LocalSettings.php:
$wgEmailConfirmToEdit = true;
Make sure that the following value is also true in LocalSettings.php
$wgEmailAuthentication = true;
Users will be notified when they try and edit a page to first confirm their email address. This only has to be done once.
Hopefully this should keep the spammers at bay for a little while and give me some peace on my holidays!








































































