Status
Not open for further replies.
I have multiple folders throughout my directory related to vboptimise.

thebot.net/vboptimise
thebot.net/dbtech/vboptimise
thebot.net/dbtech/vboptimise_pro

I have the pro version. I'm wondering which files I can uninstall and which files I'm supposed to configure.

memcache is ready to go on my server and I know that I need these settings I am just not sure where to place them with all the vboptimise folders going on.

$memcachedServer = 'localhost'; //server ip for memcached
$memcachedPort = '11211'; //port for memcached

Thanks for the help :)
 
thebot.net/vboptimise
You can get rid of this folder, it's defunct.

memcache is ready to go on my server and I know that I need these settings I am just not sure where to place them with all the vboptimise folders going on.
Configure this section of /includes/config.php:
PHP:
	// ****** DATASTORE CACHE CONFIGURATION *****
	// Here you can configure different methods for caching datastore items.
	// vB_Datastore_Filecache  - to use includes/datastore/datastore_cache.php
	// vB_Datastore_APC - to use APC
	// vB_Datastore_XCache - to use XCache
	// vB_Datastore_Memcached - to use a Memcache server, more configuration below
$config['Datastore']['class'] = 'vB_Datastore_APC';

	// ******** DATASTORE PREFIX ******
	// If you are using a PHP Caching system (APC, XCache, eAccelerator) with more
	// than one set of forums installed on your host, you *may* need to use a prefix
	// so that they do not try to use the same variable within the cache.
	// This works in a similar manner to the database table prefix.
// $config['Datastore']['prefix'] = '';

	// 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';
$i = 0;
// First Server
$i++;
$config['Misc']['memcacheserver'][$i]		= '127.0.0.1';
$config['Misc']['memcacheport'][$i]			= 11211;
$config['Misc']['memcachepersistent'][$i]	= true;
$config['Misc']['memcacheweight'][$i]		= 1;
$config['Misc']['memcachetimeout'][$i]		= 1;
$config['Misc']['memcacheretry_interval'][$i] = 15;
*/

Uncomment the memcache code (remove /* and */ and save config.php on your server.
 
Status
Not open for further replies.

Similar threads

Legacy vB Optimise

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
1,977
Customer rating
0.00 star(s) 0 ratings
Back
Top