Weird… People are actually testing this thing…
I’ve tested the inline display, and it works just fine for me. I should note that the HTML comment < !--exhibit-- >
should not have spaces in it. (This forum will not display the code without the spaces.) See it working here. If you view the source of the page before you click a thumbnail, you’ll see the exhibit comment in the place where the full-sized image will appear.
The exhibit_full.php page has some extra stuff in it that you probably don’t need which is causing your errors. I put it there to illustrate some of the additional possibilities when using an external page to view the images. Your server does not have the EXIF extension installed for PHP. This extension extracts EXIF data that is embedded in JPEGs by digital cameras about things like date, shutter speed, light balance, and junk like that there.
You can fix the exhibit_full.php page by removing the line exhibit_exif_info('IFD0.Model')
from it. This would normally display the camera model used to take the picture. Passing no parameter to this function would display a list of all available entries for that photo. I will have to add a check for this extension in the next release of Exhibit so that it doesn’t create errors if you don’t have the extension.
If you want a clean popup page that resizes to nothing but the full image size, then try this one, which I swiped from a place that I can unfortunately no longer remember:
https://www.asymptomatic.net/popup.htm
Note that clicking the above page link will probably resize your browser really small, since there is no picture specified. Put this file in your WP root, and set your popup page in the exhibit configuration using this code:
$popup_page = '/popup.htm?';
If I could see an example of the popups not working from the regular permalinks, that would be helpful. Or, if that’s not possible, can you transcribe both of the URLs that your page presents? I’ll need both the permalink and the view more link for the same post to compare them.
Also, I found the MySQL bug that appears in the thumbnail area of the editing interface. It only occurs when you use the Advanced editor by default, which I wasn’t doing. It’ll be fixed in the next release.
Thanks a lot for helping to test. I think I need to improve the documentation a bit to clarify the use of some of these things, especially the inline full-size images. I also have a list of cool new ideas to implement. Hopefully, I’ll get to them this week.