error : No JPEG read support

See all posts See thread Reply

Re: error : No JPEG read support new!
by pfpro, 17 years ago
sorry 4 disturbing the peace ;)
found the solution: CHMOD(...)

$new_name_thumb = generate_thumb($file, $ext, $media_dir, $new_name, 105, false, "_thumb", "jpg");

$file_chmod = $media_dir . "/" . $new_name_thumb;
chmod ($file_chmod, 0777);

$new_name_thumb = generate_thumb($file, $ext, $media_dir, $new_name, 593, true, "_thumb_big", "jpg");

$file_chmod = $media_dir . "/" . $new_name_thumb;
chmod ($file_chmod, 0777);
Reply