Fatal Gallery2 Error: Cannot activate the Gallery2 Embedded functions.
For WordPress users, Validate WPG2 in the Options Admin panel.

For other platforms, please verify your Gallery2 path in config.php.'); print '' . "\n\n"; print ''; die; } /** * Initialize the emedded functions of Gallery2 * * Exit on Fatal Error * * @param array $option The GalleryEmbed options array * @param boolean $embedded_mode Whether to perform embedded GalleryEmbed init, or standalone init. */ function g2ic_init($option, $embedded_mode) { // Initialise GalleryAPI if ($embedded_mode){ $error = GalleryEmbed::init( array( 'g2Uri' => $option['g2Uri'], 'embedUri' => $option['embedUri'], 'fullInit' => true) ); } else{ $error = GalleryEmbed::init( array( 'g2Uri' => $option['g2Uri'], 'embedUri' => $option['g2Uri'], 'fullInit' => true) ); } if ($error) { print g2ic_make_html_header(); print T_('

Fatal Gallery2 error:


Here\'s the error from G2:') . ' ' . $error->getAsHtml() . "\n"; print "\n\n"; print ""; die; } return; } ?>