apache提示Failed loading ZendLoader.dll解决方法
程序员文章站
2023-01-28 20:33:35
在折腾miniserver时,发现不管我怎么配置,apache总会提示“failed loading…zendloader.dll”,就是说zendloader很悲催的没有...
在折腾miniserver时,发现不管我怎么配置,apache总会提示“failed loading…zendloader.dll”,就是说zendloader很悲催的没有被加载。(zend optimizer适用于php 5.2.x,5.3以上就变成zend loader了,其实还是这货)
后来无意间去zend的论坛晃悠,发现有哥们和我的问题一样。
一句话:windows下,zend loader only works with nts php!
就是说,这悲催的货只支持nts版的php,ts版的不支持,所以遇到此问题的朋友可以检查一下php的版本。
附上nts和ts的区别
nts:non thread safe
非安全线程, 在执行时不进行线程(thread)安全检查。
ts:thread safe
安全线程, 执行时会进行线程(thread)安全检查,以防止有新要求就启动新线程的cgi执行方式而耗尽系统资源。
在phpinfo中可以查看 thread safety 一项来检查nts或ts。
上一篇: Linux 4.0 不再需要重启
下一篇: Ubuntu下安装Chrome的方法分享
推荐阅读
-
详解Vue项目中出现Loading chunk {n} failed问题的解决方法
-
php提示Failed to write session data错误的解决方法
-
Apache提示 the requested operation has failed无法启动的解决方法大全
-
Apache启动提示错误undefined symbol: libiconv_open解决方法
-
apache启动报 shmget() failed: Invalid argument的解决方法
-
电脑提示installer integrity check has failed的解决方法
-
php错误提示failed to open stream: HTTP request failed!的完美解决方法
-
apache提示Failed loading ZendLoader.dll解决方法
-
httpclient org.apache.http.NoHttpResponseException: host:端口 failed to respond 错误原因和解决方法
-
详解Vue项目中出现Loading chunk {n} failed问题的解决方法