The MU forums have moved to WordPress.org

memcached mod (2 posts)

  1. donncha
    Key Master
    Posted 17 years ago #

    If you're having problems with Memcached, then open object-cache.php and replace the wp_cache_set() function with the following:
    function wp_cache_set($key, $data, $flag = '', $expire = 0) {
    global $wp_object_cache;

    if ( defined('WP_INSTALLING') == false )
    return $wp_object_cache->set($key, $data, $flag, $expire);
    else
    return true;
    }

    Memcached isn't officially supported by us by this may fix problems when registering new blogs.

  2. amanzi
    Member
    Posted 17 years ago #

    YES! that fixes it for me. Thanks so much for helping out donncha!

    Cheers - Stuart.

About this Topic