For those of you who use GDPics Gallery and are getting a fatal error when breadcrumbs are set to "on," I found the solution.
The error message looks something like this (pardon me if it's not exact, I'm trying to recreate it from my admittedly bad memory

): Fatal error: Using $this when not in object context on line 178 of view.php.
You need to change the code on line 178 from this (or should I say, "$this"?):
$temp = str_replace(
$this->string_search,'',$split[$i]);
to this:
$temp = str_replace(
$string_search,'',$split[$i]);
I'm not a php coder by any stretch of the imagination but I am familiar with html and css, plus I'm a good proofreader. I Googled the problem and found that it was caused by the "$this" command, which has been deprecated in php 5.x. Here is a link to the site where I found the answer:
http://www.mightyseek.com/forum/showthread.php?t=851.
Now, if some kind soul would help me with the problem I'm having, I'd appreciate it.
The problem is, once I've created an album and added captions to the initial images on the page, I cannot add a caption to any new images I add later. This is frustrating me, I've been trying to figure out the problem for about two weeks now and no luck.
The system does not give me an error message, even when I set it to "E_ALL". What happens is I see the thumbnail in the admin, and a text box to write in a caption. I write the caption, click save, and when I visit the page with the image on, there is no caption. I go back to admin and the text box is empty (yet the text boxes for the initial images still have their captions in place).
One of the problem pages on my website is
http://www.coloring.us.com/pages/printable-coloring-pages/animals.php?album=birds/ (ironically, you'll see the breadcrumbs working fine on that page, though).
Please help!