อัพโหลดไฟล์ไม่ได้ ผมอัพไฟล์รูปภาพที่ละหลายไฟล์ประมาณสี่ไฟล์ ไฟล์หนึ่งเกิน 1 mb กว่าๆ มันอัพโหลดได้ไฟล์แรกที่เหลือไม่ได้
ผมอัพไฟล์รูปภาพที่ละหลายไฟล์ประมาณสี่ไฟล์ ไฟล์หนึ่งเกิน 1 mb กว่าๆ มันอัพโหลดได้ไฟล์แรกที่เหลือไม่ได้ มันมีการทำรูปย่อด้วยครับแต่มันก็ไม่ทำให้ ถ้าเป็นไฟล์ตำกว่ามันอัพได้ทั้งหมดเลย บนลีนุกครับไม่ทราบเป็นเพราะอะไรได้บ้าง ผมแก้ที่ php.ini และ รีสตาทแล้วนะครับ รบกวนช่วยดูหน่อยครับ
php.ini
; Maximum allowed size for uploaded files.
upload_max_filesize = 30M
Code upload
$uploadDir = './photo/' ;
$thumbDir = './thumb/' ;
$Foreach ($_FILES["userfile"]["error"] as $key => $error) {
if ($error == 0 ) {
$title = trim($_REQUEST['title'][$key]) ;
$size = $_FILES["userfile"]["size"][$key];
$type = $_FILES["userfile"]["type"][$key];
$tmp_name = $_FILES["userfile"]["tmp_name"][$key];
$fname = $_FILES["userfile"]["name"][$key];
$uploadfile = $uploadDir . basename($fname);
$thumbfile = $thumbDir . $fname;
move_uploaded_file($tmp_name, "$uploadDir$fname");
echo "$key : $title , $size Byte $type $fname , $thumbfile<br> \n ";
$sql = "INSERT into tbimg ( cat_id , image ) values ('$cat' ,'$fname' ) ";
$result = mysql_query($sql);
if (!$result) { echo("เอ็กซิคิวต์คำสั่ง SQL ไม่ได้ " . mysql_error() ); }
list($w1, $h1) = getimagesize($uploadfile); // Get new dimensions
$quality = 100;
$w2 = 100 ; #
$percent = $w2 / $w1 ;
$h2 = $h1 * $percent ;
$h2 = 80 ; #
$percent = $h2 / $h1 ;
$w2 = $w1 * $percent ;
$w2 = 120 ; #
$h2 = 90 ; #
$im = imageCreateTrueColor($w2+4, $h2+4);
$im1 = imageCreateFromJpeg($uploadfile);
$dark = ImageColorAllocate($im,185,185,185); // dark
$light = ImageColorAllocate($im,230,230,230);
$white = ImageColorAllocate($im,254,254,254);
imagefilledRectangle($im, 0, 0, $w2+3 , $h2+3, $white);
imagefilledRectangle($im, 4, 4, $w2+4 , $h2+4, $light);
imagefilledRectangle($im, 3, 3, $w2+2 , $h2+2, $dark);
imageCopyResampled($im, $im1, 0, 0, 0, 0, $w2, $h2, $w1, $h1);
#imageCopyResized($im, $im1, 0, 0, 0, 0, $w2, $h2, $w1, $h1);
imageString($im, 5, 5, $h2 - 20, "mypicture", $light);
imagejpeg($im, $thumbfile , $quality); # %
imageDestroy($im);
imageDestroy($im1);
}
}
Tag : - - - -
Date :
6 ก.ค. 2551 10:08:16
By :
nn
View :
1446
Reply :
3
1.ตรวจสอบ function GD ว่ามีหรือเปล่า
2.ตรวจสอบ Permission ของโฟเดอร์ว่าเป็น 777 หรือเปล่า
3.ตรวจสอบ code ว่าถูกหรือไม่
Date :
7 ก.ค. 2551 07:07:24
By :
อิอิ
ถ้า gd ไม่ได้แล้วทำไมรูปที่มีขนาดเล็กกว่าจึง resize ได้ permisssion ถูกต้องแล้วครับ
ถ้าโค้ดผิดทำไมในเครื่องผมที่ทดลองมันได้หมดเลยครับไม่ว่าไฟล์ขนาดเท่าไหร่
ตรงนี้ Extensions หรือไม่ครับเพราะมันไม่เหมือนกับ windows งงเลย
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
; extension=modulename.extension
;
; For example:
;
; extension=msql.so
;
; Note that it should be the name of the module only; no directory information
; needs to go here. Specify the location of the extension with the
; extension_dir directive above.
Date :
7 ก.ค. 2551 09:44:31
By :
nn
Load balance : Server 01