When i tried to install php5 curl i am getting the messages below and nothing happens. Could anyone help me out on this ? My setup is Fedora, apache 2, php 5.3.3.

#yum install libcurl3 libcurl3-dev php5-curl
Loading "installonlyn" plugin
Setting up Install Process
Parsing package install arguments
Nothing to do
link|improve this question

37% accept rate
1  
This question is a perfect example of questions asked at serverfault.com - try asking there. – mr.b Dec 2 '10 at 14:26
feedback

1 Answer

up vote 1 down vote accepted

Wrong package has been specified.

Try

yum list | grep curl -i

Most probably the package name is like

  • curl.*
  • curl-devel.*

PS : move the question to serverfault.com

link|improve this answer
curl.i386 7.16.4-1.fc7 installed curl-devel.i386 7.16.4-1.fc7 installed – taras Dec 2 '10 at 14:38
does it mean its already installed ? and how do i enable it for php5.3.3 ? thanks for your comment, i will move my issue to serverfault. – taras Dec 2 '10 at 14:39
@taras - php -r 'phpinfo();'| grep Configure , do you specify --with-curl ? – ajreal Dec 2 '10 at 14:40
Initially it wasn't with "--with-curl": – taras Dec 2 '10 at 14:44
'./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' – taras Dec 2 '10 at 14:45
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.