Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-07 Thread Richard Lynch
SPM decided to move stuff to a different place, namely inside of a /usr/share/php/PEAR directory, instead of just /usr/share/PEAR. So change your include path and be done with it. On Wed, March 5, 2008 11:59 am, Stephen wrote: My LAMP is on Ubuntu 7.10 I am trying to use PEAR, for the first

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-06 Thread Richard Heyes
You could just copy and paste from the PEAR website, And replicate the directory structure manually. g 1. Create the dire /use/local/share/pear/HTML 2. Copy (or create) the file Quickform (and all it's associated stuff) into that directory. IIRC, Quickform has quite a lot of files, so you

[PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Stephen
My LAMP is on Ubuntu 7.10 I am trying to use PEAR, for the first time, and get an error about the include file not being found. It is not there. phpinfo() has include_path set to .:/usr/share/php:/usr/share/pear Here is my error: Warning: require_once(HTML/QuickForm.php)

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Daniel Brown
On Wed, Mar 5, 2008 at 12:59 PM, Stephen [EMAIL PROTECTED] wrote: My LAMP is on Ubuntu 7.10 [snip!] Fatal error: require_once() [function.require]: Failed opening required 'HTML/QuickForm.php' (include_path='.:/usr/share/php:/usr/share/pear') in

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Stephen
Daniel Brown wrote: On Wed, Mar 5, 2008 at 12:59 PM, Stephen [EMAIL PROTECTED] wrote: My LAMP is on Ubuntu 7.10 [snip!] Fatal error: require_once() [function.require]: Failed opening required 'HTML/QuickForm.php' (include_path='.:/usr/share/php:/usr/share/pear') in

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Wolf
[snip!] But there is no /usr/share/pear directory. I have a /usr/share/php/PEAR and it has things that look like installation files. [snip!] Can anyone help me figure out how to get the installation fixed? Update your php.ini to add /usr/share/php/PEAR to the include

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Stephen
Wolf wrote: Open a terminal window on the server at the prompt type: locate QuickForm.php If it comes back with the path/file, make sure the path to the file is in the include folder If it comes back to just a regular terminal prompt right away, then you need to install it. The following

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Shawn McKenzie
Stephen wrote: Wolf wrote: Open a terminal window on the server at the prompt type: locate QuickForm.php If it comes back with the path/file, make sure the path to the file is in the include folder If it comes back to just a regular terminal prompt right away, then you need to install

Re: [PHP] Pear Installation Problem - Ubuntu

2008-03-05 Thread Stephen
Shawn McKenzie wrote: sudo pear install HTML_QuickForm That was so easy. Thank you! Stephen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php