Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: installateur.php,v 1.2 2004-10-15 18:28:59 jpm Exp $
|
22 |
// CVS : $Id: installateur.php,v 1.3 2004-10-18 09:12:09 jpm Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Application Installateur de Papyrus.
|
24 |
* Application Installateur de Papyrus.
|
25 |
*
|
25 |
*
|
26 |
* Application permettant de gérer l'installation et les erreurs liés à l'abscence de base de données,
|
26 |
* Application permettant de gérer l'installation et les erreurs liés à l'abscence de base de données,
|
27 |
* d'extenssin PHP...
|
27 |
* d'extenssin PHP...
|
Line 30... |
Line 30... |
30 |
//Auteur original :
|
30 |
//Auteur original :
|
31 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
31 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@author Aucun
|
33 |
*@author Aucun
|
34 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@version $Revision: 1.2 $ $Date: 2004-10-15 18:28:59 $
|
35 |
*@version $Revision: 1.3 $ $Date: 2004-10-18 09:12:09 $
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
**/
|
37 |
**/
|
Line 38... |
Line 38... |
38 |
|
38 |
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
Line 88... |
Line 88... |
88 |
if(!isset($_GET['installation'])) {
|
88 |
if(!isset($_GET['installation'])) {
|
89 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_defaut.inc.php';
|
89 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_defaut.inc.php';
|
90 |
} else if($_GET['installation'] == 'bdd') {
|
90 |
} else if($_GET['installation'] == 'bdd') {
|
91 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_base_de_donnees.inc.php';
|
91 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_base_de_donnees.inc.php';
|
92 |
} else if($_GET['installation'] == 'config') {
|
92 |
} else if($_GET['installation'] == 'config') {
|
93 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_configuration.inc.php';
|
93 |
include_once GEN_CHEMIN_APPLICATION.'installateur/instal_fichier.inc.php';
|
94 |
}
|
94 |
}
|
Line 95... |
Line 95... |
95 |
|
95 |
|
96 |
// +------------------------------------------------------------------------------------------------------+
|
96 |
// +------------------------------------------------------------------------------------------------------+
|
97 |
// | PIED du PROGRAMME |
|
97 |
// | PIED du PROGRAMME |
|
Line 104... |
Line 104... |
104 |
$GLOBALS['_GEN_commun']['sortie'] = $sortie;
|
104 |
$GLOBALS['_GEN_commun']['sortie'] = $sortie;
|
Line 105... |
Line 105... |
105 |
|
105 |
|
106 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
106 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
107 |
*
|
107 |
*
|
- |
|
108 |
* $Log: not supported by cvs2svn $
|
- |
|
109 |
* Revision 1.2 2004/10/15 18:28:59 jpm
|
- |
|
110 |
* Début appli installateur de Papyrus.
|
108 |
* $Log: not supported by cvs2svn $
|
111 |
*
|
109 |
* Revision 1.1 2004/06/16 14:33:13 jpm
|
112 |
* Revision 1.1 2004/06/16 14:33:13 jpm
|
110 |
* Changement de nom de Génésia en Papyrus.
|
113 |
* Changement de nom de Génésia en Papyrus.
|
111 |
* Changement de l'arborescence.
|
114 |
* Changement de l'arborescence.
|
112 |
*
|
115 |
*
|