2.8.25. PEAR
To work with the PEAR library, you can download the necessary libraries directly to your site (for example, in the directory pear
at the root of the site) and at the beginning of scripts (usually enough in index.php
) add the line:
set_include_path(get_include_path() . PATH_SEPARATOR . '/home/name_account/your_website.com/www/pear/');
This will make it possible to use any PEAR modules, regardless of whether they are installed on the hosting or not.