php7.2运行失败怎么办

发布时间:2022-05-24 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php7.2运行失败怎么办脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

php7.2运行失败的解决办法:1、在php源码目录下执行“vi Makefile”;2、找到EXTRA_LIBS行;3、在行末添加“-llber”;4、保存退出并再次make即可。

php7.2运行失败怎么办

本文操作环境:Windows7系统,PHP7.2版,Dell G3脑。

php7.2运行失败怎么办?

php7.2 编译遇到的坑

checking size of long int... (cached) 8
configure: error: Cannot find ldap libraries in /usr/lib.

解决:

./configure php的时候出现下面错误而退出

configure: error: Cannot find ldap libraries in /usr/lib

解决办法:

cp -frp /usr/lib64/libldap* /usr/lib/

然后再./configure ...即可

/usr/bin/ld: ext/ldap/.libs/ldap.o: undefined reference to symbol 'ber_strdup' 
//usr/lib64/liblber-2.4.so.2: error adding symbols: DSO missing From command line 
collect2: error: ld returned 1 exIT status 
make: *** [sapi/cli/php] Error 1

解决办法:遇到这种类似的情况,说明「./configure 」沒抓好一些环境变数值。

解决方法,来自老外的一篇文章

在PHP码目录下 vi Makefile 找到 EXTRA_LIBS 行,在行末添加 ‘ -llber ‘ 保存退出再次make即可

/usr/local/src/php-7.2.7/sapi/cli/php: error while loading shared libraries: libiconv.so.2: cannot oPEn shared object file: No such file or directory
make: *** [ext/phar/phar.php] Error 127

解决:

1.先

#vi /etc/ld.so.conf

在里面加上一行 /usr/local/lib

2.然后运行/sbin/ldconfig

 #/sbin/ldconfig

编译make

Generating phar.phar
 
chmod: cannot access ‘ext/phar/phar.phar’: No such file or directory
make: [ext/phar/phar.phar] Error 1 (ignored)

解决:

cd ext/phar/
cp ./phar.php ./phar.phar

推荐学习:《PHP视频教程》

以上就是php7.2运行失败怎么办的详细内容,更多请关注脚本宝典其它相关文章!

脚本宝典总结

以上是脚本宝典为你收集整理的php7.2运行失败怎么办全部内容,希望文章能够帮你解决php7.2运行失败怎么办所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:php7.2