20 |
jpm |
1 |
<?php
|
|
|
2 |
// Encodage : UTF-8
|
|
|
3 |
// +-------------------------------------------------------------------------------------------------------------------+
|
|
|
4 |
/**
|
|
|
5 |
* Script configuration
|
|
|
6 |
*
|
|
|
7 |
* Description : permet de configurer le lancement des scripts. Le contenu de ce fichier ne devrait pas nécessité de
|
|
|
8 |
* modification dans la plupart des installations...
|
|
|
9 |
*
|
|
|
10 |
//Auteur original :
|
|
|
11 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
12 |
* @copyright Tela-Botanica 1999-2008
|
|
|
13 |
* @licence GPL v3 & CeCILL v2
|
|
|
14 |
* @version $Id$
|
|
|
15 |
*/
|
|
|
16 |
// +-------------------------------------------------------------------------------------------------------------------+
|
|
|
17 |
// Gestion de la mémoire maximum allouée aux scripts
|
65 |
jpm |
18 |
ini_set('memory_limit', 2147483648);//128Mo = 134217728 ; 256Mo = 268435456 ; 512Mo = 536870912 ; 1Go = 1073741824; 2Go = 2147483648
|
20 |
jpm |
19 |
// Gestion des erreurs
|
|
|
20 |
error_reporting(E_ALL);
|
|
|
21 |
|
|
|
22 |
// Gestion des chemins
|
|
|
23 |
define('DS', DIRECTORY_SEPARATOR);
|
|
|
24 |
define('ES_CHEMIN_APPLI', dirname(__FILE__).DS);
|
|
|
25 |
define('ES_CHEMIN_CONFIG', ES_CHEMIN_APPLI.'configurations'.DS);
|
|
|
26 |
define('ES_CHEMIN_MODULE', ES_CHEMIN_APPLI.'modules'.DS);
|
|
|
27 |
define('ES_CHEMIN_PEAR', '/opt/lampp/lib/php/');
|
|
|
28 |
|
|
|
29 |
// Chargement de base pour l'autoload
|
26 |
jpm |
30 |
$GLOBALS['chemins_autoload'] = array(
|
|
|
31 |
dirname(realpath(__FILE__)).DS.'bibliotheque'.DS,
|
|
|
32 |
dirname(realpath(__FILE__)).DS.'..'.DS.'bibliotheque'.DS.'dao'.DS,
|
59 |
jpm |
33 |
dirname(realpath(__FILE__)).DS.'..'.DS.'bibliotheque'.DS.'utilitaires'.DS
|
26 |
jpm |
34 |
);
|
20 |
jpm |
35 |
?>
|