Resize ครับ ติดหลาย ชม แล้วครับ ผมทำตามหนังสือเล่มนึง แล้วมัน error อย่างนี้อ่ะครับ
ผมทำตามหนังสือเล่มนึง แล้วมัน error อย่างนี้อ่ะครับ
// ERROR
Warning: copy(http://localhost/xxx/images/category/normal-img/99df76ebf7c90cf0444fe7bb5ae58316.jpg) [function.copy]: failed to open stream: HTTP wrapper does not support writeable connections in C:\AppServ\www\xxx\admin\category\fnadd.php on line 46
Warning: imagejpeg() [function.imagejpeg]: Unable to open 'http://localhost/xxx/images/category/small-img/99df76ebf7c90cf0444fe7bb5ae58316.jpg' for writing: Invalid argument in C:\AppServ\www\xxx\admin\category\fnadd.php on line 90
//CODE
$photo = $_FILES['photo']['tmp_name'];
$photo_name = $_FILES['photo']['name'];
$photo_size = $_FILES['photo']['size'];
$photo_type = $_FILES['photo']['type'];
$ext = strtolower(end(explode('.', $photo_name)));
if($ext == "jpg" or $ext == "jpeg" or $ext == "png" or $ext == "gif")
{
$filename = md5(rand() * time()).".".$ext;
copy($photo, "$hostname/images/category/normal-img/$filename"); // Line 46
if($ext == "jpg" or $ext == "jpeg" )
{
$ori_img = imagecreatefromjpeg($photo);
}else if($ext == "png"){
$ori_img = imagecreatefrompng($photo);
}else if($ext == "gif"){
$ori_img = imagecreatefromgif($photo);
}
$ori_size = getimagesize($photo);
$ori_w = $ori_size[0];
$ori_h = $ori_size[1];
if($ori_w >= $ori_h)
{
$new_w = 75;
$new_h = round(($new_w/$ori_w)* $ori_h);
}else{
$new_h = 75;
$new_w = round(($new_h/$ori_h)* $ori_w);
}
$new_img = imagecreatetruecolor($new_w, $new_h);
imagecopyresized( $new_img, $ori_img,0,0,0,0,$new_w,$new_h,$ori_w,$ori_h);
if($ext == "jpg" or $ext == "jpeg")
{
imagejpeg($new_img,"$hostname/images/category/small-img/$filename"); // Line 90
}else if($ext == "png"){
imagepng($new_img,"$hostname/images/category/small-img/$filename");
} else if($ext == "gif"){
imagegif($new_img,"$hostname/images/category/small-img/$filename");
}
imagedestroy($ori_img);
imagedestroy($new_img);
$sql = "INSERT INTO category (cat_id, cat_name, cat_desc, cat_img) VALUE ('$nextId', '$cat_name', '$cat_desc', '$new_img' )";
$result = mysql_query($sql);
}else{
echo "Can not .";
}
ช่วยหน่อยนะครับ ผมติดอยู่นานแระ ขอบคุณครับ
Tag : - - - -
Date :
12 ธ.ค. 2551 15:56:05
By :
งมงม
View :
1267
Reply :
6
copy($photo, "$hostname/images/category/normal-img/$filename"); // Line 46
ชื่อ normal-img รึป่าวค่ะ เครื่องหมาย "-" อาจจะมีปัญหาค่ะ ลองเปลี่ยนชื่อได้ไหม อาจจะเปลี่ยนเป็น
copy($photo, "$hostname/images/category/normal_img/$filename"); // Line 46
Date :
12 ธ.ค. 2551 16:42:44
By :
jewels
ลองทำตามที่คุณ <b>jewels</b> บอกแล้วครับ ยัง error เหมือนเดิม
Date :
12 ธ.ค. 2551 17:03:44
By :
งมงม
ขอ error ใหม่ ด้วยค่ะ
Date :
12 ธ.ค. 2551 17:17:07
By :
jewels
$hostname คือ
$server = "http://".$_SERVER['HTTP_HOST']."/xxx";
$hostname = ereg_replace('www.','',$server);
แล้วที่เปลี่ยนชื่อโฟล์เดอร์ผมก็เปลี่ยนทั้ง ชื่อโฟล์เดอร์ ใน code และใน ในโฟล์เดอร์ที่เก็บไฟล ครับ ทั้งสองที่ ชื่อเหมือนกันครับ
Error ใหม่
Warning: copy(http://localhost/xxx/images/category/normal/5d33719d7fbdbf48647633b400d78eff.jpg) [function.copy]: failed to open stream: HTTP wrapper does not support writeable connections in C:\AppServ\www\poolshopthailand2\admin\category\fnadd.php on line 46
Warning: imagejpeg() [function.imagejpeg]: Unable to open 'http://localhost/xxx/images/category/small/5d33719d7fbdbf48647633b400d78eff.jpg' for writing: Invalid argument in C:\AppServ\www\poolshopthailand2\admin\category\fnadd.php on line 90
Date :
12 ธ.ค. 2551 19:12:49
By :
งมงม
$tmpname=$HTTP_POST_FILES['txtpicture']['tmp_name'];
$name=$HTTP_POST_FILES['txtpicture']['name'];
$type=$HTTP_POST_FILES['txtpicture']['type'];
$pict_type=split("/",$type);
if(!(($pict_type[1]=="gif")||($pict_type[1]=="pjpeg")))
{}
else
{//3
$target_path="photo/album/";
$gen_num=mt_rand(000000000,999999999);
$target_path = $target_path . basename( $_FILES['txtpicture']['name']);
$pict = $_FILES['txtpicture']['name'];
$filename = $txtpicture;
$pictfilesize = filesize($filename);
if($pictfilesize > 200000){
$pict="";
}else{//4
if(move_uploaded_file($_FILES['txtpicture']['tmp_name'], $target_path)) {
chmod("photo/album/".$pict, 777);
rename("photo/album/".$pict,"photo/album/".$gen_num.$pict);
$pict = $gen_num.$pict;
}else{
$pict="";
}
}//4
}//3
$txtpict_post=$pict;
Date :
15 ธ.ค. 2551 15:48:33
By :
superman
Load balance : Server 02