BibbleWiki Page: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Created page with "=Introduction= This is just a page to keep stuff I learn about wiki =Backup= For this I use mysqldump and backup the entire folder =Overriding Skin= I use vector as my skin. <br> <br> You can amend css <>/MediaWiki:Vector.css<br> <br> You can amend js <>/MediaWiki:Vector.js<br> <br> This is how I get the copy button to work"
 
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
I use vector as my skin. <br>
I use vector as my skin. <br>
<br>
<br>
You can amend css <>/MediaWiki:Vector.css<br>
You can amend css <Wiki URL>/MediaWiki:Vector.css<br>
<br>
<br>
You can amend js <>/MediaWiki:Vector.js<br>
You can amend js <Wiki URL>/MediaWiki:Vector.js<br>
<br>
<br>
This is how I get the copy button to work
This is how I get the copy button to work
=Upgrading=
It may be different but at 1.43 we did the following. Here it is but I bet I forget to open this before doing the next one
==Extensions==
<syntaxhighlight lang="bash">
CSS
Elastica
TemplateStyles
CirrusSearch
TemplateStyles
git clone https://github.com/nbdd0121/MW-Avatar
mv MW-Avatar Avatar
</syntaxhighlight>
==Images==
<syntaxhighlight lang="bash">
mv images images_old
ln -s /xxxxxx/mediawiki_resources/images images
</syntaxhighlight>
==Logo==
Copied logo
<syntaxhighlight lang="bash">
cp ../mediawiki-1.42.1/resources/assets/GreenHands135.png resources/assets/
</syntaxhighlight>
==Run Update==
To do the upgrade
<syntaxhighlight lang="bash">
cd maintenance
./run update
</syntaxhighlight>

Latest revision as of 02:59, 26 March 2025

Introduction

This is just a page to keep stuff I learn about wiki

Backup

For this I use mysqldump and backup the entire folder

Overriding Skin

I use vector as my skin.

You can amend css <Wiki URL>/MediaWiki:Vector.css

You can amend js <Wiki URL>/MediaWiki:Vector.js

This is how I get the copy button to work

Upgrading

It may be different but at 1.43 we did the following. Here it is but I bet I forget to open this before doing the next one

Extensions

CSS
Elastica
TemplateStyles
CirrusSearch
TemplateStyles

git clone https://github.com/nbdd0121/MW-Avatar
mv MW-Avatar Avatar

Images

mv images images_old
ln -s /xxxxxx/mediawiki_resources/images images

Copied logo

cp ../mediawiki-1.42.1/resources/assets/GreenHands135.png resources/assets/

Run Update

To do the upgrade

cd maintenance
./run update