您好,我已经安装了 curl 和 curl-devel,但我仍然无法让 curl 与 php 一起工作。我的 php 配置行:
'./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-gd' '--with-mysql' '--with-zlib' '--enable-mbstring' '--with-pdo-mysql' '--prefix=/php-5.3.3' '--with-config-file-path=/php-5.3.3' '--with-mysqli=/usr/bin/mysql_config'
已安装的 curl 包:
已安装 curl.i386 7.16.4-1.fc7 curl-devel.i386 7.16.4-1.fc7 已安装
安装 curl #yum curl 后它应该自动为 php 启用它,但 curl 在 php 中仍然不可用。
提前致谢。
答案1
您需要在 php 的配置中添加 --with-curl
或者尝试这个,因为如果你仍然有源代码的话你已经编译过了..不确定
cd php-5.3.3/ext/curl
phpize
./configure
make
make install
然后在 php.ini 中启用扩展。它将是一个 .so 文件,而不是 .dll