Changes between Version 1 and Version 2 of Ticket #470, comment 8


Ignore:
Timestamp:
01/21/13 11:16:11 (4 years ago)
Author:
chris
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #470, comment 8

    v1 v2  
    4747* http://2011.archive.penguin.webarch.net/forum/ 
    4848 
    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: 
     49And 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: 
    5050 
    5151{{{ 
    5252mysql mysql 
     53mysql> DROP USER 'bbforum'@'bbforum'; 
    5354mysql> CREATE USER 'bbforum'@'localhost' IDENTIFIED BY 'xxx'; 
    54 Query OK, 0 rows affected (0.00 sec) 
    55  
    5655mysql> GRANT ALL ON bbforum.* TO 'bbforum'@'localhost'; 
    57 Query OK, 0 rows affected (0.00 sec) 
    58  
    5956mysql> FLUSH PRIVILEGES; 
    60 Query OK, 0 rows affected (0.00 sec) 
    6157}}} 
    6258