by Mark Wilmoth | Jun 12, 2022 | Uncategorized
This is very easy to do. First, make a backup copy of your “mysql” folder in XAMPP. Next, download the zip version of MariaDB 10.5.x and extract the folder to your XAMPP folder. You are not replacing your “mysql” folder. For example, you will...
by Mark Wilmoth | May 3, 2022 | Uncategorized
In Windows, install Apache and MariaDB as services and always use the Services App to start/stop MariaDB because the XAMPP Control Panel can wreck your database when you start and stop it there. While you are at it, you might as well use the Services App to start and...
by Mark Wilmoth | Feb 11, 2022 | Uncategorized
This works with MariaDB. I assume it works with MySQL, but have not tried it. Run this SQL in PHPMyAdmin with phpmyadmin selected: GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO ‘pma’@’localhost’; FLUSH PRIVILEGES; Note that this does...