Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author dtsolis

    (@dtsolis)

    Hi,

    Thank you for using this plugin! I haven’t notice anything like that but i guess i could try to refactor plugin’s code. In the meanwhile you could run some tests using this plugin https://wordpress.org/plugins/p3-profiler/ in order to get a better view on your website’s performance.

    Thread Starter horatiub

    (@horatiub)

    Hi.

    It is def very slow. We tried it on two different sites. The site is not slow since we use dedicated servers. Basically every time we enabled the plugin, the WordPress Admin area takes about 5-6 seconds to move from one screen to another. So something is being reloaded every time you navigate from New Post to Settings for example.

    Plugin Author dtsolis

    (@dtsolis)

    Ok, i’ll look into this and try to fix it. Thank you for your support!

    I can confirm that the plug in slows down the entire WordPress admin to a point that is pretty much unusable. If you move form one screen to another in 4 seconds you can call you a lucky guy. Here, with two dedicated servers it takes 30 seconds just to move from draft to all articles; calling for an image and putting it in a post, it takes one minute…

    We had great hopes on this plug in, but with this bug we had to dismiss it.

    To add some information: The wordpress website we are running has 80.000 articles and 300.000 images. We have cross-tested several plugins but this one is the one who slows down the entire admin process.
    We think that there is some check process that makes the speed going down. The p3-profiles shows clearly the degradation of the operations with the plugin activated. Maybe it’s difficult to replicate it in a small wordpress test website…
    Does the plugin access an external server even if there is nothing to publish? It seems like any operation we do on the admin side has to wait from some external checking….

    We have the same problem here, is there an update to this. I really hope it can be fixed very soon.

    Hello,

    After hours of debbugging my WordPress website to find from where the lags where coming, I find that it was coming from your plugin.

    I tried to debug it, and I find this :

    $savedPostTypes = get_option('simpar_metabox_pt');
    if ( count( $savedPostTypes ) ) {
        $savedPostTypes[] = 'post';
        addOrUpdateOption('simpar_metabox_pt', $savedPostTypes);
        $savedPostTypes = get_option('simpar_metabox_pt');
    }

    You should read this, and I’m pretty sure whats wrong will be obvious.
    Try to display the $savedPostTypes var, you’ll see 🙂

    This var weight 13Mb in my database !

    Thank you ThibaultV !
    I faced this problem, too.

    I changed simpleParsePS.php like following diff.

    $ diff simpleParsePS.php*
    65c65
    <               if (! in_array('post', $savedPostTypes)) {
    ---
    >         if ( count( $savedPostTypes ) ) {
    $

    Hi all,
    I have this problem on my wp site.
    Can you help me exactly what can change on this plugin to make me admin panel faster because now is terrible slow…

    Plugin Author dtsolis

    (@dtsolis)

    Hi there,

    I’m sorry for my absence and thank you guys for your contribution on this bug!
    I published a new version that fixes that.

    Thank you all for your support!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Extremely slow Admin area when enabled’ is closed to new replies.