Skip to content

Commit

Permalink
Merge pull request #3 from milindzend/master
Browse files Browse the repository at this point in the history
Fixed incorrect path to mysqli.so in db_params.lib
  • Loading branch information
rbZend authored Jul 16, 2019
2 parents e4dcccc + 77d91fc commit 4c41d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZSST_Linux/share/support_tool/db_params.lib
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ if [ "$dbtype" == "MYSQL" ]; then
dbpw=$(grep -E '^\s*zend.database.password' $ZCE_PREFIX/etc/zend_database.ini | sed 's@ @@g' | cut -d '=' -f 2 | sed 's@^"@@' | sed 's@"$@@')

MYSQL_EXEC="mysql -h$dbhost -P$dbport -u$dbuser -p$dbpw $dbname -e"
MYSQL_PHP="$ZCE_PREFIX/bin/php -nd extension='$ZCE_PREFIX/lib/php_extensions/mysqli.so' -f $ZCE_PREFIX/share/support_tool/mysql.php $dbhost $dbport $dbname $dbuser $dbpw"
MYSQL_PHP="$ZCE_PREFIX/bin/php -nd extension='$ZCE_PREFIX/php/active/lib/ext/mysqli.so' -f $ZCE_PREFIX/share/support_tool/mysql.php $dbhost $dbport $dbname $dbuser $dbpw"
fi

0 comments on commit 4c41d2e

Please sign in to comment.