Changes between Version 1 and Version 2 of Ticket #470, comment 8
- Timestamp:
- 01/21/13 11:16:11 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #470, comment 8
v1 v2 47 47 * http://2011.archive.penguin.webarch.net/forum/ 48 48 49 And tha wasn't working because, although the database had been imported a user hadn't been created,this was done to fix it:49 And that wasn't working because, although the database had been imported a user hadn't been created correctly see ticket:470#comment:7 so this was done to fix it: 50 50 51 51 {{{ 52 52 mysql mysql 53 mysql> DROP USER 'bbforum'@'bbforum'; 53 54 mysql> CREATE USER 'bbforum'@'localhost' IDENTIFIED BY 'xxx'; 54 Query OK, 0 rows affected (0.00 sec)55 56 55 mysql> GRANT ALL ON bbforum.* TO 'bbforum'@'localhost'; 57 Query OK, 0 rows affected (0.00 sec)58 59 56 mysql> FLUSH PRIVILEGES; 60 Query OK, 0 rows affected (0.00 sec)61 57 }}} 62 58