如何在PHP IIS中添加ZeroMQ扩展

fkvaft9z  于 2022-12-19  发布在  PHP
关注(0)|答案(1)|浏览(124)

这个问题非常类似于:Unable to load dynamic library php_zmq.dll - The specified module could not be found
但我需要一个特定于IIS PHP Fast-CGI配置的答案,甚至可能仅限于v10(Windows Server 2016)。对我来说,通常的配置在XAMPP和Windows 10中运行良好,但在IIS中失败。
以下是我迄今为止所做的工作:
1.已安装所有可用的VC++可再发行组件
1.已安装ZeroMQ v4.0.4
1.下载的PHP ZMQ版本1.1.3 -7.2-ts-vc 15-x64
1.已将php_zmq. dll移至C:\程序文件\IIS Express\PHP\v7.2\ext
1.已将libzmq.dll移至C:\程序文件\IIS Express\PHP\v7.2
1.在php.ini中添加了扩展指令
1.添加了ext文件夹的路径
服务器重新启动时,将抛出以下警告:

[01-Dec-2018 01:11:34 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'php_zmq.dll' (tried: C:\Program Files\iis express\PHP\v7.2\ext\php_zmq.dll (The specified module could not be found.), C:\Program Files\iis express\PHP\v7.2\ext\php_php_zmq.dll.dll (The specified module could not be found.)) in Unknown on line 0

对于php -m,我也无法看到列出的zmq模块。

js81xvg6

js81xvg61#

你有这个错误:并且您可以将该文件名从php_php_zmq. dll更改为php_php_zmq. dll。

相关问题