#1715 - fixed problem with PHP include path in tests
This commit is contained in:
parent
e76d68ea79
commit
d36fc52619
|
@ -85,12 +85,12 @@ $config = array(
|
|||
'StationPrefsGr'=> 'StationPrefs',
|
||||
'AllGr' => 'All',
|
||||
'TrashName' => 'trash_',
|
||||
'storageDir' => dirname(__FILE__).'/../../storageServer/var/stor',
|
||||
'bufferDir' => dirname(__FILE__).'/../../storageServer/var/stor/buffer',
|
||||
'transDir' => dirname(__FILE__).'/../../storageServer/var/trans',
|
||||
'accessDir' => dirname(__FILE__).'/../../storageServer/var/access',
|
||||
'pearPath' => dirname(__FILE__).'/../../../../usr/lib/pear',
|
||||
'cronDir' => dirname(__FILE__).'/../../storageServer/var/cron',
|
||||
'storageDir' => realpath(dirname(__FILE__).'/../../storageServer/var/stor'),
|
||||
'bufferDir' => realpath(dirname(__FILE__).'/../../storageServer/var/stor/buffer'),
|
||||
'transDir' => realpath(dirname(__FILE__).'/../../storageServer/var/trans'),
|
||||
'accessDir' => realpath(dirname(__FILE__).'/../../storageServer/var/access'),
|
||||
'pearPath' => realpath(dirname(__FILE__).'/../../../../usr/lib/pear'),
|
||||
'cronDir' => realpath(dirname(__FILE__).'/../../storageServer/var/cron'),
|
||||
'isArchive' => FALSE,
|
||||
'validate' => TRUE,
|
||||
'useTrash' => TRUE,
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
require_once dirname(__FILE__).'/../conf.php';
|
||||
include_once "XML/RPC.php";
|
||||
include_once dirname(__FILE__)."/../conf.php";
|
||||
|
||||
|
|
Loading…
Reference in New Issue