Blank screen on first start of OpenEMR 5.0.2

hi @rdh61, no prob, we’re up for :person_climbing:

let’s bring in the db first

  1. extract the contents of emr_backup.tar on your :floppy_disk: to your Downloads folder
  2. go there in your terminal prompt; cd ~/Downloads
  3. gzip -d openemr.sql.gz
  4. docker ps we’re looking for the container id for the mariadb to use in the next step
  5. docker cp /home/$USER/Downloads/openemr.sql <mariadb container id>:.
  6. docker exec -it <mariadb container id> /bin/bash
  7. mysql -uroot -proot openemr < openemr.sql
  8. exit
  9. docker exec -it $(docker ps | grep _openemr | cut -f 1 -d " ") /bin/sh
  10. wget https://raw.githubusercontent.com/openemr/openemr/rel-502/sql_upgrade.php
  11. run the upgrade script even though not “upgrading” :); go to localhost/sql_upgrade.php in your browser :fox_face:
  12. back to terminal and rm sql_upgrade.php
  13. exit
  14. go to localhost to login and see your data :slight_smile: