اخواني حاولت استخدام سكريبت تحميل ملفات في سكريبت في شبكة داخليه لاكن لم تنجح عملية رفع الملفات .
الصفحة الاولى :
الصفحة الثانية :كود HTML:<!-- The data encoding type, enctype, MUST be specified as below --> <form enctype="multipart/form-data" action="__URL__" 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>
كذلك كيف اضبط مسار مجلد تحميل الملفاتكود PHP:?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.
$uploaddir = '/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>";
?>
حاولت اكتب المسار لاكن لم تنجح العملية
استخدم camel serverكود PHP:$uploaddir = '/localhost/uploads/';


رد مع اقتباس
