I read most of this thread and and came across similar issues as others... I figured I would post my fixes for what I encountered when using zenphoto 1.1.4:
The previous work arounds were to provide a new URL for the getExif() in thinkdreams-functions.php... basically the work around is to use ".." or "./.." or what ever you need to do to get it to work.
For me this was a bigger problem because I run a local instance for tweaking and of course my production instance up on the my host... well problem is the mod url doesn't work the same between two hosts. The solution I found that works for both environments is to update getExif() in the following way:
`
function getExif() {
$info = array();
global $_zp_current_image;
$url = $_zp_current_image->localpath;
$er = new phpExifRW($url);
[...]
}
`
2) refletion.js doesn't work in IE -
If you try to click on an image after reflection has done its magic, the link appears to be dead. I just downloaded latest version of reflection.js and dropped that in the scripts directory.
My man !
No really, thanks a lot. I suspected the problem came from the path but did really not feel like spending the night reading the rest of the code...
Now who wants to code an automatic flv converter...
I in the end had to look a little bit into it anyway since with EXIF functions activated in thinkdream, video could not lunch due to script size limitations. I noticed the new EXIF functions but won't rewrite the theme...
I solved the problem in a very ugly way: prevented the call to getExif() in image.php in the case of a video.
Keep up the good work !
I seem to have a problem with the exif-function.
I tried all of the possible solutions, but I just can't get it to work.
Zenphoto is installed on a subdomain and in a subfolder.
Something like this: http://subdomain.domain.com/zenphoto/
which is the same as http://www.domain.be/subdomain/zenphoto/
What do I need to change to get it working WITH the exif-data.
For now I commented the exif out, but I'd love to see it working!
Thanks in advance!
ThDC