Login     Sign up
Error when upload a jpeg file *Solved*
Eliz zeta (@eliz)
Join date: Nov 29th 2010
Community posts: 153
View Profile
Send Message

i get error file type when i ipload jpeg file
i edit

function save_file($file, $allowed_ext = array('jpg','JPG','jpeg','JPEG','png','gif')

but this not works.
where do i have to edit this to add jpeg ?
thanks

172 months ago
Eliz zeta (@eliz)
Join date: Nov 29th 2010
Community posts: 153
View Profile
Send Message

ok, i ve been searching more and i find solution
if you want to add more file type image, insted of editiong :

function save_file($file, $allowed_ext = array('jpg','JPG','jpeg','JPEG','png','gif')

you have to edit
/includes/libs/resizeimage.inc.php

adding for each new type a code like this :

elseif (eregi("jpeg",$image_type)) {
$this->type="jpeg";
}

172 months ago