Hieronder mijn upload script...
Hij geeft nu de volgende foutmelding:
Warning: Unable to create 'home/cth3779a/WWW/upload_hw': No such file or directory in /home/cth3779a/WWW/upload.php on line 26
Warning: Unable to move '/tmp/phppZMeng' to 'home/cth3779a/WWW/upload_hw' in /home/cth3779a/WWW/upload.php on line 26
Wat is er fout?? Ik heb de map upload_hw alle permissies gegeven...
gr. Bart
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
| <? if ($_POST['uploaden']) { $naam_doc = $HTTP_POST_FILES['bestand']['name']; $grootte_doc =$HTTP_POST_FILES['bestand']['size']; $max_grootte = 204800; $ext = substr($naam_doc, -4); $extensie = strtoupper($ext); if ($naam_doc == "") { $error1 = "Je bent vergeten een Word document te selecteren<BR>"; } if ($grootte_doc > $max_grootte) { $error2 = "Je Word document is te groot, maximum is 200Kb<BR>"; } if ($extensie != ".DOC") { $error3 = "Je mag alleen Word documenten uploaden<BR>"; } echo $error1; echo $error2; echo $error3; if (!$error1 && !$error2 && !$error3) { move_uploaded_file($HTTP_POST_FILES['bestand']['tmp_name'], '/upload_hw/'); die ("Je bestand is nu geupload!"); }}else{ ?> <form action="<? echo $PHP_SELF ?>" method="post" enctype="multipart/form-data"> Bestand :<br><input type="file" name="bestand"><br> <br> <input type="submit" value="Uploaden" name="uploaden"> </form> <? } ?> |
Hij geeft nu de volgende foutmelding:
Warning: Unable to create 'home/cth3779a/WWW/upload_hw': No such file or directory in /home/cth3779a/WWW/upload.php on line 26
Warning: Unable to move '/tmp/phppZMeng' to 'home/cth3779a/WWW/upload_hw' in /home/cth3779a/WWW/upload.php on line 26
Wat is er fout?? Ik heb de map upload_hw alle permissies gegeven...
gr. Bart