0

有没有办法在没有 memcache 服务的情况下使用 Phpfox?因为我使用的是 hostgator 共享服务器,作为不提供任何 memcache 服务的共享服务器,它仅在专用服务器中可用。

我正在使用 Phpfox1.5 以前托管在亚马逊服务器上,在那里可以使用 mecache 服务,但它对我来说非常昂贵,所以我想将我的网站从亚马逊更改为 hostgator 托管服务。

致命错误:在第 64 行的 /home/latisse/public_html/spicypeeps.com/include/library/phpfox/cache/storage/memcache.class.php 中找不到类“Memcache”

4

1 回答 1

1

当然,只需在其上包含一个带有此类的文件:

<?php
// Dummy Memcache for a development environment where Memcache is not installed. Part of mmvc library, https://github.com/kajala/mmvc
// Dependencies: none

//if ( defined('MEMCACHE_COMPRESSED') )
//  die( "Memcache seems to be already installed, MemcacheDummy.php should never be included in this case\n" );

define( 'MEMCACHE_COMPRESSED', 1234 ); // dummy value

/**
 * Dummy Memcache class for a development environment where Memcache is not installed.
 * Note that this class does not do ANYTHING and it is only a convenience for 
 * the development environment and should never be used in production server.
 */
class Memcache
{
    function __construct()
    {
    }

    function connect( $host, $port )
    {
        assert( is_string($host) );
        assert( is_numeric($port) );
        return true;
    }

    function set( $key, $obj, $compressed=false, $expires=0 )
    {
        assert( is_string($key) );
        assert( $compressed === false || $compressed == MEMCACHE_COMPRESSED );
        assert( is_numeric($expires) );
        return true;
    }

    function get( $key )
    {
        assert( is_string($key) || is_array($key) );
        return false;
    }
}

?>

注意:代码不是我的,它是在 BSD 许可下获得许可的。原作者:链接

于 2013-04-24T12:01:30.093 回答