Last modified: 2011-02-19 08:02:37 UTC
Looks like the installer is broken again. When having MW create a db user itself it goes and creates users with the name "{$wgDBuser}" now. It was previously broken in a different way, I fixed it... now it's broken again... don't feel like fixing it myself right now.
marking as 1.17 blocker for now till we ensure that it isn't.
Removing 1.17 blocker
Confirmed, taking bug. Re-adding blocker status.
The following patch fixes the username, though I'm still unable to log in with that account. Index: MysqlInstaller.php =================================================================== --- MysqlInstaller.php (revision 81910) +++ MysqlInstaller.php (working copy) @@ -463,6 +463,8 @@ public function getSchemaVars() { return array( 'wgDBTableOptions' => $this->getTableOptions(), + 'wgDBuser' => $this->getVar( 'wgDBuser' ), + 'wgDBpassword' => $this->getVar( 'wgDBpassword' ), ); }
Fixed in r82439.