my_config.php
1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* @file my_config.php
* @version $Id: my_config.php 2372 2014-05-21 09:38:38Z myriam $
*
*/
//AKKA - Path to AMDA_Integration base dir
define('INTEGRATION_BASE_PATH', '/home/budnik/AMDA/AMDA_Integration/');
require_once(INTEGRATION_BASE_PATH.'config/AMDAIntegrationConfig.php');
define('CEFLIB', '/opt/local/cef/lib');
define('CDFLIB', '/opt/local/lib');
define('SYS_LIBS', '/lib:/usr/lib:/usr/local/lib64');
define('SYS_BIN', '/bin:/usr/bin/:/usr/local/bin/');
//AKKA - For compatibility with IHM
define('BASE_PATH', IHM_SRC_DIR);
//DD WebServices
define('INFOSITE', 'http://amda-dev.irap.omp.eu/BASE/');
//log for AmdaUpdate/AmdaInstall
define('log', IHM_SRC_DIR.'LOG');
// User apache
define('APACHE_USER', 'apache');
// Alias for name of AMDA
define('APACHE_ALIAS', '/NEWAMDA/');
//email to send errors from AmdaUpdate/AmdaInstall
define('email','ebudnik@irap.omp.eu');
//DDPATH
define('DDBIN','/opt/local/bin/');
define('DDLIB','/opt/local/lib/');
// for updateAmda
define('DD_WSDL','http://amda-dev.irap.omp.eu/BASE/DDService/dd.wsdl');
define('TITLE', 'NEWAMDA-NJOURDANE');
// real upload_max_filesize is defined in /etc/php.ini : ini_get('upload_max_filesize')
// here for additional flexibility
define('MAX_UPLOADED_FILESIZE',30000000); // in bytes !!!
$is64 = true;
?>