Hi @treborcram,
I’m afraid, we’ll need further information on what exact critical error was generated in order to have a better idea of what might have caused it.
As mentioned in the above error, did you get an email with further details on what exact error was causing it? If yes, please share the error logs mentioned in the email.
If you haven’t got any emails, you can enable debug mode in order to further investigate what might be causing the issue.
To enable debug mode, open your wp-config.php file located in your root directory, and look for define(‘WP_DEBUG’, false);. Change it to:
define('WP_DEBUG', true);
In order to enable the error logging to a file on the server you need to add:
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
define( 'SCRIPT_DEBUG', true );
After making the above changes, please try to replicate the issue. Once done, the related error will be saved to a debug.log log file inside the /wp-content/ directory.
Please share the logs picked in the debug.log file in the next reply, so that we could have a better idea.
You can find more details about debugging here.
Please let us know how that goes, have a nice day.
Kind Regards,
Nithin`