Installation bug in v1.6.7

Please report bugs here!

Moderator: Thorsten

Post Reply
EddieC
Posts: 1
Joined: Tue Dec 12, 2006 5:16 am
Location: Iowa, USA

Installation bug in v1.6.7

Post by EddieC »

In v1.6.7 ( http://www.phpmyfaq.de/download.php?do= ... l&ext=.zip ), there is a bug in install/installer.php that makes installation impossible for me.

On line 321, it reads:

Code: Select all

            if ($extension = 'mysqli' && ini_get('zend.ze1_compatibility_mode')) {
which SETS $extension to 'mysqli' when it should read:

Code: Select all

            if ($extension == 'mysqli' && ini_get('zend.ze1_compatibility_mode')) {
which COMPARES $extension.

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.
matteo
Posts: 572
Joined: Sun Nov 20, 2005 6:53 pm
Location: Italy

Post by matteo »

Hi Eddie,
we're ready to release 1.6.8 for fixing this simple but blocking issue: it has been already found (see 2 other posts in the forum) and we already fixed it in CVS. BTW, thanks for choosing PMF ;).
For all: in the next days 1.6.8 will see the light.

Ciao,
Matteo
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Post Reply