Symptoms
When using CloudLinux's PHP Selector I am unable to switch PHP versions under the Options tab.
Description
This is due to a recent bug in lvemanager-6.2.6-1.
Workaround
The workaround involves adding/altering the following lines in the file /opt/alt/python37/lib/python3.7/site-packages/clselect/cluseroptselect.py
Before:
cmd[1:1] = ['-d', 'opcache.enable_cli=0',
'-d', 'zlib.output_compression=Off',
'-d', 'auto_append_file=none',
'-d', 'auto_prepend_file=none']
After:
cmd[1:1] = ['-d', 'opcache.enable_cli=0',
'-d', 'zlib.output_compression=Off',
'-d', 'auto_append_file=none',
'-d', 'auto_prepend_file=none',
'-d', 'disable_functions=none']
Comments
0 comments
Article is closed for comments.