[03:02:37] Hiya! How do I access $wgSitename in a MediaWiki extension? [03:13:49] Aha, figured it out. `global $wgSitename;` on one line, then it's accessible. [18:23:01] Question... How do I proceed with the installer script if I've already set up a database to use? I filled in all the information and each time it dies saying "Access denied for user" with a "CREATE DATABASE" query [18:23:33] It's a VPS so I theoretically could give it root access to create the database and user itself, but I don't see a point in doing that when it's not difficult for me to do that beforehand [18:26:20] Do I just need to edit the install script and tell it to not try to create the database? [18:28:11] Oldiesmann: IIRC, it detects when the database exists already and doesn't attempt to create it again. Are you sure you're giving the exact same name? [18:29:10] Yes. I've double-checked that [18:30:41] Looking once again it looks like it's missing the second e in the database name. Let me try one more time and see [18:32:13] Double checked the name again and it worked this time. Not sure how I didn't notice before [18:34:00] glad it worked this time [19:05:01] One more question. I selected the MinervaNeue theme by default but it keeps telling me that skin is disabled, even though the appropriate wfLoadSkin call is in LocalSettings.php and the skins/MinervaNeue folder exists. I've switched to Vector for now, which works fine, but how do I fix the other one? [19:07:35] Are you trying to use it on non mobile? [19:14:37] Yes. I'm setting this up from my laptop [19:38:03] Figured it out. You have to set $wgDefaultSkin to "minerva" instead of "minervaneue" [23:04:30] Another question for everyone. I'm working on adding templates/modules and want to be able to upload files. I've added the appropriate text at MediaWiki:Licenses but when I select one I get something like 'The license "cc-by-sa-4.0" doesn't exist'. How do I fix this?