class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
The file gets uploaded to the correct directory, but its not getting resized.
Here's my log:
system information
- GD version : 2.0.28
- supported image types : png jpg gif bmp
- open_basedir : no restriction
- language : en_GB
source is an uploaded file
- upload OK
- file name OK
- source variables
file_src_name : SIFE Foto.jpg
file_src_name_body : SIFE Foto
file_src_name_ext : jpg
file_src_pathname : D:\Program Files\XAMPP\xampp\tmp\php273.tmp
file_src_mime : application/octet-stream <--- Shouldnt this be image/jpg or something?
file_src_size : 1002721 (max= 16777216)
file_src_error : 0
process file to ../fotos/2008\
- file size OK
- file mime OK : application/octet-stream <--- Shouldnt this be image/jpg or something?
- file name body add after : 1201707953
- file name safe format
- destination variables
file_dst_path : ../fotos/2008\
file_dst_name_body : SIFE_Foto1201707953
file_dst_name_ext : jpg
- no image operation, keep extension
- checking for auto_rename
- destination file details
file_dst_name : SIFE_Foto1201707953.jpg
file_dst_pathname : ../fotos/2008\SIFE_Foto1201707953.jpg
- SIFE_Foto1201707953.jpg doesn't exist already
- no image processing wanted <--- Why? I do want this :)
- process OK
process file to ../fotos/2008\
- file size OK
- file mime OK : application/octet-stream
- file name body add : tn_
- file name body add after : 1201707953
- file name safe format
- destination variables
file_dst_path : ../fotos/2008\
file_dst_name_body : tn_SIFE_Foto1201707953
file_dst_name_ext : jpg
- no image operation, keep extension
- checking for auto_rename
- destination file details
file_dst_name : tn_SIFE_Foto1201707953.jpg
file_dst_pathname : ../fotos/2008\tn_SIFE_Foto1201707953.jpg
- tn_SIFE_Foto1201707953.jpg doesn't exist already
- no image processing wanted
- process OK
cleanup
- delete temp file D:\Program Files\XAMPP\xampp\tmp\php273.tmp
Ever since i'm using v25, because v24 does not work with Flash Uploading (mime-issue), the images i upload arent resizing: here's my code:
The file gets uploaded to the correct directory, but its not getting resized.
Here's my log:
It says: no image processing wanted. Why?