ปัญหาเกี่ยวกับอัพโหลดไฟล์ทั้งหมด 9 แบบ # 1

หลาย ๆครั้งที่มีการอัพโหลดไฟล์ผ่านทางฟอร์มมีการติดปัญหาอัพไฟล์ไม่ได้บ้าง file error บ้าง ซึ่ง Error ทั้ง 9 ประเภทมีดังต่อไปนี้ 

ขณะที่เราอัพโหลดแหละเมื่ออัพโหลดเสร็ดจะมี สิ่งที่ติดมากับ $_FILE['FILE_UPLOAD']['ERROR']; 
จะได้ค่าเลข 0-8 ซึ่งมีความหมายดังต่อไปนี้ 

1.  0 คือใช้ได้ ไม่มีข้อผิดพลาด
UPLOAD_ERR_OK
Value: 0; There is no error, the file uploaded with success.
2. คือ การตั้งค่าใน php max_upload_file ใน php.ini ถูก set ไว้แค่ไม่เกิน 2 mb
UPLOAD_ERR_INI_SIZE
Value: 1; The uploaded file exceeds the upload_max_filesize directive in php.ini.
3.คือหน้าฟรอมที่อนุญาติให้อัพโหลดเกินขนาดที่ส่งมา
UPLOAD_ERR_FORM_SIZE
Value: 2; The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.
4.เกิดข้อผิดพลาดขณะส่งไฟล์
UPLOAD_ERR_PARTIAL
Value: 3; The uploaded file was only partially uploaded.
5.ไม่พบไฟล์ที่อัพโหลด
UPLOAD_ERR_NO_FILE
Value: 4; No file was uploaded.
6.คือไม่พบที่จัดเก็บไฟล์สำรอง ..ไม่พบไดเร็กทอรี่
UPLOAD_ERR_NO_TMP_DIR
Value: 6; Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3.
7.เขียนไฟล์ไม่ได้
UPLOAD_ERR_CANT_WRITE
Value: 7; Failed to write file to disk. Introduced in PHP 5.1.0.
8. ประเภทไฟล์ไม่ถูกต้อง
UPLOAD_ERR_EXTENSION
Value: 8; A PHP extension stopped the file upload. PHP does not provide a way to ascertain which extension caused the file upload to stop; examining the list of loaded extensions with phpinfo() may help. Introduced in PHP 5.2.0.

เทคนิคการแก้ ERROR 2 คือ กำหนด text field เป็น hidden ไว้แล้วใส่ค่าที่ต้องการ 
เช่น  1024 *1024 = 1k  ; 1024k*1024k = 1mb ;


<input type='hidden' value ='1024*1024*1024'>
<input type='file' value=''> ที่สำคัญตรงปุ่มไฟล์ให้ใส่ค่าว่างไว้ด้วย อย่าลืม

วิธีการแก้ก็ประมาณนี้ครับ
Share on Google Plus

About maxcom

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 ความคิดเห็น:

แสดงความคิดเห็น