When I am looking to this theme, I see a little square behind your text in the EXIF data (you know, the one you sometimes get when a character isn't available). After model and date. It does the same thing if I install the theme on my gallery. What is that? How can I get rid of it?
I believe that is some extraneous data from the EXIF call, but I was never sure. Anybody care to take a stab at what it might be?
I've been living with it, but it'd be nice to have someone tell me what might be causing it. I thought it had something to do with a newline character, but I could never fix it.
Geert-
I found the solution. Use the trim function in PHP. Example:
//Camera Model
if ($er->ImageInfo[TAG_MAKE]){
$info['model'] = trim($er->ImageInfo[TAG_MODEL]);
}
A good example for using the separate libraries rather than the built in functions is not every person has EXIF capabilities built into their PHP installations. But either way that is more comfortable, it's just making the theme a bit more flexible.
Thinkdreams.
Dingsbums-
I thought about keeping it in, but it was kind of redundant since the album dates really aren't working yet, and the main index page from the stopdesign theme did not much else but show the first 6 galleries. I suppose for anyone who wanted that function they could add it back in. The theme automatically shows only the first 6 albums anyway, and then a nice quick access navigation numbered list to get to the rest.
I didn't want to change the zenphoto architecture too much. That way when you upgrade, you don't have so much work when you replace files in the directory.
Thinkdreams.
Referencing this topic here:
http://www.zenphoto.org/support/topic.php?id=599#post-3278
It was recommended to us (Skwid and I) to make that change per Trisweb, the developer, due to a mod_rewrite bug. That's why the album page broke when you made the change. The slideshow is an integral part of the album.php.
I didn't mess around too much with new pages in Zenphoto. We did do a separate credit.php page, but that use just a call to ?p=credits (as seen in the theme's footer). You could theoretically do that in your theme, and make custom pages to do what you want.
The archive page incidentally is all that is. The link on the stopdesign theme just links to href="index.php?p=archive", which is the archive.php file.
Does that help?
Thinkdreams
I get a series of erros like these when I click on an individual photo (ZP 1.03 with thinkdreams 1.0).
Note that the directory fix suggested in the posts above did not work (the path is still correct), nor commenting out the EXIF stuff. It also takes a long time before the errors show up, it is as if the browser hangs - the CPU time also shoots up to 100% (this is on a local PC).
ZP is installed in the 1photo directory under the root of my WIN/PC installation. All other themes work fine.
Warning: fopen(../zenphoto/albums/France/Aigueze 1689.jpg): failed to open stream: No such file or directory in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 464
Warning: filesize(): Stat failed for ../1photo/zenphoto/albums/France/Aigueze 1689.jpg (errno=2 - No such file or directory) in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 467
Warning: filectime(): Stat failed for ../zenphoto/albums/France/Aigueze 1689.jpg (errno=2 - No such file or directory) in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 468
Warning: fgetc(): supplied argument is not a valid stream resource in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 471
Warning: feof(): supplied argument is not a valid stream resource in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 479
Warning: fread(): supplied argument is not a valid stream resource in c:\easyphp\www\1photo\zenphoto\themes\thinkdreams\exif.inc.php on line 517
Hi
Thank you very much for this great theme.
I found bugs but I don't know how to correct them.
The thumbnails are not displaying good with Opera.
There is a problem with the hover fonction with Konqueror: when the mouse is on a thumb, this one disapear. If I remove those lines:
` filter: alpha(opacity=100);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-opacity: 1.00; opacity:1;`
from the photo.css file, it's ok but without this effect.
thank you
Redrag-
If I'm not mistaken, neither of those browsers support the alpha transparency functionality (at least not with the way the css is currently coded)
Anybody else care to comment?
The opacity is not an essential function, Skwid and I just put it in there for look and feel.
So, i love your theme, however i'm having some issues. My site is here; http://www.osterbrink.org/zenphoto/
Issue 1. Galleries link does't work.
Issue 2. if you look at my site, there is an issue when a album name becomes too long. I figure this is either a margain or a height issue in the css. I tried chanign a few i thought would fix it to no avail. Ideas? (besides shrinking the size of my title)
Thoughts?
I ended up combining a few things I learned over the past few months, and built my current theme, see at:
http://www.thinkdreams.com/zenphoto
It matches my blog:
http://www.thinkdreams.com/blog
I borrowed a lot from Chili's JoshuaInk port, and then tweaked the look and feel a bit.
Guys, first of all - thank you for an amazing Theme. I am having a few issues with it.
The URL track shows as follows: www.[domainname].com/gallery/[album name]/slideshow
*URL info shown without parenthesis
Your help resolving this would be great.
Manamedia-
Did you make modifications to your htaccess file to support the slideshow functionality? You've got to add:
RewriteRule ^([^/]+)/slideshow/?$ index.php?album=$1&view=Slideshow [L,QSA]
To your htaccess. You also have to make some modifications to your template-functions.php to correct a bug in the mod_rewrite functionality per Trisweb:
if (isset($zpitems[1]) && $zpitems[1] != 'slideshow')
$req_image = $zpitems[1];
It needs to be added at about line 47 of the code, right below:
if (isset($zpitems[0]) && $zpitems[0] != 'page')
$req_album = $zpitems[0];
As it stands, just installation of the theme, without these modifications, the slideshow won't work properly, as the index.php isn't interpreting the slideshow linkages properly.
I think the original Q/A regarding this issue is somewhere on the forums. Look for "thinkdreams" and you should be able to trawl through my posts to find the original work Skwid and I did with Trisweb's help.
To answer the IE query, well, suffice to say I'm a hardcore firefox user. IE makes me cringe with incompatibility. I copied a lot of the code from the Stopdesign theme, and the Stopdesign theme has issues of its own with IE. So, unfortunately, I never took the time to modify it to work properly in both browsers. I know that's not much help, but Skwid and I didn't think to code in some cross-browser compatibility.