Cannot Add New Clock or Change City Window 11
[SOLVED] Forgot Password -> Error 500
installation problem : MDB2 Error: unknown error
the "actual" time of arrival & departure
Time Tracker UPGRADE INSTRUCTIONS
$ mysql -h localhost -u root -pThen, in MySQL console, use the create database statement:
mysql> CREATE DATABASE timetracker CHARACTER SET = 'utf8mb4';At this point the database named timetracker is created without access permissions. You can see whether it exists by issuing the show databases command. It must be in the list that follows.
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | timetracker | +--------------------+ 4 rows in set (0.00 sec)To exit MySQL console type exit;
mysql> exit;
mysql> GRANT ALL ON timetracker.* TO 'ttuser'@'localhost' IDENTIFIED BY 'ttpassword';In the example above, we have granted all privileges to timetracker db to a MySQL user account ttuser from localhost whose password is ttpassword.
define('DSN', 'mysql://ttuser:ttpassword@localhost/timetracker?charset=utf8mb4');By this point we have an empty database with an account that is allowed to use it.