Search code examples
phpdrupalpear

unable install pear dependencies


I am new to php and drupal i want install below commands

sudo pear install mail sudo pear install Net_SMTP sudo pear Auth_SASL sudo pear install mail_mime

I tried many ways to install but i saw result below like this sudo pear install mail_mime [sudo] password for ******: downloading Mail_Mime-1.10.0.tgz ... Starting to download Mail_Mime-1.10.0.tgz (35,375 bytes) .........done: 35,375 bytes could not extract the package.xml file from "/build/php5-0LI9sl/php5-5.5.9+dfsg/pear-build-download/Mail_Mime-1.10.0.tgz" Download of "pear/mail_mime" succeeded, but it is not a valid package archive Error: cannot download "pear/Mail_Mime" Download failed install failed.

can any one help me from this


Solution

  • It seems that the Archive_Tar PEAR component needs to be replaced/upgraded.

    Do this first:

    $ sudo pear upgrade -Z pear/Archive_Tar
    

    It would also be a good time to update your pear installation:

    $ sudo pear upgrade pear
    

    And then try the other steps again:

    $ sudo pear install mail Net_SMTP Auth_SASL mail_mime