-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
478 lines (441 loc) · 19.2 KB
/
install.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?php
include('config/config.php');
$niveau_visa = $admin;
require_once('Connections/alienorweblibre.php');
include('include/fonctions.php');
/******** Initialisation des variables *******/
$page = "ethno";
$msg = "";
$nom = "";
$prenom = "";
$login = "";
$mot_de_passe = "";
/*********************************************/
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
/******* Inserer un utilisateur *******/
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "utilisateur") && ($_POST['nom'] != "")) {
$mdp = GetSQLValueString($_POST['mot_de_passe'], "text");
$_POST['mot_de_passe'] = md5($_POST['mot_de_passe']);
$insertSQL = sprintf("INSERT INTO utilisateur (nom,prenom,login,mot_de_passe,droit) VALUES (%s,%s,%s,%s,%s)",
GetSQLValueString($_POST['nom'], "text"),
GetSQLValueString($_POST['prenom'], "text"),
GetSQLValueString($_POST['login'], "text"),
GetSQLValueString($_POST['mot_de_passe'], "text"),
GetSQLValueString($_POST['droit'], "int"));
/******* V�rification login pour �viter les doublons *******/
mysql_select_db($database_alienorweblibre, $alienorweblibre);
$query_utilisateur = "SELECT * FROM utilisateur WHERE login = '".$_POST['login']."'";
$utilisateur = mysql_query($query_utilisateur, $alienorweblibre) or die(mysql_error());
$row_utilisateur = mysql_fetch_assoc($utilisateur);
$totalRows_utilisateur = mysql_num_rows($utilisateur);
/***********************************************************/
if ($totalRows_utilisateur == 0) {
mysql_select_db($database_alienorweblibre, $alienorweblibre);
$Result = mysql_query($insertSQL, $alienorweblibre) or die(mysql_error());
$id_utilisateur = mysql_insert_id();
mkdir("imagesDoc/".$_POST['code_musee']);
mkdir("imagesDoc/SUPER");
$msg = "<br>Utilisateur AlienorWeb Libre ins�r� avec succ�s<br>";
$insertMusee = sprintf("INSERT INTO musee (MUS_INDEX,CODE_MUSEE,NOM,cpt_objets,cpt_lieux,cpt_personnes,cpt_documentations) VALUES (NULL,'".$_POST['code_musee']."','".$_POST['nom_musee']."','".$_POST['cpt_objets']."','".$_POST['cpt_lieux']."','".$_POST['cpt_personnes']."','".$_POST['cpt_documentations']."')");
$Resultat = mysql_query($insertMusee, $alienorweblibre) or die(mysql_error());
$id_musee = mysql_insert_id();
$insertLIEN = sprintf("INSERT INTO user_musee (INDEX_USE_LIEU,INDEX_USER,INDEX_MUSEE) VALUES (NULL,'$id_utilisateur','$id_musee')");
$Resultat2 = mysql_query($insertLIEN, $alienorweblibre) or die(mysql_error());
echo $msg;
/******************************************/
$os = array(
"CYGWIN_NT-5.1" => "Unix",
"Darwin" => "Unix",
"FreeBSD" => "Unix",
"HP-UX" => "Unix",
"IRIX64" => "Unix",
"Linux" => "Unix",
"NetBSD" => "Unix",
"OpenBSD" => "Unix",
"SunOS" => "Unix",
"Unix" => "Unix",
"WIN32" => "Windows",
"WINNT" => "Windows",
"Windows" => "Windows"
);
$fichier =fopen("./config/config.txt","w");
if($os[PHP_OS] == 'Unix')
$defautPath = '../imageDoc';
else
$defautPath = 'c:\wamp\www\AlienorWebLibre\imagesDoc';
$taille = $_POST['max_transfert'] * 1000;
if ($_POST['images'] != "") {
$repImg = $_POST['images'];
$defautImage = @file_get_contents($defaultPath."\visuel_de_remplacement.jpg") or die ("Visuel de remplacement not found");
$fimage = fopen($_POST['images'],"w");
fwrite($fimage,$defautImage);
fclose($fimage);
}else{
$repImg = $defautPath;
}
fwrite($fichier,";**************************************** \r\n
; fichier de configuration d'AWL \r\n
;**************************************** \r\n
; Lieu de stockage des images \r\n
; Attention ce r�pertoire doit �tre accessible par le serveur web \r\n
images = \"".$repImg."\" \r\n
;Acc�s � internet \r\n
; mettre la valeur � true si le poste acc�de � internet, false sinon \r\n
internet = \"".$_POST['internet']."\" \r\n
; Taille maximum du transfert accepter par le serveur en upload \r\n
max_transfert = \"".$taille."\"\r\n");
fclose($fichier);
/******************************************/
if($os[PHP_OS] == 'Windows')
{
/**********************************/
/* debut modification du php.ini */
/*********************************/
// on charge le fichier de conf locale
$wampConfFile = '../../wampmanager.conf';
if (!is_file($wampConfFile))
die ('Unable to open WampServer\'s config file, please change path in index.php file');
//require $wampConfFile;
$fp = fopen($wampConfFile,'r');
$wampConfFileContents = fread ($fp, filesize ($wampConfFile));
fclose ($fp);
preg_match('|phpVersion = (.*)\n|',$wampConfFileContents,$result);
$phpVersion = str_replace('"','',$result[1]);
$phpinifile = "../../bin/php/php".$phpVersion."/php.ini";
$myphpini = @file_get_contents($phpinifile) or die ("php.ini file not found");
$myphpini = ereg_replace('upload_max_filesize = 2M','upload_max_filesize = '.$_POST['max_transfert'].'M',$myphpini);
$fpphpini = fopen($phpinifile,"w");
fwrite($fpphpini,$myphpini);
fclose($fpphpini);
/**********************************/
/* fin modification du php.ini */
/*********************************/
/**********************************/
/*debut modification du httpd.conf*/
/*********************************/
$wampConfFile = '../../wampmanager.conf';
if (!is_file($wampConfFile))
die ('Unable to open WampServer\'s config file, please change path in index.php file');
//require $wampConfFile;
$fp = fopen($wampConfFile,'r');
$wampConfFileContents = fread ($fp, filesize ($wampConfFile));
fclose ($fp);
preg_match('|apacheVersion = (.*)\n|',$wampConfFileContents,$result);
$apacheVersion = str_replace('"','',$result[1]);
$httpdfile = "../../bin/apache/apache".$apacheVersion."/conf/httpd.conf";
$txt = "\n<Directory \"C:/wamp/www/AlienorWebLibre\">\nOrder Deny,Allow\nAllow from ";
switch ($_POST['serveur']){
case 'internet': $txt = $txt."all";
break;
case 'intranet' : $txt = $txt.$_POST['plage'];
break;
default : $txt = $txt."127.0.0.1";
break;
};
$txt = $txt."\n</Directory>\n";
$myhttpd = @file_get_contents($httpdfile) or die ("httpd.conf file not found");
$myhttpd = $myhttpd.$txt;
$fhttpd = fopen($httpdfile,"w");
fwrite($fhttpd,$myhttpd);
fclose($fhttpd);
/**********************************/
/* fin modification du httpd.conf */
/*********************************/
}
else
{
$fp = fopen('./.htaccess', 'w');
if($fp)
{
$htaccess = 'ErrorDocument 404 ./alienorweblibre/erreur404.html'.chr(13);
$htaccess .= 'ErrorDocument 403 ./alienorweblibre/erreur403.html'.chr(13);
$htaccess .= 'Order Deny,Allow'.chr(13);
$htaccess .= 'Deny from All'.chr(13);
$htaccess .= 'Allow from ';
switch ($_POST['serveur']){
case 'internet': $htaccess .= "all";
break;
case 'intranet' : $htaccess .= $_POST['plage'];
break;
default : $htaccess .= "127.0.0.1";
break;
};
if(fwrite($fp,$htaccess))
fclose($fp);
else
{
die("could not create htaccess");
fclose($fp);
}
}
else
die("could not create htaccess");
}
echo "<script>window.close()</script>";
unlink("install.php");
} else {
$msg = "Ce login existe d�j�";
}
}
/********************************************/
/******** Affichage des utilisateurs *******/
mysql_select_db($database_alienorweblibre, $alienorweblibre);
$query_utilisateur = "SELECT * FROM utilisateur ORDER BY nom ASC";
$utilisateur = mysql_query($query_utilisateur, $alienorweblibre) or die(mysql_error());
$row_utilisateur = mysql_fetch_assoc($utilisateur);
$totalRows_utilisateur = mysql_num_rows($utilisateur);
/********************************************/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="pragma" content="no-cache">
<title>Installation des parametre de votre base</title>
<link href="style/style_awl.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function verifMdp() {
if (document.utilisateur.mot_de_passe.value != document.utilisateur.mot_de_passe1.value) {
alert("ATTENTION :\n\nLes mots de passe ne sont pas identique");
document.utilisateur.mot_de_passe.value = '';
document.utilisateur.mot_de_passe1.value = '';
document.utilisateur.mot_de_passe.select();
document.utilisateur.mot_de_passe.focus();
}
}
function confirmer() {
if (confirm('Voulez vous supprimer cet utilisateur ?')) {
document.supprimer.submit();
} else {
return false;
}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_validateForm() { //v4.0
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' doit contenir une adresse mail.\n';
} else if (test!='R') { num = parseFloat(val);
if (isNaN(val)) errors+='- '+nm+' doit contenir un nombre.\n';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if (num<min || max<num) errors+='- '+nm+' doit �tre compris entre '+min+' et '+max+'.\n';
} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' est requis.\n'; }
} if (errors) alert('Quelques omissions ou erreurs ont �t� trouv�es :\n'+errors);
document.MM_returnValue = (errors == '');
}
//-->
</script>
<style type="text/css">
<!--
th {
background-color: #D8D8D8;
text-align: center;
font-weight: bold;
}
.L1 {
background-color: #FAFAFA;
}
.L2 {
background-color: #F3F3F3;
}
-->
</style>
</head>
<body>
<div id="haut">
<h1> </h1>
<h2>Sécurisation : création de l'administrateur</h2>
</div>
<div class="centre">
<form action="<?php echo $editFormAction; ?>" method="post" enctype="multipart/form-data" name="utilisateur">
<table cellspacing="0" class="bd-tbl-mr">
<tr>
<td colspan="2" align="center" class="titre-tbl"><b>Administrateur</b></td>
</tr>
<tr>
<td align="right">
<label for="nom">Nom :</label> </td>
<td align="left">
<input type="text" name="nom" id="nom" size="32" accesskey="N" tabindex="1" value="Nom"> </td>
</tr>
<tr>
<td align="right">
<label for="prenom">Prénom :</label> </td>
<td align="left">
<input type="text" name="prenom" id="prenom" size="32" accesskey="P" tabindex="2" value="Prénom"> </td>
</tr>
<tr>
<td align="right">
<label for="login">Login :</label> </td>
<td align="left">
<input type="text" name="login" id="login" size="32" accesskey="L" tabindex="3" value="Administrateur"> </td>
</tr>
<?php if (isset($_POST["module"]) && $_POST["module"] != "utilisateur" || $per_index == 0) { ?>
<tr>
<td align="right">
<label for="mot_de_passe">Mot de passe :</label> </td>
<td align="left">
<input type="password" name="mot_de_passe" id="mot_de_passe" size="32" accesskey="M" tabindex="4" value=""> </td>
</tr>
<tr>
<td align="right">
<label for="mot_de_passe1">Confirmer mot de passe :</label> </td>
<td align="left">
<input type="password" name="mot_de_passe1" id="mot_de_passe1" value="" size="32" accesskey="C" tabindex="5" onBlur="verifMdp()"> </td>
</tr>
<?php } ?>
<tr>
<td align="right">
<label for="droit">Droit :</label> </td>
<td align="left" valign="middle">
<input type="radio" name="droit" id="droit" value="50" checked tabindex="6">
<label for="droit">Administrateur</label>
</td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center" class="titre-tbl"><strong>Musée</strong></td>
</tr>
<tr>
<td align="right"><label>Nom du musée</label></td>
<td><input name="nom_musee" type="text" id="nom_musee"> </td>
</tr>
<tr>
<td align="right">Code musée </td>
<td><input name="code_musee" type="text" id="code_musee" size="6" maxlength="5"></td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center" class="titre-tbl"><p>Accès internet </p> </td>
</tr>
<tr>
<td colspan="2" align="center">Pouvez-vous acceder à internet à partir des postes de saisie :</td>
</tr>
<tr>
<td align="center"><label></label><input name="internet" type="radio" value="true" checked>
Oui</td>
<td align="center"><input type="radio" name="internet" value="false">
Non</td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center" class="titre-tbl">Compteurs</td>
</tr>
<tr>
<td align="right">OBJETS</td>
<td>
<input name="cpt_objets" type="text" id="cpt_objets" value="000000" size="7" maxlength="6"></td>
</tr>
<tr>
<td align="right">LIEUX</td>
<td><input name="cpt_lieux" type="text" id="cpt_lieux" value="000000" size="7" maxlength="6"></td>
</tr>
<tr>
<td align="right">Personnes</td>
<td><input name="cpt_personnes" type="text" id="cpt_personnes" value="000000" size="7" maxlength="6"></td>
</tr>
<tr>
<td align="right">Documentations</td>
<td><input name="cpt_documentations" type="text" id="cpt_documentations" value="000000" size="7" maxlength="6"></td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center" class="titre-tbl">Images</td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td align="right">Taille maximum du transfert</td>
<td><input name="max_transfert" type="text" id="max_transfert" value="5" size="4" maxlength="3">
M0 </td>
</tr>
<tr>
<td colspan="2"><p class="centre">Chemin du répertoire de stockage sur le serveur.</p>
<p>Inscrivez le chemin complet à partir de la racine par exemple : "c:\mesimages\images_bases".</p>
<p>Vous devez vous assurer au préalable que le répertoire ait les autorisations nécessaires à l'accès par le serveur. </p>
<p>
Par défaut le répertoire est le répertoire d'installation/imagesDoc</p>
<p> </p></td>
</tr>
<tr>
<td align="right">Chemin : </td>
<td><input name="images" type="text" size="50"></td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center" class="titre-tbl">Serveur</td>
</tr>
<tr>
<td colspan="2" align="left"><p>Votre AWL doit pouvoir être accessible depuis :</p>
</td>
</tr>
<tr>
<td colspan="2" align="center"><table width="750" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="30%" valign="top"><input name="serveur" type="radio" value="machine" checked>
cette machine uniquement </td>
<td width="30%"><p>
<input type="radio" name="serveur" value="intranet">
tout l'intranet </p>
<p>plage d'adresse :
<input name="plage" type="text" id="plage" size="16" maxlength="15">
</p></td>
<td width="30%" valign="top"><input type="radio" name="serveur" value="internet">
internet</td>
</tr>
</table></td>
</tr>
<tr>
<td align="right"> </td>
<td> </td>
</tr>
<tr>
<td align="right"> </td>
<td>
<input name="inserer" type="submit" accesskey="I" onClick="MM_validateForm('nom','','R','prenom','','R','login','','R','nom_musee','','R','code_musee','','R');return document.MM_returnValue" value="Valider">
<input type="hidden" name="MM_insert" value="utilisateur"> </td>
</tr>
<tr>
<td colspan="2" align="right">
<p style="text-align:center; color:#FF0000; font-weight:bold"> <?php echo $msg; ?> </p> </td>
</tr>
</table>
</form>
</div>
<br>
<div class="centre"></div>
</body>
</html>
<?php
mysql_free_result($utilisateur);
?>