The error logs shows that this task is failing to run every night.  If I try to run that task manually I get:
The 65creedmoor.com page isn’t working
65creedmoor.com is currently unable to handle this request.
HTTP ERROR 500
			
			
			
				/me smells bug
Try that one (that is the first most evident error in the file), open ScheduledTaks.class.php (directory sources/subs), search:
		while ($row = $db->fetch_assoc($request))
		{
			require_once(ADMINDIR . '/ManagePaid.controller.php');
			removeSubscription($row['id_subscribe'], $row['id_member']);
		}
and replace it with:
		require_once(SUBSDIR . '/PaidSubscriptions.subs.php');
		while ($row = $db->fetch_assoc($request))
		{
			removeSubscription($row['id_subscribe'], $row['id_member']);
		}
			 
			
			
				Thank you very much, that fixed the problem!
			
			
			
				Tracked: https://github.com/elkarte/Elkarte/issues/2538