PDA

View Full Version : EXIF Missing - Fresh 1.6 Install


travelvice
01-06-2008, 11:40 PM
Howdy,

I'm uploading photos, but none of the EXIF information is being picked up by PP.

I've tried disabling the plugin and re-enabling, but same result. Fresh install.

The photos I'm trying now are right from the camera -- no resize

(URL REMOVED)

It would seem that I can hit the "REMOVE EXIF" button and then the UPDATE, and it displays a value > 0... so it knows the data is there? But it's just not applying it, even though the radio button on the NEW IMAGE menu is checked..?

Thoughts?

jaywilliams
01-07-2008, 12:48 AM
I'm seeing EXIF data....

http://idisk.d3done.com/idisk/Test_Car_Wash_-_taken_Dec_24_2007-20080106-194849.jpg

travelvice
01-07-2008, 12:58 AM
Sorry to not specify --

It would seem the capture date is not being applied.

Images are sorted and displayed as uploaded -- even though "Use exif date" has been checked

austriaka
01-07-2008, 06:06 AM
a simple forum search for "exif date" brings a lot of threads where this is discussed.
Find the solution here in this thread:
http://www.pixelpost.org/forum/showthread.php?p=46099#post46099

travelvice
01-07-2008, 06:16 AM
Crazy -- thought I had gone through every relevant post on the subject. This was the solution, as you pointed out:

Go to line 294 in the new_image.php located in the admin and replace:

$exif_result=unserialize_exif($exif_info_db);
with:

$exif_info = stripslashes($exif_info_db);
$exif_result=unserialize_exif($exif_info);


Thank you!