htaccess in foto map
Dan wil hij geen plaatjes meer weergeven (ik doe dat met <img src="images/foto_001.jpg">)
Hoe los ik dit op?
http://www.mijnhomepage.nl/htaccess/directory-beveiligen.php je kun het ook doormiddel een password en username met htaccess en htpasswd
Ik heb het al opgelost, maar toch bedankt;)!
Wat is je oplossing dan Wessel? Er zijn mensen nieuwsgierig naar...
Code (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
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
<?php
ob_start();
if((!$_GET['bestand']) & (!$_GET['type'])) {
echo 'u moet de parameters nog opgeven!!';
exit();
}
$bestand = $_GET['bestand'];
$bestand = fopen($bestand, "r") or exit("Het is niet gelukt dit bestand te openen!");
$inhoud = file_get_contents($bestand);
switch($_GET['type']) {
case "jpeg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "gif":
header ("Content-type: image/gif");
echo $inhoud;
break;
case "jpg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "jpe":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "bmp":
header ("Content-type: image/bmp");
echo $inhoud;
break;
case "png":
header ("Content-type: image/png");
echo $inhoud;
break;
case "tif":
header ("Content-type: image/tiff");
echo $inhoud;
break;
case "tiff":
header ("Content-type: image/tiff");
echo $inhoud;
break;
}
?>
ob_start();
if((!$_GET['bestand']) & (!$_GET['type'])) {
echo 'u moet de parameters nog opgeven!!';
exit();
}
$bestand = $_GET['bestand'];
$bestand = fopen($bestand, "r") or exit("Het is niet gelukt dit bestand te openen!");
$inhoud = file_get_contents($bestand);
switch($_GET['type']) {
case "jpeg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "gif":
header ("Content-type: image/gif");
echo $inhoud;
break;
case "jpg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "jpe":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "bmp":
header ("Content-type: image/bmp");
echo $inhoud;
break;
case "png":
header ("Content-type: image/png");
echo $inhoud;
break;
case "tif":
header ("Content-type: image/tiff");
echo $inhoud;
break;
case "tiff":
header ("Content-type: image/tiff");
echo $inhoud;
break;
}
?>
Code (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
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
<?php
ob_start();
if((!$_GET['bestand']) & (!$_GET['type'])) {
echo 'u moet de parameters nog opgeven!!';
exit();
}
$bestand = $_GET['bestand'];
$inhoud = file_get_contents($bestand);
switch($_GET['type']) {
case "jpeg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "gif":
header ("Content-type: image/gif");
echo $inhoud;
break;
case "jpg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "jpe":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "bmp":
header ("Content-type: image/bmp");
echo $inhoud;
break;
case "png":
header ("Content-type: image/png");
echo $inhoud;
break;
case "tif":
header ("Content-type: image/tiff");
echo $inhoud;
break;
case "tiff":
header ("Content-type: image/tiff");
echo $inhoud;
break;
}
?>
ob_start();
if((!$_GET['bestand']) & (!$_GET['type'])) {
echo 'u moet de parameters nog opgeven!!';
exit();
}
$bestand = $_GET['bestand'];
$inhoud = file_get_contents($bestand);
switch($_GET['type']) {
case "jpeg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "gif":
header ("Content-type: image/gif");
echo $inhoud;
break;
case "jpg":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "jpe":
header ("Content-type: image/jpeg");
echo $inhoud;
break;
case "bmp":
header ("Content-type: image/bmp");
echo $inhoud;
break;
case "png":
header ("Content-type: image/png");
echo $inhoud;
break;
case "tif":
header ("Content-type: image/tiff");
echo $inhoud;
break;
case "tiff":
header ("Content-type: image/tiff");
echo $inhoud;
break;
}
?>