Started getting this error the other day:
Fatal error: Call to undefined function imagecreatefromjpeg() in /home/fifagame/public_html/media/media_functions_builds.php on line 48
Does any kind person have an idea? Have checked CHMOD and all 777.
This is the excerpt of code from the php file:
Code:
switch ($filetype[1])
{
case "png": $oldImage = imagecreatefrompng($target); break;
case "gif": $oldImage = imagecreatefromgif($target); break;
case "jpg":
line 48 default: $oldImage = imagecreatefromjpeg($target); break;
}