Nouvelle version de l'install
This commit is contained in:
parent
561ae3b6cb
commit
8bdb7642f1
@ -9,7 +9,7 @@
|
|||||||
<div class="main-inside">
|
<div class="main-inside">
|
||||||
<?PHP
|
<?PHP
|
||||||
include("./inc.php");
|
include("./inc.php");
|
||||||
$etape = 2;
|
$etape = 1;
|
||||||
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
||||||
|
|
||||||
$conf = "../conf/conf.php";
|
$conf = "../conf/conf.php";
|
||||||
@ -123,86 +123,173 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Base de données
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
require ($dolibarr_main_document_root . "/lib/mysql.lib.php");
|
|
||||||
require ($dolibarr_main_document_root . "/conf/conf.class.php");
|
|
||||||
|
|
||||||
$conf = new Conf();
|
|
||||||
$conf->db->host = $dolibarr_main_db_host;
|
|
||||||
$conf->db->name = $dolibarr_main_db_name;
|
|
||||||
$conf->db->user = $dolibarr_main_db_user;
|
|
||||||
$conf->db->pass = $dolibarr_main_db_pass;
|
|
||||||
$db = new DoliDb();
|
|
||||||
$ok = 0;
|
|
||||||
if ($db->connected == 1)
|
|
||||||
{
|
|
||||||
print "<tr><td>Connexion réussie au serveur : $dolibarr_main_db_host</td><td>OK</td></tr>";
|
|
||||||
|
|
||||||
if($db->database_selected == 1)
|
|
||||||
{
|
|
||||||
//
|
|
||||||
// Connexion base existante
|
|
||||||
//
|
|
||||||
print "<tr><td>Connexion réussie à la base : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
|
||||||
|
|
||||||
$ok = 1 ;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//
|
|
||||||
// Création de la base
|
|
||||||
//
|
|
||||||
|
|
||||||
print "<tr><td>Echec de connexion à la base : $dolibarr_main_db_name</td><td>Warning</td></tr>";
|
|
||||||
|
|
||||||
$ok = 0;
|
|
||||||
|
|
||||||
print "<tr><td>Création de la base : $dolibarr_main_db_name</td><td>-</td></tr>";
|
|
||||||
|
|
||||||
if ($db->create_db ($dolibarr_main_db_name))
|
|
||||||
{
|
|
||||||
print "<tr><td>Création de la base réussie : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
|
||||||
$db->select_db ($dolibarr_main_db_name);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print "<tr><td>Echec de création de la base : $dolibarr_main_db_name</td><td>ERREUR</td></tr>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "Erreur le système à besoin d'écrire dans le fichier $conf veuillez mettre les droits correct pour cela.";
|
print "Erreur le système à besoin d'écrire dans le fichier $conf veuillez mettre les droits correct pour cela.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Base de données
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
require ($dolibarr_main_document_root . "/lib/mysql.lib.php");
|
||||||
|
require ($dolibarr_main_document_root . "/conf/conf.class.php");
|
||||||
|
|
||||||
|
if ($HTTP_POST_VARS["db_create_user"] == "on")
|
||||||
|
{
|
||||||
|
$conf = new Conf();
|
||||||
|
$conf->db->host = $dolibarr_main_db_host;
|
||||||
|
$conf->db->name = "mysql";
|
||||||
|
$conf->db->user = $HTTP_POST_VARS["db_user_root"];
|
||||||
|
$conf->db->pass = $HTTP_POST_VARS["db_user_pass"];
|
||||||
|
$db = new DoliDb();
|
||||||
|
|
||||||
|
$sql = "INSERT INTO user ";
|
||||||
|
$sql .= "(Host,User,password)";
|
||||||
|
$sql .= " VALUES ('$dolibarr_main_db_host','$dolibarr_main_db_user',password('$dolibarr_main_db_pass'))";
|
||||||
|
|
||||||
|
$db->query($sql);
|
||||||
|
|
||||||
|
$sql = "INSERT INTO db ";
|
||||||
|
$sql .= "(Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv,Index_Priv,Alter_priv)";
|
||||||
|
$sql .= " VALUES ('$dolibarr_main_db_host','$dolibarr_main_db_name','$dolibarr_main_db_user'";
|
||||||
|
$sql .= ",'Y','Y','Y','Y','Y','Y','Y','Y')";
|
||||||
|
|
||||||
|
if ($db->query($sql))
|
||||||
|
{
|
||||||
|
|
||||||
|
$db->query("flush privileges");
|
||||||
|
|
||||||
|
print "<tr><td>Création de l'utilisateur : $dolibarr_main_db_user</td><td>OK</td></tr>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Création de l'utilisateur : $dolibarr_main_db_user</td><td>ERREUR</td></tr>";
|
||||||
|
}
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$conf = new Conf();
|
||||||
|
$conf->db->host = $dolibarr_main_db_host;
|
||||||
|
$conf->db->name = $dolibarr_main_db_name;
|
||||||
|
$conf->db->user = $dolibarr_main_db_user;
|
||||||
|
$conf->db->pass = $dolibarr_main_db_pass;
|
||||||
|
$db = new DoliDb();
|
||||||
|
$ok = 1;
|
||||||
|
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
if ($db->connected == 1)
|
||||||
|
{
|
||||||
|
print "<tr><td>Connexion au serveur : $dolibarr_main_db_host</td><td>OK</td></tr>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Connexion au serveur : $dolibarr_main_db_host</td><td>ERREUR</td></tr>";
|
||||||
|
$ok = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
if($db->database_selected == 1)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Connexion base existante
|
||||||
|
//
|
||||||
|
print "<tr><td>Connexion réussie à la base : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
||||||
|
|
||||||
|
$ok = 1 ;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Création de la base
|
||||||
|
//
|
||||||
|
|
||||||
|
print "<tr><td>Echec de connexion à la base : $dolibarr_main_db_name</td><td>Warning</td></tr>";
|
||||||
|
print '<tr><td colspan="2">Création de la base : '.$dolibarr_main_db_name.'</td></tr>';
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
$conf = new Conf();
|
||||||
|
$conf->db->host = $dolibarr_main_db_host;
|
||||||
|
$conf->db->name = "mysql";
|
||||||
|
$conf->db->user = $HTTP_POST_VARS["db_user_root"];
|
||||||
|
$conf->db->pass = $HTTP_POST_VARS["db_user_pass"];
|
||||||
|
$db = new DoliDb();
|
||||||
|
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
if ($db->connected == 1)
|
||||||
|
{
|
||||||
|
print "<tr><td>Connexion au serveur : $dolibarr_main_db_host avec l'utilisateur : ".$HTTP_POST_VARS["db_user_root"]."</td><td>OK</td></tr>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Connexion au serveur : $dolibarr_main_db_host avec l'utilisateur : ".$HTTP_POST_VARS["db_user_root"]."</td><td>ERREUR</td></tr>";
|
||||||
|
$ok = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
if($db->database_selected == 1)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Vérification des droits de création</td><td>ERREUR</td></tr>";
|
||||||
|
print '<tr><td colspna="2">-- Droits insuffissant</td></tr>';
|
||||||
|
$ok = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
if ($db->create_db ($dolibarr_main_db_name))
|
||||||
|
{
|
||||||
|
print "<tr><td>Création de la base : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Création de la base : $dolibarr_main_db_name</td><td>ERREUR</td></tr>";
|
||||||
|
$ok = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file_exists("$conf"))
|
|
||||||
{
|
|
||||||
include ("$conf");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print "$conf does not exists<br>";
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<?PHP
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
print '
|
||||||
<div class="barrebottom">
|
<div class="barrebottom">
|
||||||
<form action="etape2.php" method="POST">
|
<form action="etape2.php" method="POST">
|
||||||
<input type="hidden" name="action" value="set">
|
<input type="hidden" name="action" value="set">
|
||||||
<input type="submit" value="Etape suivante ->">
|
<input type="submit" value="Etape suivante ->">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<div class="main-inside">
|
<div class="main-inside">
|
||||||
<?PHP
|
<?PHP
|
||||||
include("./inc.php");
|
include("./inc.php");
|
||||||
$etape = 3;
|
$etape = 2;
|
||||||
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
||||||
|
|
||||||
$conf = "../conf/conf.php";
|
$conf = "../conf/conf.php";
|
||||||
@ -46,63 +46,100 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
print "<tr><td>Connexion réussie à la base : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
print "<tr><td>Connexion réussie à la base : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
||||||
|
|
||||||
$ok = 1 ;
|
$ok = 1 ;
|
||||||
}
|
|
||||||
else
|
$result = $db->list_tables($dolibarr_db_name);
|
||||||
{
|
if ($result)
|
||||||
print "<tr><td>Echec de connexion à la base : $dolibarr_main_db_name</td><td>ERREUR</td></tr>";
|
|
||||||
|
|
||||||
$ok = 0;
|
|
||||||
|
|
||||||
print "<tr><td>Création de la base : $dolibarr_main_db_name</td><td>-</td></tr>";
|
|
||||||
|
|
||||||
if ($db->create_db ($dolibarr_main_db_name))
|
|
||||||
{
|
{
|
||||||
print "<tr><td>Création de la base réussie : $dolibarr_main_db_name</td><td>OK</td></tr>";
|
print "toto";
|
||||||
$db->select_db ($dolibarr_main_db_name);
|
while ($row = $db->fetch_row())
|
||||||
|
|
||||||
// Création des tables
|
|
||||||
$dir = "../../mysql/tables/";
|
|
||||||
|
|
||||||
$handle=opendir($dir);
|
|
||||||
|
|
||||||
while (($file = readdir($handle))!==false)
|
|
||||||
{
|
{
|
||||||
if (substr($file, strlen($file) - 4) == '.sql' &&
|
print "Table : $row[0]\n";
|
||||||
substr($file,0,4) == 'llx_')
|
}
|
||||||
{
|
}
|
||||||
$name = substr($file, 0, strlen($file) - 4);
|
|
||||||
print "<tr><td>Création de la table $name</td>";
|
|
||||||
$buffer = '';
|
|
||||||
$fp = fopen($dir.$file,"r");
|
|
||||||
if ($fp)
|
|
||||||
{
|
|
||||||
while (!feof ($fp))
|
|
||||||
{
|
|
||||||
$buffer .= fgets($fp, 4096);
|
|
||||||
}
|
|
||||||
fclose($fp);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// Création des tables
|
||||||
|
$dir = "../../mysql/tables/";
|
||||||
|
|
||||||
|
$handle=opendir($dir);
|
||||||
|
|
||||||
|
while (($file = readdir($handle))!==false)
|
||||||
|
{
|
||||||
|
if (substr($file, strlen($file) - 4) == '.sql' &&
|
||||||
|
substr($file,0,4) == 'llx_')
|
||||||
|
{
|
||||||
|
$name = substr($file, 0, strlen($file) - 4);
|
||||||
|
print "<tr><td>Création de la table $name</td>";
|
||||||
|
$buffer = '';
|
||||||
|
$fp = fopen($dir.$file,"r");
|
||||||
|
if ($fp)
|
||||||
|
{
|
||||||
|
while (!feof ($fp))
|
||||||
|
{
|
||||||
|
$buffer .= fgets($fp, 4096);
|
||||||
|
}
|
||||||
|
fclose($fp);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($db->query($buffer))
|
||||||
|
{
|
||||||
|
print "<td>OK</td></tr>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<td>ERREUR</td></tr>";
|
||||||
|
$error++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
closedir($handle);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Données
|
||||||
|
//
|
||||||
|
$dir = "../../mysql/data/";
|
||||||
|
$file = "data.sql";
|
||||||
|
|
||||||
|
$fp = fopen($dir.$file,"r");
|
||||||
|
if ($fp)
|
||||||
|
{
|
||||||
|
while (!feof ($fp))
|
||||||
|
{
|
||||||
|
$buffer = fgets($fp, 4096);
|
||||||
|
|
||||||
|
if (strlen(trim(ereg_replace("--","",$buffer))))
|
||||||
|
{
|
||||||
if ($db->query($buffer))
|
if ($db->query($buffer))
|
||||||
{
|
{
|
||||||
print "<td>OK</td></tr>";
|
$ok = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "<td>ERREUR</td></tr>";
|
$ok = 0;
|
||||||
$error++;
|
print $db->error();
|
||||||
|
print "<p>".$buffer."</p>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
closedir($handle);
|
fclose($fp);
|
||||||
|
}
|
||||||
|
|
||||||
|
print "<tr><td>Chargement des données de base</td>";
|
||||||
|
if ($ok)
|
||||||
|
{
|
||||||
|
print "<td>OK</td></tr>";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "<tr><td>Erreur lors de la création de : $dolibarr_main_db_name</td><td>ERREUR</td></tr>";
|
$ok = 1 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "<tr><td>Erreur lors de la création de : $dolibarr_main_db_name</td><td>ERREUR</td></tr>";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
@ -112,7 +149,7 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="barrebottom">
|
<div class="barrebottom">
|
||||||
<form action="etape4.php" method="POST">
|
<form action="etape3.php" method="POST">
|
||||||
<input type="hidden" name="action" value="set">
|
<input type="hidden" name="action" value="set">
|
||||||
<input type="submit" value="Etape suivante ->">
|
<input type="submit" value="Etape suivante ->">
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<?PHP
|
<?PHP
|
||||||
include("./inc.php");
|
include("./inc.php");
|
||||||
$etape = 4;
|
$etape = 3;
|
||||||
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
||||||
|
|
||||||
$conf = "../conf/conf.php";
|
$conf = "../conf/conf.php";
|
||||||
@ -96,7 +96,7 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="barrebottom">
|
<div class="barrebottom">
|
||||||
<form action="etape5.php" method="POST">
|
<form action="etape4.php" method="POST">
|
||||||
<input type="hidden" name="action" value="set">
|
<input type="hidden" name="action" value="set">
|
||||||
<input type="submit" value="Etape suivante ->">
|
<input type="submit" value="Etape suivante ->">
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<?PHP
|
<?PHP
|
||||||
include("./inc.php");
|
include("./inc.php");
|
||||||
$etape = 5;
|
$etape = 4;
|
||||||
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
print "<h2>Installation de Dolibarr - Etape $etape/$etapes</h2>";
|
||||||
|
|
||||||
$conf = "../conf/conf.php";
|
$conf = "../conf/conf.php";
|
||||||
@ -43,9 +43,9 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
print '<tr><td>Compte administrateur :</td><td>';
|
print '<tr><td>Compte administrateur :</td><td>';
|
||||||
print '<input name="login"></td></tr>';
|
print '<input name="login"></td></tr>';
|
||||||
print '<tr><td>Mot de passe :</td><td>';
|
print '<tr><td>Mot de passe :</td><td>';
|
||||||
print '<input type="password" name="login"></td></tr>';
|
print '<input type="password" name="pass"></td></tr>';
|
||||||
print '<tr><td>Vérification du mot de passe :</td><td>';
|
print '<tr><td>Vérification du mot de passe :</td><td>';
|
||||||
print '<input type="password" name="login"></td></tr>';
|
print '<input type="password" name="pass_verif"></td></tr>';
|
||||||
print '</table>';
|
print '</table>';
|
||||||
$db->close();
|
$db->close();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -38,10 +38,10 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
$ok = 0;
|
$ok = 0;
|
||||||
if ($db->connected == 1)
|
if ($db->connected == 1)
|
||||||
{
|
{
|
||||||
$sql = "INSERT INTO llx_user(datec,login,pass,admin) VALUES (now()";
|
$sql = "INSERT INTO llx_user(datec,login,pass,admin,name,code) VALUES (now()";
|
||||||
$sql .= ",'".$HTTP_POST_VARS["login"]."'";
|
$sql .= ",'".$HTTP_POST_VARS["login"]."'";
|
||||||
$sql .= ",'".$HTTP_POST_VARS["pass"]."'";
|
$sql .= ",'".$HTTP_POST_VARS["pass"]."'";
|
||||||
$sql .= ",1)";
|
$sql .= ",1,'Administrateur','ADM')";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($db->query($sql))
|
if ($db->query($sql))
|
||||||
@ -59,6 +59,14 @@ if ($HTTP_POST_VARS["action"] == "set")
|
|||||||
$db->close();
|
$db->close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print '<div class="main">
|
||||||
|
<div class="main-inside">';
|
||||||
|
print "Votre système est maintenant configuré, il ne vous reste plus qu'a sélectionner les modules que vous souhaitez utiliser. Pour cela cliquer sur l'url ci-dessous : <br>";
|
||||||
|
print '<a href="'.$dolibarr_main_url_root .'/admin/modules.php">Configurer les modules</a></div></div>';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -110,7 +110,7 @@ exemples :
|
|||||||
|
|
||||||
<tr class="bg1">
|
<tr class="bg1">
|
||||||
<td valign="top">Serveur</td><td valign="top"><input type="text" name="db_host" value="<?PHP print $dolibarr_main_db_host ?>"></td>
|
<td valign="top">Serveur</td><td valign="top"><input type="text" name="db_host" value="<?PHP print $dolibarr_main_db_host ?>"></td>
|
||||||
<td>Nom du serveur de base de données, généralement 'localhost' quand le serveur est installé sur la même machine que le serveur web</td>
|
<td><div class="comment">Nom du serveur de base de données, généralement 'localhost' quand le serveur est installé sur la même machine que le serveur web</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr class="bg2">
|
<tr class="bg2">
|
||||||
@ -134,7 +134,17 @@ exemples :
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<td colspan="3" align="center"><h2>Base de données - Accés super utilisateur</h2></td>
|
<tr class="bg1">
|
||||||
|
<td valign="top">Créer l'utilisateur</td>
|
||||||
|
<td>
|
||||||
|
<input type="checkbox" name="db_create_user">
|
||||||
|
</td><td><div class="comment">Cocher cette option si l'utilisateur doit-être créé</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tr><td colspan="3" align="center"><h2>Base de données - Accés super utilisateur</h2></td></tr>
|
||||||
|
|
||||||
<tr class="bg1">
|
<tr class="bg1">
|
||||||
<td valign="top">Login</td>
|
<td valign="top">Login</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user