• This plugin has just taken down a website I administer – the error is as follows:

    [12-Jan-2017 05:09:28 UTC] PHP Fatal error: require_once(): Failed opening required ” (include_path=’.:/opt/alt/php54/usr/share/pear:/opt/alt/php54/usr/share/php’) in /home/tropicec/public_html/wp-content/plugins/yith-essential-kit-for-woocommerce-1/yith-jetpack.php on line 206
    [12-Jan-2017 05:10:43 UTC] PHP Warning: array_shift() expects parameter 1 to be array, null given in /home/tropicec/public_html/wp-content/plugins/yith-essential-kit-for-woocommerce-1/yith-jetpack.php on line 205
    [12-Jan-2017 05:10:43 UTC] PHP Warning: require_once(/home/tropicec/public_html): failed to open stream: No such file or directory in /home/tropicec/public_html/wp-content/plugins/yith-essential-kit-for-woocommerce-1/yith-jetpack.php on line 206
    [12-Jan-2017 05:10:43 UTC] PHP Fatal error: require_once(): Failed opening required ” (include_path=’.:/opt/alt/php54/usr/share/pear:/opt/alt/php54/usr/share/php’) in /home/tropicec/public_html/wp-content/plugins/yith-essential-kit-for-woocommerce-1/yith-jetpack.php on line 206

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi drawcard,

    we are sorry for the incovenience, before we send an update follow this simple step to solve:

    find the code below in the “wp-content/plugins/yith-essential-kit-for-woocommerce-1/yith-jetpack.php” file :

    public function plugin_fw_loader() {
                if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
                    global $plugin_fw_data;
                    $plugin_fw_file = array_shift( $plugin_fw_data );
                    require_once( $plugin_fw_file );
                }
            }

    and change it in this way :

    public function plugin_fw_loader() {
                if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
                    global $plugin_fw_data;
                    if ( ! empty( $plugin_fw_data ) ) {
                        $plugin_fw_file = array_shift( $plugin_fw_data );
                        require_once( $plugin_fw_file );
                    }
                }
            }

    YIThemes

Viewing 1 replies (of 1 total)
  • The topic ‘Server 500 error’ is closed to new replies.