|
|
|
Warning: imagejpeg() [function.imagejpeg]: Unable to open 'xxxxxx' for writing : permission denied in 'xxxxxx.php' online 222 |
|
|
|
|
|
|
|
Warning: imagejpeg() [function.imagejpeg]: Unable to open 'xxxxxx.jpg' for writing : permission denied in 'xxxxxx.php' online 222
ขึ้น error ตามข้างบนครับ
Code (PHP)
$size = getimagesize("myphoto/".$rowpic['name_photo']);
if($size[0] > $size[1]){ //กว้าง > สูง
$images = 'myphoto/'.$rowpic['name_photo'];
$new_images = "img-th/".$images;
$width=650; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
}
เกี่ยวกับการย่อไฟล์ภาพ
Tag : PHP, MySQL, HTML/CSS
|
ประวัติการแก้ไข 2015-12-24 19:09:33
|
|
|
|
|
Date :
2015-12-24 19:08:35 |
By :
nook563 |
View :
851 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เบื้องต้น คือแก้ไข permision file ผ่าน แต่แปลกใจ
ว่าทำไม permision เป็น 644
ทั้งทั้งที่อัพ ภาพผ่านเว็บ ขึ้นไป ทำให้เป็น 777 ได้ไหมครับ
|
ประวัติการแก้ไข 2015-12-24 19:23:44
|
|
|
|
Date :
2015-12-24 19:18:16 |
By :
nook563 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่สิทธิ์ 644 ก็สามารถ ย่อไฟล์ แก้ไขและลบไฟล์ได้แล้วถูกต้องไหมครับ แต่ทำไมขึ้น permission ตอนนี้อาการ permission หายไปแล้วทั้งๆที่เป็น 644 เหมือนเดิม
http://share.olanlab.com/th/it/blog/view/89
http://www.thaiall.com/isinthai/index.php?q=chmod
http://www.codethep.com/articles/linux/chmod-permission-linux-command.html?id=41
|
|
|
|
|
Date :
2015-12-24 19:38:44 |
By :
nook563 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|