diff --git a/INSTALL.txt b/INSTALL.txt index 9b8a966..604ef23 100755 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -29,7 +29,7 @@ Setup - Connect to your MySQL server with an administrative user and create a database for CATS: CREATE DATABASE cats_db; - Create a user for CATS to access the database: - CREATE USER cats-user IDENTIFIED BY ''; + CREATE USER 'cats_user' IDENTIFIED BY ''; - Grant the necessary user rights. These are a bit more than the absolute minimum: GRANT DELETE, INSERT, SELECT, UPDATE ON cats_db.* TO cats_user; - Change the database context to the newly created cats_db: diff --git a/index.php.template b/index.php.template index 0165758..aa43e0f 100755 --- a/index.php.template +++ b/index.php.template @@ -1,10 +1,13 @@