XenForo 2.2.15 Released Full | XenForo 2.2 ENXF

Released 2x XenForo 2.2.15 Released Full | XenForo 2.2 ENXF 2.2.15

No permission to download

Linda

Well-known member
Registered
Joined
Oct 22, 2021
Messages
104
Points
38

Reputation:

Question about: "XenForo upgrade check failed"

How can I disable this process?
XenForo upgrade check failed.jpg
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,497
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

PHP:
    public function check(&$detailedError = null)
    {
        $client = $this->app->http()->client();
        $errorMessage = null;
        $errorCode = null;
        $checkData = [];
        return true;
.
.
.
        return $upgradeCheck;
    }
 

Linda

Well-known member
Registered
Joined
Oct 22, 2021
Messages
104
Points
38

Reputation:

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;
    }
BattleKingThank you very much. I have taken it over and will let you know tomorrow.
 

fmsc88

Collaborate
Collaborate
Registered
Joined
May 22, 2019
Messages
104
Points
53

Reputation:

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;
    }
BattleKingAny idea how to stop the File health check also?
 
Top