Here are some screenshots.


When in doubt, execute this giant pile of commands and try again. We have to do this non stop during development.
rm -rf var/di var/generation generated/code
Clean and Rebuild
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento indexer:reindex
php bin/magento setup:static-content:deploy
Reset Permissions
chown <user>:<group> -R *
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find ./var -type d -exec chmod 777 {} \;
find ./pub/media -type d -exec chmod 777 {} \;
find ./pub/static -type d -exec chmod 777 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml
Thanks for the suggestions, there are a few there I wasn't already using and I'm sure they will come in handy. Of course after several days of trying to figure this out, the answer presented itself as soon as I posted an issue here.
For me the problem was mod_pagespeed, specifically the command:
ModPagespeedEnableFilters pedantic,remove_comments
This was inserted based upon a tutorial online and as soon as I commented it out, everything came to life on the admin side of Magento.
Thanks again for the great list of Magento tools!
Most helpful comment
Thanks for the suggestions, there are a few there I wasn't already using and I'm sure they will come in handy. Of course after several days of trying to figure this out, the answer presented itself as soon as I posted an issue here.
For me the problem was mod_pagespeed, specifically the command:
ModPagespeedEnableFilters pedantic,remove_commentsThis was inserted based upon a tutorial online and as soon as I commented it out, everything came to life on the admin side of Magento.
Thanks again for the great list of Magento tools!