Figured out what the issue was in the debug log:
PHP Parse error: syntax error, unexpected end of file in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/mixcloud-embed/mixcloud-embed-widget.php on line 122
Needed to add php to <? on line 115 to look like <?php instead of <? As it was. The reason this may not affect everyone is because in the PHP.ini settings you would need:
short_open_tag = On in order to not hit it
Figured out what the issue was in the debug log:
PHP Parse error: syntax error, unexpected end of file in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/mixcloud-embed/mixcloud-embed-widget.php on line 122
Needed to add php to <? on line 115 to look like ” <?php” instead of ” <?” As it was. The reason this may not affect everyone is because in the PHP.ini settings you would need:
short_open_tag = On in order to not hit it