• I use the All-in-One Event Calendar in my wordpress installation. Adding a new Event and insert a single picture with NextGen Gallery. Now i open the calendar page and switch from the month-view to the agenda-view of the calendar and this forces a Fatal error like that (get the error message from firebug):

    Fatal error: Class 'nggMeta' not found in /path/to/wordpress/wp-content/plugins/nextgen-gallery/nggfunctions.php on line 839

    What does it mean?
    Is their any issue/bug known like that?

    http://wordpress.org/extend/plugins/nextgen-gallery/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter DeathAngelDaemon

    (@deathangeldaemon)

    Nobody any idea?
    I always posted that problem to the support forum from the “All-in-One Event Calendar” Team. But no answer, too…
    Please help or write if more information are needed!

    It’s a bug in the code.

    How to fix:

    1. Open file nggfunctions.php
    2. Find function “nggSinglePicture”
    3. Add the row:
    require_once( dirname (__FILE__) . ‘/lib/meta.php’ );
    after the global $post;
    4. Save the file.

    5. Ask nextgen to make this fix permanent, because otherwise it will be removed with the next plugin update you will get from them.

    It a bug, because the previous function in the nggfunctions.php nggCreateImageBrowser has this row, but the nggSinglePicture function is missing it.

    To nextgen/photocrati

    This problem happens when any other plugin calls something like $postText= apply_filters(‘the_content’, $post->post_content); for it’s own needs.

    Your plugin fails to load meta.php in that case.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: NextGEN Gallery] Fatal error, insert picture in event’ is closed to new replies.