I am migrating to a new server and I have PHP up and running under IIS and I verified by running:<?php
phpinfo(); // all info
// module info, phpinfo(8) identical
phpinfo(INFO_MODULES);
?>Othe Pages that are non SQL DB dependent work too. But my PHPMaker apps do not. The SQL Server connection isnt workingI get the error : mssqlnative extension not installedI have PHP version 7.4 running and I think I downloaded and installed the proper files and place a ref to them in the PHP.ini file like so:[ExtensionList]
extension=php_mysqli.dll
extension=php_mbstring.dll
extension=php_gd2.dll
extension=php_gettext.dll
extension=php_curl.dll
extension=php_exif.dll
extension=php_xmlrpc.dll
extension=php_openssl.dll
extension=php_soap.dll
extension=php_pdo_mysql.dll
extension=php_pdo_sqlite.dll
extension=php_imap.dll
extension=php_tidy.dll;extension=php_pdo_sqlsrv_74_nts_x64
;extension=php_sqlsrv_74_nts_x64
extension=php_pdo_sqlsrv_74_nts_x86
extension=php_sqlsrv_74_nts_x86I’ve tried bot the x86 and the x64 versions of the file references… Am I missing something simple?I am also running the latest version of SQL express 2019
- You still need to install Microsoft ODBC Driver for SQL Server, see System requirements for the Microsoft Drivers for PHP for SQL Server.
- Also see System Requirements.
- Also read http://www.hkvforums.com/viewtopic.php?f=4&t=44192.