Batavi Setup проблема c PEAR

При установке интернет-магазина Batavi появилось сообщение:

PEAR is not installed on this server.
PPS's for OLE containers is not installed on this server.
Functions like import and export for XLS format are not available.

Для исправления этой ошибки делаем следующее:
Вписываем в файл /pub/www/conf/somesite.ru.conf путь к папке pear (/usr/local/share/pear) и tmp

<Directory /pub/www/htdocs/somesite.ru>
   Options Indexes FollowSymLinks MultiViews Includes
   AllowOverride AuthConfig FileInfo Indexes Limit Options
   ......

   php_admin_value include\_path ".:/pub/www/php:/usr/local/share/pear"
   php_admin_value open_basedir "/pub/www/htdocs/somesite.ru:/usr/local/share/pear:/var/tmp"

   .....

</Directory>