I've installed versions .82 and .9 and everything works fine, except for the links off of the thumbnail images. When you click on a thumbnail on the first page of an album, the page just refreshes, or if you're on a another page you're taken back to the first page in the album. You never get directed to the page with the full size image and comments. Any suggestions?
Thanks!
Comments
echo (in_context(ZP_IMAGE));
When I'm on the main page or an album page this always returns '0', which I think is appropriate. However, when I click on an image in an album this also returns '0', which I think is the problem becuase it will never execute the include("$themepath/$theme/image.php"); statement.
In short, I think the context is not getting set properly at some point, but I haven't figure out where or why. Any suggestions or thoughts would be appreciated.
Thanks,
- MW
The numbers at the top of each page reflect my addition of:
echo (in_context(ZP_IMAGE));
echo (in_context(ZP_ALBUM));
echo (in_context(ZP_INDEX));
to the main index.php file.
Thanks,
- MW
The explanation would be that the line was left out of the .htaccess... are you sure you didn't change anything there? Try adding a newline at the end?
Could also be that the var is being overridden somewhere else... not sure. Check the query string.
Notice how http://thespokenwheel.com/zp9/index.php?album=pics1&image=Jewelry_0384.JPG still works, so it's just a problem with the translation of the path into the right query string.
Thanks,
- MW