|  | Posted by grant on 12/13/06 01:15 
As my webhost provides the barest of barebones PEAR in their PHP5 setup, I'm installing it in my webspace. The PEAR install page
 (http://www.go-pear.org/manual/en/installation.shared.php) has been a
 great help and everything installed perfectly. But I'm having trouble
 getting my pages to recognize it. The install page suggests this snippet
 on each page:
 
 
 <?php
 ini_set('include_path', '~/pear/lib' . PATH_SEPARATOR
 . ini_get('include_path'));
 
 // From PHP 4.3.0 onward, you can use the following,
 // which especially useful on shared hosts:
 set_include_path('~/pear/lib' . PATH_SEPARATOR
 . get_include_path());
 ?>
 
 I've just popped it on its own into a page called pearinclude.php and I
 use "require" to point to it (or maybe I should use "include"?)
 
 Anyway, I think my problem is that I'm not sure of the exact path to
 enter for my pear install. It sits on my host in htdocs/pear/. Do I just
 replace '~/pear/lib' with 'htdocs/pear'? Probably not, but with what?
 
 Thanks for any help for a noob,
 
 
 grant
  Navigation: [Reply to this message] |