• I have a social network site built and I have been successfully using jet event system for my events for a few months now. However, it just stopped working yesterday. The problem is that when you make a new event6 it will not save and it gives the 001 error. I have read all of the forum posts about the fatal errors and importing the mysql file into phpmyadmin in cpanel from the plug-in folders. I did all of those things and nothing has worked yet. As a matter of fact they got worse, now the plug-in is deactivated and I can not reactivate it . When I try it gives this error ( ./ Fatal error: Call to undefined function update_template() in /home/mysite/public_html/wp-content/plugins/jet-event-system-for-buddypress/jet-event-system.php on line 47 )and the plug-in refuses to activate. I went to that line via ftp and notepadd++ but was unable to find anything out of place wirth the code. I tracked back to the template file in the theme for events ( the ones that buddypress template pack put there. ) I had edited the css a bit but i did not change any php echos or calls or functions and I know I did not break the events loop. What could be wrong? Well, I went to the site and re-downloaded a fresh copy. I deleted all traces of JES from my server and my Db and started over – but still no joy! What can I do – my members site relies heavily on the events system, lol. .

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jamesg371

    (@jamesg371)

    Also, the jet events system admin feature disappeared from wordpress buddypress dashboard menu when things went bad. I can not get it back . And I think it all happened when I upgraded to 3.1.

    Fixed it!

    The developers forgot a line. You will have to edit /wp-content/plugins/jet-event-system-for-buddypress/main/jet-event-start.php.

    Add the following line at the bottom of the ‘require’ strings:
    require ( WP_PLUGIN_DIR . ‘/jet-event-system-for-buddypress/main/jet-events-update.php’ );

    Save the file, and try to activate the plugin. It should work now…

    Thread Starter jamesg371

    (@jamesg371)

    That worked great for reactivating the plugin, thank you for this, However now When trying to save a new event I get this error
    “There was an error saving event details, please try again [001]”
    So am I back to square one or is there a quick fix for this?

    Bump! Same problem here.

    Try changing line 159 in jet-events-operations.php.

    From:

    if ( empty( $event_name ) || empty( $event_desc ) || empty ( $event_placedcity) || empty ( $event_etype) || empty ( $event_edtsd) || empty ( $event_edted))

    To:
    if ( empty( $event_name ) || empty ( $event_edtsd) || empty ($event_edted))

    Try changing line 159 in jet-events-operations.php.

    From:

    if ( empty( $event_name ) || empty( $event_desc ) || empty ( $event_placedcity) || empty ( $event_etype) || empty ( $event_edtsd) || empty ( $event_edted))

    To:
    if ( empty( $event_name ) || empty ( $event_edtsd) || empty ($event_edted))

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Jet Event system giving errors will not reactivate.’ is closed to new replies.