安装PHP会出现的错误
解决:yum install -y libxml2-devel
错误2:configure: error: Cannot find OpenSSL's
解决:yum install -y openssl openssl-devel
错误3:checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
解决:yum install -y bzip2 bzip2-devel
错误4:configure: error: png.h not found.
解决:yum install -y libpng libpng-devel
错误5:configure: error: freetype.h not found
解决:yum install -y freetype freetype-devel
错误6:configure: error: jpeglib.h not found.
解决:yum install -y libjpeg-devel
错误7:configure: error: png.h not found.
解决:yum install -y libpng libpng-devel
错误8:configure: error: mcrypt.h not found. Please reinstall libmcrypt.
解决:rpm -ivh "http://www.aminglinux.com/bbs/data/attachment/forum/month_1211/epel-release-6-7.noarch.rpm"
yum install -y libmcrypt-devel
推荐阅读
-
安装PHP可能遇到的问题“无法载入mysql扩展” 的解决方法_php技巧
-
安装PHP会出现的错误
-
Mybatis中foreach标签中使用pgsql的in语句时,出现空格导致的语法错误的问题。
-
5_3_x_nts_comp版本的ZendDebugger在PHP5.3(Thread Safety)下安装不成功的原因(转)
-
PHP中pear 的安装问题,无法调用mail.php?
-
如何通过优雅的代码逻辑方式,使得通过get method访问的地址在传递的参数不正确的时候避免出现额外的错误?
-
CentOS5.5下PHP5.2.10未安装MySQL模块的解决方式
-
mantis安装、配置和使用中的问题小结_php实例
-
PHP截取中文字符出现乱码的具体解决办法
-
php file_get_contents 的网址状态码为500时,不想让错误出现在应用服务器的error_log应该怎么做呢?