Dear @sleepingsage
We apologize for the issue you’re experiencing. It appears to be a website-specific problem and to properly diagnose and resolve it, we would need to thoroughly inspect your website. Please reach out to us at https://www.themeum.com/support/ for assistance.
Thank you.
Thread Starter
Aubrey
(@sleepingsage)
Okay, that’s quite odd, though, as I have barely made any modifications directly to tutor since installing it. I have been working on the backend as well as other plugins. I think the extent to which I have modified Tutor directly are some settings found within the panels, and a couple of text blocks on a page. Strange.
I submitted an email to support.
-
This reply was modified 2 years, 11 months ago by
Aubrey.
Thread Starter
Aubrey
(@sleepingsage)
Oh, I believe the error is with regard to it being placed in maintenance mode.
public function check_if_maintenance() {
if ( ! is_admin() && ! $this->is_wplogin() ) {
$maintenance_mode = (bool) get_tutor_option( 'enable_tutor_maintenance_mode' );
if ( false === $maintenance_mode || current_user_can( 'administrator' ) ) {
return;
}
104----> header( 'Retry-After: 600' );
include tutor()->path . 'views/maintenance.php';
die();
}
}