On line 321, it reads:
Code: Select all
if ($extension = 'mysqli' && ini_get('zend.ze1_compatibility_mode')) {
Code: Select all
if ($extension == 'mysqli' && ini_get('zend.ze1_compatibility_mode')) {
The result is that each <OPTION> in the "sql_type" <SELECT> menu all have EMPTY values. In my case, it makes the installation impossible. I suppose it would work if the extension was already mysqli and the zend.ze1 compatility was turned on.
Thanks,
Eddie Caplan
EDIT: I should point out that when I made this change, my installation seems to have completed perfectly.