Wiki xliving
Wiki for xliving.
Domain name.[bewerken | brontekst bewerken]
- Free domain name registration seems to have its issues.
Wiki[bewerken | brontekst bewerken]
- Hosting via Hostinger. Expires 2022-11-30. Site via https://www.000webhost.com/ gets easily unusable due to limitations
- MediaWiki on Hostinger via Auto install. Info: https://support.hostinger.com/en/articles/1583296-can-i-install-applications-automatically-with-hpanel.
- Add WikiEditor extension toolbar.
- Install VisualEditor extension.
- Adding subpages. Info: https://www.mediawiki.org/wiki/Help:Subpages. Superpages? Namespace on MediaWiki installation, e.g. https://www.mediawiki.org/wiki/Special:AllPages/Extension? Custom namespace "Issue" is a non built-in namespace.
- Change page which is main page via MediaWiki:Mainpage. Info about this: https://m.mediawiki.org/wiki/Manual:Main_Page.
- Edit sidebar via page MediaWiki:Sidebar.
- Sidebar tree/menu https://www.mediawiki.org/wiki/Extension:TreeAndMenu. Example https://passwordmaker.org.
- https://m.mediawiki.org/wiki/Manual:RevisionDelete?
- Skin. Info: https://mediawiki.org/wiki/Manual:Mobiles,_tablets_and_responsive_design
- Backup and restore MediaWiki installation. https://m.mediawiki.org/wiki/Manual:Restoring_a_wiki_from_backup
- Language https://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_make_my_wiki_serve_all_languages? Add UniversalLanguageSelector extension to MediaWiki installation. See https://www.mediawiki.org/wiki/Extension:UniversalLanguageSelector and info https://www.mediawiki.org/wiki/Universal_Language_Selector. MediaWiki Language Extension Bundle https://www.mediawiki.org/wiki/MediaWiki_Language_Extension_Bundle/installation.
- Manually changing page language (see https://www.mediawiki.org/wiki/Manual:$wgPageLanguageUseDB), add following lines in LocalSettings.php.
$wgPageLanguageUseDB = true; $wgGroupPermissions['user']['pagelang'] = true;
- translation administrators group + users. https://www.mediawiki.org/wiki/Manual:User_rights
Pages multilingual on MediaWiki installation, e.g. Wikipedia.
Maybe using links https://www.mediawiki.org/wiki/Help:Links/nl#Interwiki_links?
- Change dafault page content and interface languages by modify following line in LocalSettings.php:
$wgLanguageCode = 'nl';
- mass move
- Enable file upload. https://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_enable_uploading?
- https://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_change_the_icon_in_the_browser's_address_line_(favicon)?
- Change the logo at the left side of the screen. https://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_change_the_logo?
Created a new logo image file with width= 135px by height= 135px. Saved the image as Ecos.png. Uploaded the image in wiki with use of normal file uploading interface. This allows the logo to be replaced easily. Protect the image page.
Modify the $wgLogo line in LocalSettings.php. I could use:
$wgLogos = [ '1x' => "{$wgScriptPath}/images/7/77/Ecos.png" ];
or
$wgLogo = "{$wgScriptPath}/images/7/77/Ecos.png";
To see result: http://xliving.tk/wiki/index.php/Main_Page?action=purge
- list subpages
- Change the default skin for the entire site
In the localsettings.php file search for $wgDefaultSkin and change it to ‘standard’. Save the localsettings.php file and reload your website. Try out the other skins and pick the one you like best.
In the following box you will find the code for the localsettings.php file.
## Default skin: you can change the default skin. Use the internal symbolic ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook': $wgDefaultSkin = 'monobook';
- mediawiki sidebar tree menu
... http://open4a.com/files/open4a-Getting-Started-with-mediawiki.pdf
Renaming user see https://www.mediawiki.org/wiki/Extension:Renameuser, add to LocalSettings.php:
wfLoadExtension( 'Renameuser' );
Using a MediaWiki installation to document internal systems where i’m currently at, and although we all have users it’s easy to forget to login before making edits. This results in a history full of IP addresses rather than names, which is a bit less useful. So, to prevent us from forgetting to login we decided to force ourselves to log in by disabling anonymous edits. You do that by adding the following to your LocalSettings.php.
$wgGroupPermissions['*']['edit'] = false;
Source: https://www.geekality.net/2013/06/20/mediawiki-disable-anonymous-edits/