diff --git a/livesupport/modules/archiveServer/var/conf.php.template b/livesupport/modules/archiveServer/var/conf.php.template index 9c9a1a315..3392b5442 100644 --- a/livesupport/modules/archiveServer/var/conf.php.template +++ b/livesupport/modules/archiveServer/var/conf.php.template @@ -23,7 +23,7 @@ Author : $Author: tomas $ - Version : $Revision: 1.2 $ + Version : $Revision: 1.3 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/archiveServer/var/conf.php.template,v $ ------------------------------------------------------------------------------*/ @@ -81,6 +81,7 @@ $config = array( 'bufferDir' => dirname(__FILE__).'/../../archiveServer/var/stor/buffer', 'transDir' => dirname(__FILE__).'/../../archiveServer/var/trans', 'accessDir' => dirname(__FILE__).'/../../archiveServer/var/access', + 'pearPath' => 'ls_install_dir/lib/php/php', 'isArchive' => TRUE, 'validate' => TRUE, 'useTrash' => FALSE, @@ -124,4 +125,9 @@ $config = array( 'RootNode' => 'RootNode', 'tmpRootPass' => 'q', ); +$config['sysSubjs'] = array( + 'root', $config['AdminsGr'], $config['AllGr'], $config['StationPrefsGr'] +); +$old_ip = get_include_path(); +set_include_path('.'.PATH_SEPARATOR.$config['pearPath'].PATH_SEPARATOR.$old_ip); ?> diff --git a/livesupport/modules/storageServer/var/conf.php.template b/livesupport/modules/storageServer/var/conf.php.template index ec8e0b5c0..73bc46007 100644 --- a/livesupport/modules/storageServer/var/conf.php.template +++ b/livesupport/modules/storageServer/var/conf.php.template @@ -23,7 +23,7 @@ Author : $Author: tomas $ - Version : $Revision: 1.4 $ + Version : $Revision: 1.5 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/conf.php.template,v $ ------------------------------------------------------------------------------*/ @@ -88,6 +88,7 @@ $config = array( 'bufferDir' => dirname(__FILE__).'/../../storageServer/var/stor/buffer', 'transDir' => dirname(__FILE__).'/../../storageServer/var/trans', 'accessDir' => dirname(__FILE__).'/../../storageServer/var/access', + 'pearPath' => 'ls_install_dir/lib/php/php', 'isArchive' => FALSE, 'validate' => TRUE, 'useTrash' => TRUE, @@ -142,4 +143,6 @@ $config = array( $config['sysSubjs'] = array( 'root', $config['AdminsGr'], $config['AllGr'], $config['StationPrefsGr'] ); +$old_ip = get_include_path(); +set_include_path('.'.PATH_SEPARATOR.$config['pearPath'].PATH_SEPARATOR.$old_ip); ?>