before big changes
parent
1f25512af0
commit
084156a2c3
@ -1 +1,2 @@
|
||||
/webinterface/uploads/*.webm
|
||||
*.webm
|
||||
*.mp3
|
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
|
||||
|
||||
|
||||
<head>
|
||||
|
||||
<title>Upload your files</title>
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<!-- The data encoding type, enctype, MUST be specified as below -->
|
||||
|
||||
<form enctype="multipart/form-data" action="/" method="POST">
|
||||
|
||||
<!-- MAX_FILE_SIZE must precede the file input field -->
|
||||
|
||||
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
|
||||
|
||||
<!-- Name of input element determines name in $_FILES array -->
|
||||
|
||||
Send this file: <input name="userfile" type="file" />
|
||||
|
||||
<input type="submit" value="Send File" />
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
</html>
|
||||
|
||||
<?php
|
||||
|
||||
$uploaddir = '/opt/homebrew/var/www/uploads/';
|
||||
|
||||
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
|
||||
|
||||
|
||||
|
||||
echo '<pre>';
|
||||
|
||||
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
|
||||
echo "File is valid, and was successfully uploaded.\n";
|
||||
} else {
|
||||
|
||||
echo "Possible file upload attack!\n";
|
||||
}
|
||||
|
||||
|
||||
|
||||
echo 'Here is some more debugging info:';
|
||||
|
||||
print_r($_FILES);
|
||||
|
||||
|
||||
|
||||
print "</pre>";
|
||||
|
||||
|
||||
|
||||
?>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue