HTML interesse |
|
ERROR:
Warning: Unable to create 'phpbb2_images/1.jpg': No such file or directory in c:\phpdev\www\phpbb2\upload\index.php on line 30
Warning: Unable to move 'C:\WINDOWS\TEMP\php1AE.tmp' to 'phpbb2_images/1.jpg' in c:\phpdev\www\phpbb2\upload\index.php on line 30
ERROR: Warning : Unable to create 'phpbb2_images/1.jpg': No such file or directory in c :\phpdev\www\phpbb2\upload\index .php on line 30 Warning: Unable to move 'C:\WINDOWS\TEMP\php1AE.tmp' to 'phpbb2_images/1.jpg' in c:\phpdev\www\phpbb2\upload\index.php on line 30
Settings:
$locatie="phpbb2_images/"; //of een andere map, vergeet niet de w-rechten
$toegestaan = array ("jpg", "gif", "png"); // extensies die toegestaan zijn
$max_size = 150000; //maximale grootte van het bestand in bytes /1024 = kb /1024 = mb
$jousite = "http://10.125.1.15/"; // eindigent op een slash
$locatie="phpbb2_images/"; //of een andere map, vergeet niet de w-rechten $toegestaan = array ("jpg", "gif", "png"); // extensies die toegestaan zijn $max_size = 150000; //maximale grootte van het bestand in bytes /1024 = kb /1024 = mb $jousite = "http://10.125.1.15/"; // eindigent op een slash
Line30:
if(!move_uploaded_file($_FILES['bestand']['tmp_name'],$locatie.$_FILES['bestand']['name']))
{
echo "het bestand kan niet worden verplaatst";
exit;
}
if(!move_uploaded_file($_FILES['bestand']['tmp_name'],$locatie.$_FILES['bestand']['name'])) { echo "het bestand kan niet worden verplaatst"; }
|