0

私は最近、私が受け取っているこのphpエラーで立ち往生しました:

PHP Warning: PHP Startup: Unable to load dynamic library 'c:\PHP\php_soap.dll' - The specified procedure could not be found. in Unknown on line 0

両方の ini ファイルで dll を宣言しました。私は Windows 7 を実行しており、サイトは MSSQL データベースを使用して iis でホストされています。PHP 5.4.1 を使用しています (会社のポリシー)

変更のための私のiniファイル:

; Directory in which the loadable extensions (modules) reside.
extension_dir = "c:\PHP"

extension=php_soap.dll

[soap]
; Enables or disables WSDL caching feature.
soap.wsdl_cache_enabled = 0
; Sets the directory name where SOAP extension will put cache files.
soap.wsdl_cache_dir="/tmp"
; (time to live) Sets the number of second while cached file will be used 
; instead of original one.
soap.wsdl_cache_ttl=86400

助けてください、私はすべてを試しました。再インストールでも。

ありがとうございました。

4

1 に答える 1

1

本当に php_soap.dll がフォルダーにありますc:\PHP\か? extension_dirそうでない場合は、 php.ini の構成設定を適切な拡張フォルダーに調整する必要があります。

于 2014-05-06T21:40:52.717 に答える