Not signed in (Sign In)
  • Support Us

    You want to support Sadish?
    You can
    Donate Now

  • Buy our Theme : NigaRila

    NigaRila
    NigaRila is a 3-column theme
    with a lot of features, created and supported by Sadish.
    NigaRila - Buy it now !


    Buy our Theme : Pal Nila

    PalNila
    PalNila is a 3-column theme
    with a lot of features, created and supported by Sadish.
    Pal Nila - Buy it now !








Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

Welcome guest!
Want to take part in these discussions? Please Sign In or Apply for membership now!
    • CommentAuthorrtz
    • CommentTimeAug 1st 2008 edited
     permalink
    Hello, and thank you for creating such wonderful themes.

    I think I have found a bug i Misty Look 3.6.1. I found it while searching for, what i believed, was a bug in both wp-cache and wp-super-cache, that stopped the front page of my blog (http://www.malakit.org/wordpress/) from being cached.

    The symptoms are that no meta-file is being generated, effectively making the cached file unusable.

    Eventually I tracked the problem to themes/mistylook/index.php.

    Immediately before the "foreach($posts as $post)"-loop, the theme registers an output buffer, presumably to fix up the presentation for "asides". It's opened with "ob_start('ml_hack');".

    This output buffer is never closed properly, which interferes with wp-cache. When wp-cache tries to close its own buffer, it closes ml_hack instead.

    The fix is simple, just a call to "ob_end_flush();" after the loop.

    I hope this patch survives unmolested by the forum software:


    --- index.php.orig 2008-08-01 12:38:20.000000000 +0200
    +++ index.php 2008-08-01 12:27:12.000000000 +0200
    @@ -40,6 +40,7 @@
    <?php endif; // end if in category ?>
    <?php
    }
    + ob_end_flush();
    }
    else include_once(TEMPLATEPATH.'/notfound.php');
    ?>


    With this fix my blog is cached again, and works like a charm.

    Again, thank you for your great themes.
    •  
      CommentAuthorSadish
    • CommentTimeJan 16th 2009
     permalink
    This will be included in the next version. Thank you.

    Sadish