fatal error website went down

mikep6321 created the topic: fatal error website went down

Hi guys,
I am having a slight problem. My website went down the error says it is a problem with one of my plugins. Do not know if this is actually a problem for you guys but Godaddy suggested I contact you since it occured after adding content into my flash calendar. Can you lead my in the right direction.I cannot get into the site at all.What do you think I did wrong?

my wesite is www.runphoenix.com Thanks for your help in advance.

Mikep

Fatal error: Uncaught exception 'Ai1ec_File_Not_Found' with message 'The specified file 'event.min.js' doesn't exist.' in /home/content/03/8353203/html/runphoenix/wp-content/plugins/all-in-one-event-calendar/app/helper/class-ai1ec-view-helper.php:124 Stack trace: #0 /home/content/03/8353203/html/runphoenix/wp-content/plugins/all-in-one-event-calendar/app/controller/class-ai1ec-events-controller.php(200): Ai1ec_View_Helper->theme_enqueue_script('ai1ec-event', 'event.min.js', Array) #1 [internal function]: Ai1ec_Events_Controller->init('') #2 /home/content/03/8353203/html/runphoenix/wp-includes/plugin.php(406): call_user_func_array(Array, Array) #3 /home/content/03/8353203/html/runphoenix/wp-settings.php(306): do_action('init') #4 /home/content/03/8353203/html/runphoenix/wp-config.php(90): require_once('/home/content/0...') #5 /home/content/03/8353203/html/runphoenix/wp-load.php(29): require_once('/home/content/0...') #6 /home/content/03/8353203/html/runphoenix/wp-login.php(12): require('/home/content/0...') #7 {main} thr in /home/content/03/8353203/html/runphoenix/wp-content/plugins/all-in-one-event-calendar/app/helper/class-ai1ec-view-helper.php on line 124

#5330

Please Log in or Create an account to join the conversation.


mikep6321 replied the topic: Re: fatal error website went down

So I went into my file manager where I found the all in one claendar under the flash plugin folder and I moved the folder to a website folder I have not set up. immediately my website came back up. So here is the long version of the bad actor though I still do not know what I did and why it was creating havoc. Do I need to replace bad boys with the correct files?

Thanks
Mikep
I dould not tell if the attachment attached

so here it is:

<?php
/**
* Plugin Name: All-in-One Event Calendar by Timely
* Plugin URI: time.ly/
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
* Author: Timely
* Author URI: time.ly/
* Version: 1.9
*/
@set_time_limit( 0 );
@ini_set( 'memory_limit', '256M' );
@ini_set( 'max_input_time', '-1' );

// ===============
// = Plugin Name =
// ===============
define( 'AI1EC_PLUGIN_NAME', 'all-in-one-event-calendar' );

// ===================
// = Plugin Basename =
// ===================
define( 'AI1EC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );

// ==================
// = Plugin Version =
// ==================
define( 'AI1EC_VERSION', '1.9' );

// ====================
// = Database Version =
// ====================
define( 'AI1EC_DB_VERSION', 109 );

// ==========================
// = Bundled themes version =
// ==========================
define( 'AI1EC_THEMES_VERSION', 7 );

// ================
// = Cron Version =
// ================
define( 'AI1EC_CRON_VERSION', 103 );
define( 'AI1EC_N_CRON_VERSION', 102 );
define( 'AI1EC_N_CRON_FREQ', 'daily' );
define( 'AI1EC_UPDATES_URL', ' time.ly/plugin/standard/latest ' );

// ===============
// = Plugin Path =
// ===============
define( 'AI1EC_PATH', dirname( __FILE__ ) );

// ===================
// = CSS Folder name =
// ===================
define( 'AI1EC_CSS_FOLDER', 'css' );

// ==================
// = JS Folder name =
// ==================
define( 'AI1EC_JS_FOLDER', 'js' );

// =====================
// = Image folder name =
// =====================
define( 'AI1EC_IMG_FOLDER', 'img' );

// ============
// = Lib Path =
// ============
define( 'AI1EC_LIB_PATH', AI1EC_PATH . '/lib' );

// =================
// = Language Path =
// =================
define( 'AI1EC_LANGUAGE_PATH', AI1EC_PLUGIN_NAME . '/language' );

// ============
// = App Path =
// ============
define( 'AI1EC_APP_PATH', AI1EC_PATH . '/app' );

// ===================
// = Controller Path =
// ===================
define( 'AI1EC_CONTROLLER_PATH', AI1EC_APP_PATH . '/controller' );

// ==============
// = Model Path =
// ==============
define( 'AI1EC_MODEL_PATH', AI1EC_APP_PATH . '/model' );

// =============
// = View Path =
// =============
define( 'AI1EC_VIEW_PATH', AI1EC_APP_PATH . '/view' );

// ====================
// = Admin Theme Path =
// ====================
define( 'AI1EC_ADMIN_THEME_PATH', AI1EC_VIEW_PATH . '/admin' );

// ==================
// = Admin theme CSS path =
// ==================
define( 'AI1EC_ADMIN_THEME_CSS_PATH', AI1EC_ADMIN_THEME_PATH . '/' . AI1EC_CSS_FOLDER );

// =======================
// = Admin theme JS path =
// =======================
define( 'AI1EC_ADMIN_THEME_JS_PATH', AI1EC_ADMIN_THEME_PATH . '/' . AI1EC_JS_FOLDER );

// ========================
// = Admin theme IMG path =
// ========================
define( 'AI1EC_ADMIN_THEME_IMG_PATH', AI1EC_ADMIN_THEME_PATH . '/' . AI1EC_IMG_FOLDER );

// ===============
// = Helper Path =
// ===============
define( 'AI1EC_HELPER_PATH', AI1EC_APP_PATH . '/helper' );

// ==================
// = Exception Path =
// ==================
define( 'AI1EC_EXCEPTION_PATH', AI1EC_APP_PATH . '/exception' );

// ==============
// = Plugin Url =
// ==============
define( 'AI1EC_URL', plugins_url( '', __FILE__ ) );

// ==============
// = Images URL =
// ==============
define( 'AI1EC_IMAGE_URL', AI1EC_URL . '/' . AI1EC_IMG_FOLDER );

// ===========
// = CSS URL =
// ===========
define( 'AI1EC_CSS_URL', AI1EC_URL . '/' . AI1EC_CSS_FOLDER );

// ==========
// = JS URL =
// ==========
define( 'AI1EC_JS_URL', AI1EC_URL . '/' . AI1EC_JS_FOLDER );

// ================
// = Admin JS URL =
// ================
define( 'AI1EC_ADMIN_THEME_JS_URL', AI1EC_URL . '/app/view/admin/' . AI1EC_JS_FOLDER );

// =================
// = Admin CSS URL =
// =================
define( 'AI1EC_ADMIN_THEME_CSS_URL', AI1EC_URL . '/app/view/admin/' . AI1EC_CSS_FOLDER );

// =================
// = Admin IMG URL =
// =================
define( 'AI1EC_ADMIN_THEME_IMG_URL', AI1EC_URL . '/app/view/admin/' . AI1EC_IMG_FOLDER );

// =============
// = POST TYPE =
// =============
define( 'AI1EC_POST_TYPE', 'ai1ec_event' );

// =====================================================
// = UPDATE THEMES PAGE BASE URL (wrap in admin_url()) =
// =====================================================
define( 'AI1EC_UPDATE_THEMES_BASE_URL', 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-update-themes' );

// =====================================================
// = FEED SETTINGS PAGE BASE URL (wrap in admin_url()) =
// =====================================================
define( 'AI1EC_FEED_SETTINGS_BASE_URL', 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-feeds' );

// ================================================
// = SETTINGS PAGE BASE URL (wrap in admin_url()) =
// ================================================
define( 'AI1EC_SETTINGS_BASE_URL', 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-settings' );

// ======================
// = Default Theme Name =
// ======================
define( 'AI1EC_DEFAULT_THEME_NAME', 'vortex' );

// =============================
// = Default Theme folder name =
// =============================
define( 'AI1EC_THEMES_FOLDER', 'themes-ai1ec' );

// ========================
// = AI1EC Theme location =
// ========================
define( 'AI1EC_THEMES_ROOT', WP_CONTENT_DIR . '/' . AI1EC_THEMES_FOLDER );

// ===================
// = AI1EC Theme URL =
// ===================
define( 'AI1EC_THEMES_URL', WP_CONTENT_URL . '/' . AI1EC_THEMES_FOLDER );

// ======================
// = Default theme path =
// ======================
define( 'AI1EC_DEFAULT_THEME_PATH', AI1EC_THEMES_ROOT . '/' . AI1EC_DEFAULT_THEME_NAME );

// =====================
// = Default theme url =
// =====================
define( 'AI1EC_DEFAULT_THEME_URL', AI1EC_THEMES_URL . '/' . AI1EC_DEFAULT_THEME_NAME );

// ======================================================
// = INSTALL THEMES PAGE BASE URL (wrap in admin_url()) =
// ======================================================
define( 'AI1EC_INSTALL_THEMES_BASE_URL', 'themes.php?page=' . AI1EC_PLUGIN_NAME . '-install-themes' );

// ================
// = RSS FEED URL =
// ================
define( 'AI1EC_RSS_FEED', ' time.ly/feed/ ' );

// ======================================
// = FAKE CATEGORY ID FOR CALENDAR PAGE =
// ======================================
define( 'AI1EC_FAKE_CATEGORY_ID', -4113473042 ); // Numeric-only 1337-speak of AI1EC_CALENDAR - ID must be numeric

// ==============
// = SCRIPT URL =
// ==============
$ai1ec_script_url = get_option( 'home' ) . '/?plugin=' . AI1EC_PLUGIN_NAME;
define( 'AI1EC_SCRIPT_URL', $ai1ec_script_url );

// ====================================================
// = Convert http:// to webcal:// in AI1EC_SCRIPT_URL =
// = (webcal:// protocol does not support https://) =
// ====================================================
$tmp = str_replace( 'http://', 'webcal://', AI1EC_SCRIPT_URL );

// ==============
// = EXPORT URL =
// ==============
define( 'AI1EC_EXPORT_URL', $tmp . "&controller=ai1ec_exporter_controller&action=export_events&cb=" . rand() );

// ====================================
// = Include iCal parsers and helpers =
// ====================================
if( version_compare( PHP_VERSION, '5.3.0' ) >= 0 ) {
// Parser that requires PHP v5.3.0 or up
require_once( AI1EC_LIB_PATH . '/iCalcreator-2.14/iCalcreator.class.php' );
} else {
// Parser that works on PHP versions below 5.3.0
require_once( AI1EC_LIB_PATH . '/iCalcreator-2.10/iCalcreator.class.php' );
require_once( AI1EC_LIB_PATH . '/iCalcreator-2.10/iCalUtilityFunctions.class.php' );
}
require_once( AI1EC_LIB_PATH . '/SG_iCal.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Line.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Duration.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Freq.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Recurrence.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Parser.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Query.php' );
require_once( AI1EC_LIB_PATH . '/helpers/SG_iCal_Factory.php' );
// include our global functions
require_once( AI1EC_LIB_PATH . '/global-functions.php' );

// ===============================
// = The autoload function =
// ===============================
function ai1ec_autoload( $class_name )
{
// Convert class name to filename format.
$class_name = strtr( strtolower( $class_name ), '_', '-' );
$paths = array(
AI1EC_CONTROLLER_PATH,
AI1EC_MODEL_PATH,
AI1EC_HELPER_PATH,
AI1EC_EXCEPTION_PATH,
AI1EC_LIB_PATH,
AI1EC_VIEW_PATH,
AI1EC_ADMIN_THEME_PATH,
get_option( 'ai1ec_current_theme_path', AI1EC_DEFAULT_THEME_PATH ),
AI1EC_DEFAULT_THEME_PATH
);

// remove duplicates from the paths array
$paths = array_unique( $paths );

// Search each path for the class.
foreach( $paths as $path ) {
if( file_exists( "$path/class-$class_name.php" ) )
require_once( "$path/class-$class_name.php" );
}
}
spl_autoload_register( 'ai1ec_autoload' );

// ===============================
// = Initialize and setup MODELS =
// ===============================
global $ai1ec_settings;

$ai1ec_settings = Ai1ec_Settings::get_instance();


// ================================
// = Initialize and setup HELPERS =
// ================================
global $ai1ec_view_helper,
$ai1ec_settings_helper,
$ai1ec_calendar_helper,
$ai1ec_app_helper,
$ai1ec_events_helper,
$ai1ec_importer_helper,
$ai1ec_exporter_helper;

$ai1ec_view_helper = Ai1ec_View_Helper::get_instance();
$ai1ec_settings_helper = Ai1ec_Settings_Helper::get_instance();
$ai1ec_calendar_helper = Ai1ec_Calendar_Helper::get_instance();
$ai1ec_app_helper = Ai1ec_App_Helper::get_instance();
$ai1ec_events_helper = Ai1ec_Events_Helper::get_instance();
$ai1ec_importer_helper = Ai1ec_Importer_Helper::get_instance();
$ai1ec_exporter_helper = Ai1ec_Exporter_Helper::get_instance();

// ====================================
// = Initialize and setup CONTROLLERS =
// ====================================
global $ai1ec_app_controller,
$ai1ec_settings_controller,
$ai1ec_events_controller,
$ai1ec_calendar_controller,
$ai1ec_importer_controller,
$ai1ec_exporter_controller,
$ai1ec_themes_controller;

$ai1ec_settings_controller = Ai1ec_Settings_Controller::get_instance();
$ai1ec_events_controller = Ai1ec_Events_Controller::get_instance();
$ai1ec_calendar_controller = Ai1ec_Calendar_Controller::get_instance();
$ai1ec_importer_controller = Ai1ec_Importer_Controller::get_instance();
$ai1ec_exporter_controller = Ai1ec_Exporter_Controller::get_instance();
$ai1ec_themes_controller = Ai1ec_Themes_Controller::get_instance();

// ==========================================================================
// = All app initialization is done in Ai1ec_App_Controller::__construct(). =
// ==========================================================================
$ai1ec_app_controller = Ai1ec_App_Controller::get_instance();

#5334

Please Log in or Create an account to join the conversation.


Support replied the topic: Re: fatal error website went down

Dear Mike,

The plugin is not developed by us as you can see that there is anther author mentioned in the file

Plugin Name: All-in-One Event Calendar by Timely
* Plugin URI: time.ly/

Please contact them on this issue.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#5343

Please Log in or Create an account to join the conversation.


mikep6321 replied the topic: fatal error website went down

I am sorry that I mistook the plugin. I was wondering why when I removed that dormant( did not realize the remants of the first search for calendars was still there) that everything was still on my Spider flash calendar. I am still learning this web stuff. You guys have always been great and I LOVE! the Flash calendar provided by web-dorado.

Thanks for clearifying my mistake it helps me understand what and where of my files.

Mikep

#5347

Please Log in or Create an account to join the conversation.


Support replied the topic: fatal error website went down

Dear Mike,

No problem.


Best regards,
Web-Dorado team


Joomla extensions ,
Wordpress plugins ,
Drupal modules
#5364

Please Log in or Create an account to join the conversation.


Time to create page: 0.242 seconds
Powered by Kunena Forum

WORLD-CLASS SUPPORT

We are here for you every step of the way. Turn to our support with any questions you might have about our products and services. Our experienced customer care team is available to help you as fast as we possibly can.

Contact us