Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author mvied

    (@mvied)

    Hey xof711,

    Does the problem occur when you disable External HTTPS Elements?

    Thanks,
    Mike

    Thread Starter xof711

    (@xof711)

    Hey Mike,

    Yes, I tried different combo still generates an error. Even with everything unchecked…

    Chris

    Plugin Author mvied

    (@mvied)

    Hey xof11,

    I’m sure you’ve Google’d the error and found that the problem is most likely something goofy going on with Chrome. Try dumping cookies, reinstalling, etc.

    If that doesn’t fix it or you’re not using Chrome, the best I can do is take a look at it and see if I can reproduce it and/or diagnose it. If you don’t want to post the link publicly, you can send it in an email to mike[at]mvied[dot]com.

    Thread Starter xof711

    (@xof711)

    I did but I tried on Safari and Firefox 6 (wants to download the edit.php)… I’ll email you a login/pwd to reproduce the error.
    Thanks!!!

    Plugin Author mvied

    (@mvied)

    Hey xof711,

    The problem seems to be occurring from WordPress HTTPS’ output buffering interfering with Web Ninja Google Analytics.

    I don’t think there’s much I can do with WordPress HTTPS since it heavily relies on output buffering. The problem seems to stem from graphs being generated on the post/page admin areas by Web Ninja Google Analytics.

    Basically, output buffering captures all the PHP output and buffers it until the page is done loading. Since the analytics plugin adds so much load time to the page, the page times out. I fixed the plugin by adding ob_flush() to the methods that generate the graphs. For example:

    function gad_pages_custom_column($column_name, $page_id)
    {
      gad_posts_pages_custom_column($column_name, $page_id, 'page');
      @ob_flush();
    }

    You may want to let the developer know so that they can put it in the next version of their plugin. If they have any questions you can point them toward this thread.

    Thanks,
    Mike

    Thread Starter xof711

    (@xof711)

    Thanks Mike!
    I’ve disabled that plugin as HTTPS is def. more valuable to me!

    Plugin Author mvied

    (@mvied)

    Hey xof711,

    You can leave the plugin enabled if you’d like since I fixed it. I’d still let the developer know so that they’re aware that their plugin will cause those pages break if output buffering is being used and the graphs take too long to load. Really, the graphs should be loaded with AJAX after the page is done loading since they add so much load time to the page.

    Thanks,
    Mike

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[Plugin: WordPress HTTPS (SSL)] Error 324’ is closed to new replies.