[22:12:59] <Guest44>	 Heyo, so, I feel a bit dumb. I've made a wiki family and have 7 wikis on it, and I would like to add 2 more. I already made the DBs, added the LocalSettings stuff I needed to, granted permissions to shared DBs and such, but I can't seem to get the update scripts to work. It says cannot upgrade from versions older than 1.35 (the wiki installation is
[22:12:59] <Guest44>	 on 1.43)
[22:13:27] <Guest44>	 It's a single installation on the same host, separate DBs for each wiki
[22:31:05] <moonmoon>	 Guest44: so that error message can be a bit misleading if you have underlying DB connection issues
[22:31:33] <moonmoon>	 chances are the DB user doesn't have full permissions on all of the databases it needs to access (including shared dbs due to shared tables or shared images)
[22:34:14] <Guest44>	 So I've got the central DB set up as the meta wiki DB, and I've got a centralauth DB for global blocking extension. I granted the meta admin + centralauth admin full permissions on the 2 new DBs, and I also gave the 2 new DB admins full permissions on the meta wiki DB and centralauth DB.
[22:35:28] <Guest44>	 Just double checked the LocalSettings_*.php DB users and passwords, all looks good.
[22:39:11] <Guest44>	 CREATE DATABASE newwiki;
[22:39:12] <Guest44>	 CREATE USER 'newwikiadmin'@'localhost' IDENTIFIED BY 'newpassword';
[22:39:12] <Guest44>	 GRANT ALL PRIVILEGES ON newwiki.* TO 'newwikiadmin'@'localhost' IDENTIFIED BY 'newpassword' WITH GRANT OPTION;
[22:39:13] <Guest44>	 GRANT ALL PRIVILEGES ON newwiki.* TO 'centralauth'@'localhost';
[22:39:13] <Guest44>	 GRANT ALL PRIVILEGES ON newwiki.* TO 'meta'@'localhost';
[22:39:14] <Guest44>	 GRANT ALL PRIVILEGES ON meta.* TO 'newwikiadmin'@'localhost';
[22:39:14] <Guest44>	 GRANT ALL PRIVILEGES ON centralauth.* TO 'newwikiadmin'@'localhost';
[22:39:15] <Guest44>	 FLUSH PRIVILEGES;
[22:39:15] <Guest44>	 EXIT;
[22:39:19] <Guest44>	 I basically ran that for both wikis
[22:39:27] <Guest44>	 Oh, not sure if that showed up, sorry
[22:39:57] <moonmoon>	 it did, although in the future probably best to use a pastebin like https://dpaste.org
[22:40:03] <Guest44>	 Gotcha
[22:40:49] <Guest44>	 I also made sure to update the meta wiki first but not sure if that's necessary
[22:51:06] <Guest44>	 Do I need to go to my-domain.wiki/mw-config/ first?
[22:51:27] <Guest44>	 I can access it, I just don't want to accidentally overwrite anything for other wikis
[22:52:01] <Guest44>	 Yeah, it's asking me to upgrade the installation, even though it's already on 1.43
[22:56:14] <Guest44>	 Okay, in the web installer, it's saying the db user in the LocalSettings_*.php does not have sufficient permissions
[22:56:22] <Guest44>	 I am really not sure what I could be missing, I granted all permissions