2.8.25. PEAR

To use the PEAR library, you can upload the necessary libraries directly to your site (for example, to the pear directory in the site's root) and add the following line at the beginning of your scripts (usually in index.php):

set_include_path(get_include_path() . PATH_SEPARATOR . '/home/account_name/your_site.com/www/pear/');

This will allow you to use any PEAR modules, regardless of whether they are installed on the hosting server or not.

Teneur