php安?时产生的问题
php在安装时全出现很多问题,但一般安装到最后都会有提示错误在哪里.
然后yum install -y xxx 就可以了。昨天在家里安装时还算顺利,出现的问题都解决了。但今天在公司里安装时却出现这样问题,搞了好久,然后上网查资料,终于搞明白。问题如下:
sorry, I cannot run apxs. Possible reasons follow:
1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)
configure: error: Sorry,I cannot run apxs. Either you need to install Perl or you need to pass the absolute path of apxs by using --with-apxs=/absolute/path/to/apxs
首先,通过错误提示,我们得知"I cannot rum apxs". 我一直以为是apxs安装有问题,但找了很久仍未得到合理的解释和解决方法.
于是我直接运行"/usr/local/apache/bin/apxs"这个脚本,得到下面的错误提示:
bash: ./apxs: /replace/with/path/to/perl/interpreter: bad interpreter: No such file or directory
运行"vi /usr/local/apache/bin/apxs"得到下面内容:
#!/replace/with/path/to/perl/interpreter -w
最后发现这里没有指明正确的perl执行程序的位置!
把这一行更改为"#!/usr/bin/perl -w". 再运行php的!./configure就可以了
推荐阅读
-
PHP使用empty检查函数返回结果时报Fatal error: Can't use function return value in write context的问题 - 心中的飞梦
-
如何解决 PHP 第一次连接Oracle非常慢的问题
-
php字符转码解决新浪抓取资料乱码的问题
-
用DS配置oracle数据库时,使用和客户端相同的账号导致的问题
-
程序员 - PHP时间问题,2014-1-21 和 2013-5-13 请用最有效率的方法计算出两个时间相差的年份和月份??
-
python抓取并保存html页面时乱码问题的
-
用PHP写daemon无法驻留的问题
-
IE8下jQuery改变png图片透明度时出现的黑边问题_html/css_WEB-ITnose
-
PHP中PDO关闭连接的方法问题
-
php解决抢购秒杀抽奖等大流量并发入库导致的库存负数的问题_PHP