hello already installed exifer1_5 but still get the "Date Taken" being the date the file was modified (checked the file exif of a picture and it has different date).
fixed... line 71 in plog-admin-functions.php $exif["date_taken"] = (isset($exif_raw["IFD0"]["DateTime"])) ? trim($exif_raw["IFD0"]["DateTime"]) : '';
change to $exif["date_taken"] = (isset($exif_raw["SubIFD"]["DateTimeOriginal"])) ? trim($exif_raw["SubIFD"]["DateTimeOriginal"]) : '';
BUT this works only for pictures uploaded after the code change... QUESTION 2 SO is there a way to rebuild the mysql (as all the exif data is stored there after image uploading) entries for exif? coz re-adding all the pictures will be crazy for me