[Can someone make this sticky?]
If you have a problem with Gallery, and you're running a version integrated with Xoops, you'll need to do something first.
In Xoops 2.x, go to include/common.php, and search for "debug". Then add the // as shown here:
// if ($xoopsConfig['debug_mode'] == 1) {
error_reporting(E_ALL);
// }
or (more complicated but better) change it to
// if ($xoopsConfig['debug_mode'] == 1) {
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR |
E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING |
E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE );
// }
Then re-do whatever it is that's the problem, and hopefully you'll get some error messages that will help gallery developers/users identify your problem.
This is particularly vital if you are getting "blank page" errors, which don't occur in plain gallery.
If anyone knows how to do the equivalent in earlier versions of xoop, please reply to this.