Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In your HostBill's includes/config.php file add following lines to bottom of file contents:

Code Block
languagephp
//...

$config['HBCache.Driver']='memcached';  // we're letting HostBill know we'll use memchached ...

$config['HBCache.Memcached.host']='127.0.0.1'; // ... running on 127.0.0.1 ...

$config['HBCache.Memcached.port']=11211; // ... on port 11211

// or you can use DSN notation instead of above:
$config['HBCache.Memcached.DSN']='memcached://my.server.com:11211';  //socket, username:password, weight etc. is available using DSN