Forum

> > Off Topic > Dateien Upload Funktion
Forums overviewOff Topic overviewLog in to reply

German Dateien Upload Funktion

4 replies
To the start Previous 1 Next To the start

old Dateien Upload Funktion

Dark Wizard
COMMUNITY BANNED Off Offline

Quote
Ich wollte mal ein Uploader machen, das macht man ja mit copy($source,$des);.

So, wenn ich jetzt sschreibe:
copy("C:/image.bmp","files/image.bmp");, dann kopiert der das Bild nicht in den Ordner vom Server, sondern es kommt immer ien Fehler.
Warum? Und ist das so überhuapt richtig?

old Re: Dateien Upload Funktion

k.o.g.
User Off Offline

Quote
Da:
das ist ein kleines Upload script von mir, ist vielleicht nicht das beste, aber vielleicht hilft es dir:
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
<body bgcolor="#DDDDDD">
<div align="center">
	<table border="0" width="848" cellspacing="1">
		<form method="POST" enctype="multipart/form-data" action="upload.php?act=upload">
		<tr>
			<td colspan="2" class="label">
			<p align="center"><b>Mapupload</b></td>
		</tr>
		<tr>
			<td width="33%">Map (ZIP Archiv):</td>
			<td width="61%"><input type="file" name="map" size="35"></td>
		</tr>
		<tr>
			<td width="33%"> </td>
			<td width="61%"><input type="submit" value="Upload"></td>
		</tr>
		<tr>
			<td width="97%" colspan="2" class="fuss2"> </td>
		</tr>
		</form>
	</table>
</div>
<?
	if($act=="upload")  {
		$datei=$_FILES['map']['name'];
		if($datei)  {
			$test=explode(".",$datei);
			if($test[1]=="zip")  {
				if(!file_exists("maps/".$datei))  {
					if($_FILES['map']['size']<=4194304)  {
						move_uploaded_file($_FILES['map']['tmp_name'],"maps/".$datei);
						chmod("maps/".$datei,0777);
?>
<script>document.location.href='upload.php'</script>
<?
					}else{
						echo "This Map is too Big!";
					}
				}else{
					echo "This Map exists";
				}
			}else{
				echo "Only ZIP's";
			}
		}
	}
?>

old Re: Dateien Upload Funktion

k.o.g.
User Off Offline

Quote
OK, dann nimmst du am besten diesen Befehl:
1
move_uploaded_file();
Hier noch eine dokumentation über den Befehl und den Befehl chmod(); würde ich auch gebrauchen, sonst ist die gefahr da, das du die Datei nicht mehr löschen kannst, nur noch der Hoster
To the start Previous 1 Next To the start
Log in to replyOff Topic overviewForums overview