Hola a todos acabo de combiar el server de la pagina web donde trabajo yo todo esta funcionando menos la parte donde se agregan imagenes alas notificas cuando agrego la imagen me dice me dice:
Filename: soporte.jpg has been uploaded
Create thumb-nail image...
Fatal error: Call to undefined function: imagecreatefromjpeg() in c:\program files\easyphp1-8\www\admin\photos\upload.php on line 36
Linea 36 me dice if (preg_match("/jpg|jpeg/",$system[1])){$src_img=imagecreatefromjpeg($name);}
que forma parte de la funcion Cita: function createthumb($name,$filename,$new_w,$new_h)
{
$system=explode(".",$name);
if (preg_match("/jpg|jpeg/",$system[1])){$src_img=imagecreatefromjpeg($name);}
if (preg_match("/png/",$system[1])){$src_img=imagecreatefrompng($name);}
$old_x=imageSX($src_img);
$old_y=imageSY($src_img);
if ($old_x > $old_y)
{
$thumb_w=$new_w;
$thumb_h=$old_y*($new_h/$old_x);
}
if ($old_x < $old_y)
{
$thumb_w=$old_x*($new_w/$old_y);
$thumb_h=$new_h;
}
if ($old_x == $old_y)
{
$thumb_w=$new_w;
$thumb_h=$new_h;
}
$dst_img=ImageCreateTrueColor($thumb_w,$thumb_h);
imagecopyresampled($dst_img,$src_img,0,0,0,0,$thum b_w,$thumb_h,$old_x,$old_y);
if (preg_match("/png/",$system[1]))
{
imagepng($dst_img,$filename);
}
else
{
imagejpeg($dst_img,$filename);
}
imagedestroy($dst_img);
if(!imagedestroy($src_img))
{
// delete created files
$return = @unlink($filename);
$return2 = @unlink($name);
// Return FALSE if not found
var_dump($return);
var_dump($return2);
?><script>alert("Woops! Please try a different photo, or file perms for uploads,small_thumbs,thumbs dir, set to 0777");window.location = "index.php";</script><?
}
}
Gracias