Status
Not open for further replies.

Nirjonadda

Customer
How to setup XCache with DBSEO in config.php ? Currently I am using XCache with vB Optimise, Do need to modify config.php for DBSEO Cache work ?
 
There are no settings required for DBSEO caching to work.

If XCache is installed and working DBSEO will recognize this and just automatically use it.
 
How to setup XCache with DBSEO in config.php ? Currently I am using XCache with vB Optimise, Do need to modify config.php for DBSEO Cache work ?
There are no settings required for DBSEO caching to work.

If XCache is installed and working DBSEO will recognize this and just automatically use it.

I should point out that it does require config.php modification, but only the modification that makes vBulletin itself recognise XCache. If the vB_Datastore_XCache is configured, then DBSEO picks up on it automatically :)
 
Is this edit is the correct in config.php for work with DBSEO? config.php modification does any problem XCache work with vB Optimise ?

Code:
 // ****** 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_XCache';
 // 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;
*/
 
That is the correct configuration, yeah :)

It will not create any problems with vB Optimise, we're running the same setup on this server (XCache in both config.php and vB Optimise) :)
 
Please One More Question, Does I need to modification setup ******** DATASTORE PREFIX ****** ?

This my current configuration. That is the correct configuration ? DBSEO working work this modification setup and vBO?

Code:
	// ****** 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_XCache';

	// ******** [COLOR="#FF0000"]DATASTORE PREFIX[/COLOR] ******
	// 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;
*/
 
You only need the prefix if you are running multiple forums on the same server, as per the instructions on that setting.
 
Status
Not open for further replies.

Similar threads

Legacy DragonByte SEO

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