Hey, ich habe bisher PHP 7.0 (NTS / IIS / x86) genutzt und möchte auf 7.3 upgraden. Leider habe ich das Problem das die SQLSRV Extension nicht geladen wird.
Ich habe PHP 7.3 NTS x86 sowie php_pdo_sqlsrv_73_nts_x86.dll und php_sqlsrv_73_nts_x86.dll heruntergeladen, in den Extensions Ordner gepackt und die php.ini bearbeitet .. wie ich es auch von PHP 7.0 gewohnt bin.
In der phpinfo ist SQLSRV nicht gelistet .. hat jemand vllt. eine Idee wieso?
Code:
; When the extension library to load is not located in the default extension
; directory, You may specify an absolute path to the library file:
;
; extension=/path/to/extension/mysqli.so
;
; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
; deprecated in a future PHP major version. So, when it is possible, please
; move to the new ('extension=<ext>) syntax.
;
; Notes for Windows environments :
;
; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
; extension folders as well as the separate PECL DLL download (PHP 5+).
; Be sure to appropriately set the extension_dir directive.
;
;extension=bz2
;extension=curl
;extension=fileinfo
;extension=gd2
;extension=gettext
;extension=gmp
;extension=intl
;extension=imap
;extension=interbase
;extension=ldap
;extension=mbstring
;extension=exif ; Must be after mbstring as it depends on it
extension=mysqli
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
extension=odbc
;extension=openssl
;extension=pdo_firebird
extension=pdo_mysql
;extension=pdo_oci
extension=pdo_odbc
;extension=pdo_pgsql
;extension=pdo_sqlite
;extension=pgsql
;extension=shmop
extension=php_pdo_sqlsrv
extension=php_sqlsrv
; The MIBS data available in the PHP distribution must be installed.
; See http://www.php.net/manual/en/snmp.installation.php
;extension=snmp
;extension=soap
;extension=sockets
;extension=sodium
;extension=sqlite3
;extension=tidy
;extension=xmlrpc
;extension=xsl