[Solved] CRL manager - revocation reason dropdown is no-op
-
-
$openssl_crl_status is a global pulled in from certs.inc
Something tinkering with your PHP settings may somehow be preventing that variable from being defined. It's not unheard of, but I can't seem to reproduce it here on any of my systems.
What packages do you have installed?
-
What packages do you have installed?
-
I suppose nut or pfBlocker might be causing enough RAM to be used that things are falling out of PHP. Hard to say without testing it though. I don't think I have a big enough image on the card in my ALIX to put all of that on right now.
-
If you edit /etc/inc/certs.inc, find the declaration of
$openssl_crl_status = array(
And then change it to:
global $openssl_crl_status; $openssl_crl_status = array(
Save, and then try it again - does that work?
-
I really need to watch what I copy and paste there… whoops. Fixed the second syntax.
-
Yes, that definitely fixed the issue…