This commit is contained in:
tomas 2005-04-30 00:02:54 +00:00
parent 9c1ec416e2
commit ddb3acce07
2 changed files with 11 additions and 2 deletions

View file

@ -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);
?>