• Resolved albertramsbottom

    (@albertramsbottom)


    I have had this pluging installed for somtime as I think my theme requires it – Flatsome

    I installed WooCommerce Multisite Duplicator from here
    https://codecanyon.net/item/woocommerce-multisite-duplicator/14576575

    which also needs your plugin and all was working fine, until I clicked on a link on the Redux description in the plugins list “Get demo login” or something like that, and boom site just says “Sorry you are not allowed to access this page”

    The only way I an access my sites admin now is if I do not have Redux installed. Do you know of any fixes for this? I know it sounds like the other plugin but just thought you might know something

    Cheers

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Contributor Dōvy Paukstys

    (@dovyp)

    Hey there! That means the above plugin operator mis-coded their plugin and needs to wait until plugins_loaded to run their code.

    You have two options here.

    1. Contact them and have them code the fix
    2. Do the fix yourself, and be on with your business. ??

    So the fix is SUPER simple. Go to the source code in your plugin:

    woocommerce-multisite-duplicator/woocommerce-multisite-duplicator.php

    Take all the code inside here and put it in a function like this:

    
    function load_woocommerce_multisite_duplicator() {
        // Code Goes in Here
    }
    add_action('plugins_loaded', 'load_woocommerce_multisite_duplicator');
    

    That will solve the issue and allow the Redux plugin to load as it should. ??

    Thread Starter albertramsbottom

    (@albertramsbottom)

    Thanks for that but I cannot install your plugin whether I have WooCommerce Multisite Duplicator installed or not. I have completely removed it, but every time I try to install Redux I get the same error

    Cheers

    Like I said before I am not 100% sure that the WooCommerce Multisite Duplicator plugin caused this as everything was working until I clicked on a link in the Redux description in the plugins list. I think it said “get you demo account” or something like that

    Thread Starter albertramsbottom

    (@albertramsbottom)

    I tried what you said, multisite installed but when I installed your plugin it failed again. I just cant now install your plugin and my theme needs it

    Cheers

    Thread Starter albertramsbottom

    (@albertramsbottom)

    also after timeout, it restarts at 03.zip

    Thread Starter albertramsbottom

    (@albertramsbottom)

    It appears to be working, lots of duplicate warnings on DB restore

    And then after clicking the chrome not responding wait button at least 40 times over 30 minutes it gets to

    Website restore times out

    Just sent a debug file info at street decals

    Plugin Contributor Dōvy Paukstys

    (@dovyp)

    Redux is used on millions of sites worldwide. I fear the errors you are facing are due to how a plugin or theme used Redux. We have functions in our code that people “hook” into so it often looks like Redux is the culprit. I fear you will still need to find what plugin or theme is causing the issue, then contact their author.

    We are not “info at street decals”. We are https://redux.io. ??

    Side note, I can prove to you it’s not “Redux” by having you disable all plugins, change to a standard WordPress theme, and then activate Redux. We have an “Activate Demo Mode” that pops up on install, but nothing else.

    Best of luck to you.

    Thread Starter albertramsbottom

    (@albertramsbottom)

    Sorry I have sent a debug file for another plugin, getting mixed up

    OK fair enough, I use the Flatsome theme and it worked fine with your plugin before so I will trace the issue

    Thanks for your help

    Plugin Contributor Dōvy Paukstys

    (@dovyp)

    Hey, no problem. I hope your problem gets solved. We can’t fix code we’ve never seen before. ??

    Good luck to you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Plugin causes an error’ is closed to new replies.