vote up 1 vote down star

Hi, I need to install PEAR on a server which does not have outsite access to the net. There is no go-pear.bat in the php folder and even if it had go-pear.bat i think it needs access to the net.

I looked an the Installing PEAR from a local copy from the PEAR website. But it needs PEAR to be already installed for it to work.

So do any of you guys know how to install PEAR without access to internet?

flag

link : opensubscriber.com/message/… – haim evgi Oct 21 at 7:35

2 Answers

vote up 1 vote down check

There is a way to do this if you are on Windows and have the PHP installer.

You can select, during the PHP installation time, the PEAR option under extension menu when selecting the components for PHP installation in order to install PEAR package.

If you already have PHP installed, you just have to click on the installer to choose "modify", and choose the correct option.

link|flag
vote up 1 vote down

You don't need PEAR installed on the webhost, just on your local machine. The two main approches are

  • Track your dependencies manually, and copy all the appropriate files to the server yourself
  • With pear installed on your local machine, do pear install -R/my/root_dir -a PEAR. This will install the PEAR package and all dependencies to the specified root directory. Copy this installation to your webhost.

I think it's possible to use pear to manage an installation via FTP also. I never tried.

You should also have a look at "pear help" and "pear help install".

link|flag
I just need to install PEAR. so can use pear install -R /my/root_dir -a PEAR ? – andho Oct 21 at 9:04
Im getting this error Could not download from "pear.php.net/get/PEAR-1.9.0.tgz";, cannot download "pear/PEAR" (File pear.php.net:80/get/PEAR-1.9.0.tgz not valid (received: HTTP/1.1 500 ( The specified network name is no longer available. ) )) Error: cannot download "pear/PEAR" – andho Oct 21 at 9:48
Ooopsie. The spreadsheet stuff was copy/pasted from an older answer of mine. Sorry, fixed. – gnud Oct 22 at 11:13
Check if a normal pear installation works. The command I posted worked for me - it recreated a whole directory tree under /my/root_dir. – gnud Oct 22 at 11:14

Your Answer

Get an OpenID
or

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