If you've forgotten your xibo_admin account password and don't have any way to recover access to your Xibo system, you can reset the xibo_admin account password as follows:
- Connect to the Xibo database and run the following SQL. You could do that from the mysql command line application, or via a web interface such as PHPMyAdmin:
UPDATE `user` set `UserPassword` = MD5('password'), CSPRNG = 0 WHERE `UserID` = 1 LIMIT 1;
- Your xibo_admin password will then be "password". Please ensure you then change it as soon as you can afterwards.