motowebmaster
Well-known member
- Affected version
- 2.2.16
Started from this discussion, after a PHP 8.2 upgrade was distributed recently:
It would be interesting to see an official response. Submitted a support ticket.
I did two things to solve this issue:
1. I disabled all caches via config.php including CSS cache and redis cache (also the regular XF based cache or any other caches your have under config.php)
2. I've edited the Math.PHP file under src -> vendor -> web-token->jwt-util-ecc
backup what you have now and replace line 53
from:
Code:return \gmp_pow($base, $exponent);
to:
Code:return $base ** $exponent;
clear cloudflare cache as well after all of that and see if it helped...
It would be interesting to see an official response. Submitted a support ticket.