Page 1 of 1

Install PEAR

Posted: Wed Apr 25, 2007 4:43 pm
by guitarlvr
I am trying to install the PEAR AUTH package. I ran go-pear.bat and answered the questions it asked. it added an include_path to my php.ini file. I cannot find a good explaination on how to install the packages (such as AUTH). Does anyone know of a good tutorial to do that?

Wayne

Posted: Wed Apr 25, 2007 5:08 pm
by Chris Corbyn
I'm no expert, but running the command:

Code: Select all

pear remote-list
Gave me these top results:

Code: Select all

Channel pear.php.net Available packages:
========================================
Package                                   Version
Auth_HTTP                                 2.1.6
Auth                                      1.5.1
Auth_SASL                                 1.0.2
LiveUser                                  0.16.12
Auth_PrefManager                          1.1.4
Auth_RADIUS                               1.0.5
Auth_PrefManager2                         2.0.0dev1
You should be able to do:

Code: Select all

pear install Auth
or maybe

Code: Select all

pear install Auth-1.5.1
:)

Posted: Wed Apr 25, 2007 7:15 pm
by guitarlvr
Thanks, That'll at least give me a place to start. can't hurt. I'll give it a shot.

Wayne