MySQL

Log in to the console as root: mysql -u root -p To create a new user: GRANT ALL PRIVILEGES ON *.* TO ‘username’@’localhost’ IDENTIFIED BY ‘password’; (restrict permissions as necessary)

To resolve the mbstring extension not found error with phpMyAdmin, enable the extension. Open your php.ini file and ensure that extensions are enabled, and pointing to the correct directory: extension_dir […]