Aaron,

It's not something you just upload to your web files.

Memcached (the daemon) has to be built from source and run from the command
line like so

sudo /usr/bin/memcached -u nobody -m 64 -l 127.0.0.1 -p 11211

You then have to compile and install the extension for PHP.

Read more here:
http://setupguides.blogspot.com/2011/10/install-memcached-with-php-on-ubuntu.html

or better yet, ask your ISP for help.




On Mon, Sep 24, 2012 at 3:36 PM, AaronB <[email protected]> wrote:

> I installed memcached-1.4.15 from http://memcached.org and uploaded it to
> public_html folder. I then added the following code to config.php
>
> // ****** DATASTORE CACHE CONFIGURATION *****
> // Here you can configure different methods for caching datastore items.
> // vB_Datastore_Filecache - for using a cache file
> // $config['Datastore']['class'] = 'vB_Datastore_Filecache';
> // vB_Datastore_Memcached - for using a Memcache server
> // It is also necessary to specify the hostname or IP address and the port
> the server is listening on
> // $config['Datastore']['class'] = 'vB_Datastore_Memcached';
> // $config['Misc']['memcacheserver'] = '127.0.0.1';
> // $config['Misc']['memcacheport'] = '11211';
>
> Did I do this right or am I missing something?
>

Reply via email to