AdminZone:Maintaining this Wiki: Difference between revisions

From pronounmail wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 25: Line 25:
you might want to run <code>composer update</code> and then <code>composer install</code> in the wiki folder after that. also <code>php maintenance/run.php update</code> for good measure
you might want to run <code>composer update</code> and then <code>composer install</code> in the wiki folder after that. also <code>php maintenance/run.php update</code> for good measure
[[Category:Pages with some amount of information in them]]
[[Category:Pages with some amount of information in them]]
[[Category:AdminZone]]

Latest revision as of 14:40, 4 February 2025

If you are a non-employee who has discovered this service amid the ruins of civilization, welcome! And remember: Email is the future, and the future starts with you.

updating all extensions

  • cd extensions
  • ./piss.sh
    • You might want to modify the release the thing tries to fetch
    • WARNINGN: This only updates the extensions that are available on the wikimediawiki gerrit
  • cd ../
  • php maintenance/run.php update

rats!! that broke everything please help

mediawiki uses Composer, some sort of "npm" you children use but for php. make sure this is in a file called composer.local.json:

{
    "extra": {
        "merge-plugin": {
            "include": [
                "extensions/*/composer.json",
                "skins/*/composer.json"
            ]
        }
    }
}

you might want to run composer update and then composer install in the wiki folder after that. also php maintenance/run.php update for good measure