[12:38:34] I noticed while running MediaWiki in localhost and testing the Widgets extension that JavaScript in a widget was not executed. It's the same in Firefox and Chromium. Can I fix this somehow? [14:59:55] buovjaga: the problem may be an error in javascript. Have you checked the browser's error console? [15:05:29] Vulpix: there is nothing in the console. It worked in production: https://wiki.documentfoundation.org/index.php?title=Widget%3ACodetabs&type=revision&diff=729156&oldid=701577 [15:06:21] not even logging to console worked [15:14:15] Does the script appear if you view the HTML source code of the page including that widget? Maybe the page needs a purge [15:31:57] Vulpix: argh, you were right :) Purge fixed it. Thanks [15:32:40] floss your teeth and purge your wiki pages, the responsibilities of life [17:30:06] I'm creating a new wikimedia installation based on an old one. I copied the configuration (including a mariadb database) and started it. The database instance created the user, database, and permissions no problem. Now visiting the webpage, I see, "Deprecated: Caller from LCStoreDB::get ignored an error originally raised from MessageCache::loadFromDB(en)-big: [1146] Table 'peer-production.pp_page' doesn't [17:30:12] exist in /var/www/html/peer-production/includes/debug/MWDebug.php on line 382 [17:30:15] I remember setting up mediawiki last time, there was a "wizard" to bootstrap the settings file and database. It looks like mediawiki is skipping this step, but there's an error because the database isn't properly bootstrapped? [17:34:24] lmat: you need to run update.php from the command line, since you're actually upgrading an old database schema [17:34:35] Vulpix: The database is empty. [17:34:59] then you need to run the installer [17:35:38] You'll have to remove/rename LocalSettings.php, complete the installer, then restore the LocalSettings.php [17:36:00] Vulpix: Okay, thank you! [17:36:21] and run update.php if your old LocalSettings.php included extensions that require schema changes [17:44:23] Vulpix: Thank you. All done!