Hi List, Here is what i did to auto resize images. This will auto resize the uploaded images to the large thumbnail size. Your php my not support this so no responsibility for lost images will be taken....
on line 119 of plog-admin-functions.php add:
unlink($final_fqfn); if (!copy($thumbpath, $final_fqfn)) { echo "failed to copy thumb...n"; }
so lines 116 to 122 should read: $thumbpath = generate_thumb($picture_path, $result['picture_id'],'small'); $thumbpath = generate_thumb($picture_path, $result['picture_id'],'large'); unlink($final_fqfn); if (!copy($thumbpath, $final_fqfn)) { echo "failed to copy thumb...n"; } return $result;