Log in

View Full Version : File Uploading Error


Thr33
06-12-2012, 05:40 PM
Im trying to create a script so members can upload files. Ive read many tutorials and finally i hit a snag:
"Your submission could not be processed because a security token was invalid."

My HTML-end looks like this:
<form enctype="multipart/form-data" action="uploading.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="20000000" />
<input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>

My PHP-end (located in "uploading.php") looks like this:
$target_path = "file/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}

Any help would be greatly appreciated.

Ziki
06-17-2012, 10:11 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=177013" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=177013</a>