I installed Mail (http://pear.php.net/package/Mail) by
pear install Mail
everything seems to be ok, but checking for this package programmatically:
$pear = new PEAR_Registry();
$enabled = $pear->packageExists('Mail');
always fails for me (false).
Could someone give me any advice?
If I try to install Mail once again, I am getting:
pear/Mail is already installed and is the same as the released version 1.2.0
install failed
My include_path settings:
include_path = ".;C:\Program Files (x86)\IIS Express\PHP\v5.3\pear;"
Mail package was installed to C:\Program Files (x86)\IIS Express\PHP\v5.3\pear\Mail dir
Reinstall Mail didn't help