BattleKing
Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
- Joined
- May 24, 2020
- Messages
- 3,529
- Points
- 523
Reputation:
You can disable the whole check here:
src\XF\Service\Upgrade\Checker.php and add return true; after $checkData = []; in function check
src\XF\Service\Upgrade\Checker.php and add return true; after $checkData = []; in function check
PHP:
public function check(&$detailedError = null)
{
$client = $this->app->http()->client();
$errorMessage = null;
$errorCode = null;
$checkData = [];
return true;
.
.
.
return $upgradeCheck;
}
- Joined
- Oct 22, 2021
- Messages
- 123
- Points
- 38
Reputation:
- By Linda
You can disable the whole check here:
src\XF\Service\Upgrade\Checker.php and add return true; after $checkData = []; in function check
PHP:public function check(&$detailedError = null) { $client = $this->app->http()->client(); $errorMessage = null; $errorCode = null; $checkData = []; return true; . . . return $upgradeCheck; }
- By fmsc88
You can disable the whole check here:
src\XF\Service\Upgrade\Checker.php and add return true; after $checkData = []; in function check
PHP:public function check(&$detailedError = null) { $client = $this->app->http()->client(); $errorMessage = null; $errorCode = null; $checkData = []; return true; . . . return $upgradeCheck; }