I am trying to: Register the Views and Layout plugin on the site. I put in the key, but it won't save and it doesn't show the plugins when I check the registered sites.
That will create a debug.log file in your wp-content directory which you can examine in any text editor. Try repeating the steps to generate the error, and then consult the debug.log file which should include details of the PHP error.
[21-Nov-2017 16:34:57 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /home/podiatrist2017/public_html/wp-includes/class-wp-hook.php on line 77
[21-Nov-2017 16:34:58 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 40 bytes) in /home/podiatrist2017/public_html/wp-includes/plugin.php on line 109
[21-Nov-2017 16:35:11 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /home/podiatrist2017/public_html/wp-includes/class-wp-hook.php on line 77
[21-Nov-2017 16:35:17 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 64 bytes) in /home/podiatrist2017/public_html/wp-includes/plugin.php on line 894
[21-Nov-2017 16:35:47 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 42 bytes) in /home/podiatrist2017/public_html/wp-content/plugins/wp-views/inc/filters/wpv-filter-meta-field.php on line 1026
[21-Nov-2017 16:35:53 UTC] PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /home/podiatrist2017/public_html/wp-content/plugins/wp-views/inc/filters/wpv-filter-meta-field.php on line 1026
From your debug info it looks as if the PHP memory allocation is adequate, but can you edit your wp-config.php file and add the following to make sure WordPress is availing of the maximum allocation:
You can leave those settings intact so that you don't run into similar issues again. They set the maximum amount of memory the server can allocate to WordPress, but WordPress will only use as much as it needs.