Cannot enable PHP 8.3 JIT for some reason on Debian 13

#1
Hey guys, I have a strange issue where I can set values in the php.ini for example opcache.enable=1 and see those changes being applied when I look at the phpinfo page but no matter what, the Zend Opcache summary shows JIT disabled.

I added this to my php.ini and killed all lsphp to force it to reload lsphp with the new ini
; JIT Specific Settings
opcache.jit=tracing
opcache.jit_buffer_size=16M

Tried replacing opcache.jit=on
That also did not work

The above doesn't work either.
Can anyone with Debian 13 confirm whether they can get JIT enabled?
Thanks so much!!
 
#3
Thank you!!! The test link didn't work by the time I saw it but I just figured it out. So apparently ioncube causes JIT to become disabled for 8.3. I'm guessing this may be the case for other versions as well.
 
Top