Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter Fabmaclover

    (@fabmaclover)

    Hi Jeremy,

    Thank you so much for your prompt answer….

    i followed your instructions and it worked.. thank you again ??

    just updated (via wordpress not manually) to Version 2.0.6 and it corrected everything.. everything back to normal!!! so it was a problem with version 2.0.4

    @nicola.peluchetti :

    it looks like you still have 1.10.11 installed and active then, as that call relates to standard

    .. So weird because not only in my plugging page it shows that i have the Version 2.0.4 of All-in-One Event Calendar by Time.ly “ACTIVATE”, but at the same time i am having this new error message since i updated to wp 3.8.3, saying that the plugging is “DEACTIVATED” …..see error message below…

    All In One Event Calendar has been disabled due to an error:
    
    The specified file "agenda-widget" doesn't exist.
    
    exception 'Ai1ec_Exception' with message 'The specified file "agenda-widget" doesn't exist.' in /home/ispir190/public_html/wp-content/plugins/all-in-one-event-calendar/lib/theme/loader.php:282
    Stack trace:
    #0 /home/ispir190/public_html/wp-content/plugins/all-in-one-event-calendar/lib/theme/loader.php(228): Ai1ec_Theme_Loader->_get_legacy_file('agenda-widget', Array, Array)
    #1 /home/ispir190/public_html/wp-content/plugins/all-in-one-event-calendar/app/view/calendar/widget.php(273): Ai1ec_Theme_Loader->get_file('agenda-widget.t...', Array)
    #2 /home/ispir190/public_html/wp-includes/widgets.php(182): Ai1ec_View_Admin_Widget->widget(Array, Array)
    #3 [internal function]: WP_Widget->display_callback(Array, Array)
    #4 /home/ispir190/public_html/wp-includes/widgets.php(895): call_user_func_array(Array, Array)
    #5 /home/ispir190/public_html/wp-content/themes/wp-brilliance102/sidebar.php(14): dynamic_sidebar('Sidebar-Wide - ...')
    #6 /home/ispir190/public_html/wp-includes/template.php(441): require_once('/home/ispir190/...')
    #7 /home/ispir190/public_html/wp-includes/template.php(417): load_template('/home/ispir190/...', true)
    #8 /home/ispir190/public_html/wp-includes/general-template.php(95): locate_template(Array, true)
    #9 /home/ispir190/public_html/wp-content/themes/wp-brilliance102/content-after.php(11): get_sidebar()
    #10 /home/ispir190/public_html/wp-includes/template.php(443): require('/home/ispir190/...')
    #11 /home/ispir190/public_html/wp-includes/template.php(417): load_template('/home/ispir190/...', false)
    #12 /home/ispir190/public_html/wp-includes/general-template.php(132): locate_template(Array, true, false)
    #13 /home/ispir190/public_html/wp-content/themes/wp-brilliance102/archive.php(32): get_template_part('content', 'after')
    #14 /home/ispir190/public_html/wp-includes/template-loader.php(74): include('/home/ispir190/...')
    #15 /home/ispir190/public_html/wp-blog-header.php(16): require_once('/home/ispir190/...')
    #16 /home/ispir190/public_html/index.php(17): require('/home/ispir190/...')
    #17 {main}
    If you corrected the error and wish to try reactivating the plugin, click here.

    The plugging only shows once in my plugging page… not too sure what s going on but all i really want if we cannot find a solution to my problem is to be able to re-install the version 2.0.4 of All-in-One Event Calendar by Time.ly without losing all my calendars data…

    thank you

    @nicola.peluchetti, thank you for your prompt response

    i never revert to 1.10.11 i always followed the instructions to update the plugging to the next version….

    i dont have line 160, as you mentioned it stops at line 83.. very confusing…

    Below a copy of my all-in-one-event-calendar.php

    <?php
    /**
     * Plugin Name: All-in-One Event Calendar by Time.ly
     * Plugin URI: https://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: Time.ly Network Inc.
     * Author URI: https://time.ly/
     * Version: 2.0.4
     * Text Domain: all-in-one-event-calendar
     * Domain Path: /language
     */
    
    $ai1ec_base_dir = dirname( __FILE__ );
    $ai1ec_base_url = plugins_url( '', __FILE__ );
    
    $ai1ec_config_path = $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'app' .
    		DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR;
    
    // Include configuration files and initiate global constants as they are used
    // By the error/exception handler too.
    foreach ( array( 'constants-local.php', 'constants.php' ) as $file ) {
    	if ( is_file( $ai1ec_config_path . $file ) ) {
    		require_once $ai1ec_config_path . $file;
    	}
    }
    
    if ( ! function_exists( 'ai1ec_initiate_constants' ) ) {
    	throw new Ai1ec_Exception(
    			'No constant file was found.'
    	);
    }
    ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url );
    
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'exception' . DIRECTORY_SEPARATOR . 'ai1ec.php';
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'exception' . DIRECTORY_SEPARATOR . 'error.php';
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'exception' . DIRECTORY_SEPARATOR . 'handler.php';
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'http' . DIRECTORY_SEPARATOR . 'response' .
    	DIRECTORY_SEPARATOR . 'helper.php';
    $ai1ec_exception_handler = new Ai1ec_Exception_Handler(
    	'Ai1ec_Exception',
    	'Ai1ec_Error_Exception'
    );
    
    // if the user clicked the link to reactivate the plugin
    if ( isset( $_GET[Ai1ec_Exception_Handler::DB_REACTIVATE_PLUGIN] ) ) {
    	$ai1ec_exception_handler->reactivate_plugin();
    }
    $soft_disable_message = $ai1ec_exception_handler->get_disabled_message();
    if ( false !== $soft_disable_message ) {
    	return $ai1ec_exception_handler->show_notices( $soft_disable_message );
    }
    
    $prev_er_handler = set_error_handler(
    	array( $ai1ec_exception_handler, 'handle_error' )
    );
    $prev_ex_handler = set_exception_handler(
    	array( $ai1ec_exception_handler, 'handle_exception' )
    );
    $ai1ec_exception_handler->set_prev_er_handler( $prev_er_handler );
    $ai1ec_exception_handler->set_prev_ex_handler( $prev_ex_handler );
    
    // Regular startup sequence starts here
    
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'bootstrap' . DIRECTORY_SEPARATOR . 'loader.php';
    
    require $ai1ec_base_dir . DIRECTORY_SEPARATOR . 'lib' .
    	DIRECTORY_SEPARATOR . 'global-functions.php';
    
    $ai1ec_loader = new Ai1ec_Loader( $ai1ec_base_dir );
    $ai1ec_loader->register_map(
    	$ai1ec_base_dir . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR .
    	'composer' . DIRECTORY_SEPARATOR . 'autoload_classmap.php'
    );
    @ini_set( 'unserialize_callback_func', 'spl_autoload_call' );
    spl_autoload_register( array( $ai1ec_loader, 'load' ) );
    
    $ai1ec_front_controller = new Ai1ec_Front_Controller();
    $ai1ec_front_controller->initialize( $ai1ec_loader );

    i am having the same problem…

    Also, i got this error message when i updated to Version 2.0.4:

    Warning: array_search() expects parameter 2 to be array, object given in /home/ispir190/public_html/wp-content/plugins/all-in-one-event-calendar/all-in-one-event-calendar.php on line 160

    Fatal error: Cannot use object of type stdClass as array in /home/ispir190/public_html/wp-content/plugins/all-in-one-event-calendar/all-in-one-event-calendar.php on line 160

    Thread Starter Fabmaclover

    (@fabmaclover)

    Thank you Antoine for your prompt response, it worked right after i updated the v1.2.3.2

    i have been using this plugging for more than a year, i am big fan

    thank you for your hard work and sharing with the community

    Fab

    Just found the problem:

    i am using the plugging WP-Protect which allow you to disable the right click and image dragging. So i just unchecked image dragging and now it works ??

    I am having the same problem, i tried it with several themes such as the “Twenty Eleven 1.2” original theme from WordPress but still the same problem

    Do i need to add anything on the header or footer?

    Beside that, very good plugging ??

    google+ is growing fast and the Google’s +1 interactive button is a most

    please update

    Thread Starter Fabmaclover

    (@fabmaclover)

    here is what i have done:

    go to you the wpaudio pluggin file and edit the “wpaudio.min.js” file.

    In line 31, you should have the code with the download link and name. do a quick search if it is not the right line.

    So what i did is, i erased the html code for the link and changed the name “download” for the the name of my site…

    you can see it in action on my website HERE

    Now if the developer gives us an update of the pluggin it will likely overwrite the wpaudio.min.js file so we may have to do it every update. but so far it is the only fix i have in mind.

    let me know how it works for you

    Fab

    As Moogle, i will rather to have it redirected to the downloading page of the specific download link rather to automatically launch the download… even if i restricted my downloads to members only…

    anyone by chance will know how to make that happen?

    Thread Starter Fabmaclover

    (@fabmaclover)

    updated to version 1.3.03, still does not show the Thumbnails.

    i deactivated the plugging , reinstalled it and still does not work.

    i am the only one to have this problem since they updated the plugging?

    Thread Starter Fabmaclover

    (@fabmaclover)

    Despite the fact that it shows me that it saved my last config, in fact it does not work.

    i put “no” for “auto slide” and it s still doing it. So the problem may come from the saving process

    Thread Starter Fabmaclover

    (@fabmaclover)

    Hi boyevul,

    i just tried negative values but still the same

    Thread Starter Fabmaclover

    (@fabmaclover)

    Thanks Rev for your help.

    i am new in wordpress and i didnt know about the dbx file ??

    1- i tried to change the third number “15px” in the css style file but no change regarding the space between the posts.

    2- i changed the following code from the dbx file

    .dbx-box {
    margin:0 0 8px 0;
    padding:0;
    border:none;
    clear: both;
    }

    the margin was: margin:0 0 15px 0;
    i changed it for 8px value and it changed the space between the widget. i like it this way actually ?? but it does not reduce the space at the bottom inside the widget.

    3- for the calendar, it s a pluggin, sorry i forget to mention that

Viewing 15 replies - 1 through 15 (of 18 total)