[Solved] Login screen not visable / not loading after upgrading to 7.11.2

After upgrading SuiteCRM and logging out I could not log back in because the login screen was blank.

I had upgraded from SuiteCRM-7.5.1 to 7.11.2 using the Upgrade Wizard and the files below.
I logged out and back in between upgrades. After the last upgrade the login screen would not load.

https://suitecrm.com/files/145/SuiteCRM-Upgrades/240/SuiteCRM-Upgrade-7.5.x-to-7.7.9.zip
https://suitecrm.com/files/159/SuiteCRM-7.9-Upgrades/267/SuiteCRM-Upgrade-7.7.x-to-7.9.17.zip
https://suitecrm.com/files/161/SuiteCRM-7.10-Upgrades/390/SuiteCRM-Upgrade-7.9.x-to-7.10.14.zip
https://suitecrm.com/files/162/SuiteCRM-7.11-Upgrades/395/SuiteCRM-Upgrade-7.10.x-to-7.11.2.zip

I was able to get it to load the login screen by using these commands (in my FreeNAS iocage jail [os=FreeBSD,httpd=apache24,php=7.3.3])

rmdir /usr/local/www/apache24/data/SuiteCRM/lib/SuiteCRM/Utility
ln -s /usr/local/www/apache24/data/SuiteCRM/lib/Utility /usr/local/www/apache24/data/SuiteCRM/lib/SuiteCRM/Utility
chown www /usr/local/www/apache24/data/SuiteCRM/lib/SuiteCRM/Utility

I am not sure if this should be a bug report and how to make such a report. This took me awhile to find and I hope my solution will help others.
I think my solution works but any suggestions for a better solution are appreciated.

Do you have access to index.php?

if you put these 2 lines when code starts

ini_set(‘display_errors’,1);
error_reporting(E_ALL);