vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Board Optimization - XCache for vBulletin Caching (https://vborg.vbsupport.ru/showthread.php?t=277804)

thecore762 02-04-2012 11:33 PM

After using this I actually love it.

My forums speed has increased a great deal.
vBOptimise Lite was ok, but this made things that much better minus the vBOptimise pro price tag.

Nominated.

thecore762 02-21-2012 04:14 AM

Question, if I already configured vBulletin to use Xcache through their config do I still have to use this addoN?

Mooff 02-21-2012 07:57 AM

Quote:

Originally Posted by rajubd (Post 2296276)
1+ for APC please

# for APC :)

Zachery 02-22-2012 04:12 AM

Quote:

Originally Posted by thecore762 (Post 2301802)
Question, if I already configured vBulletin to use Xcache through their config do I still have to use this addoN?

That is the datastore, not the cache. Similiar but not the same. So yes.

arxipelagos 02-28-2012 10:57 AM

Can i use it on 4.1.4? I have already installed the xcache on my server.

draver 02-28-2012 11:46 AM

Quote:

Originally Posted by Zachery (Post 2302196)
That is the datastore, not the cache. Similiar but not the same. So yes.

What exactly is the difference?

Zachery 02-29-2012 10:38 PM

Cache is for specific bits of data, like cms articles, widgets, blocks, showgroups.


Datastore is a cache of data like options, usergroup permissions, forum permissions, etc.

alasiri 04-28-2012 07:55 AM

Thanks, I look forward to hearing the results.

IrPr 06-12-2012 12:41 AM

Any chance to add memcache support? Its more faster to me,

betterthanyours 10-16-2012 08:07 PM

When I installed this on 4.2.0 and I pressed "What's New" it was showing blank page for some reason.

betterthanyours 10-17-2012 08:07 AM

Uninstalled. Was also doing this on PM and some other pages.

rossco_2005 05-26-2013 09:17 PM

I uploaded a new version that fixes a bug that was causing CMS and some other pages to load blank, or show errors.
To update, just upload the contents of the UPLOAD folder to your forum root and allow it to overwrite the old file.

bzcomputers 05-27-2013 05:15 AM

Thanks for the update. I tried the older version a while back, but like you mentioned I had some issues with blank pages.

So far so good with this version. Using it on vb 4.2 PL3 with XCache 3.0.1.


Is anyone still using the template caching mentioned from this link?
https://vborg.vbsupport.ru/showthread.php?t=255994
...it seems to have issues

kartheekb 01-30-2014 10:40 AM

does hosting provider must be installed xcache on server to use this?

bzcomputers 01-30-2014 02:25 PM

Quote:

Originally Posted by kartheekb (Post 2477933)
does hosting provider must be installed xcache on server to use this?

Yes. Latest version is 3.1.0. It's an easy install and can be done in just a couple minutes.

http://xcache.lighttpd.net/

DreadsUK 06-14-2014 10:36 AM

I've just installed vBOptimise which i am told works best with this mod.

I've uploaded all the contents into the forum root. Now looking at step 2

2. Open up your /includes/config.php file and add the following:

I went to download the file /includes/config.php and i'm being told its the same file i've just uploaded from vBoptimise. is this correct?

If so, where abouts do i add the code

Code:

/*
 * XCache Config
 */
$config['xcache']['user'] = 'user';
$config['xcache']['pass'] = 'pass';


ozzy47 06-14-2014 11:02 AM

You really need to remove the info from the above post, you gave out all your sites info in the config file.

DreadsUK 06-14-2014 11:16 AM

Quote:

Originally Posted by ozzy47 (Post 2501901)
You really need to remove the info from the above post, you gave out all your sites info in the config file.

im totally new at this and dont really know what i am doing. Im still learning. thanks ozzy

Where do i add the code?

Also, it says to edit it to include my admin xcache username and password. where do i find these or is this where i create them?

bzcomputers 06-14-2014 06:47 PM

Quote:

Originally Posted by DreadsUK (Post 2501903)
im totally new at this and dont really know what i am doing. Im still learning. thanks ozzy

Where do i add the code?

Also, it says to edit it to include my admin xcache username and password. where do i find these or is this where i create them?

xCache can be run With or Without "Password Authentication". Running with password authentication has been known to cause some issues with vBulletin 4 and some mods. I've come across it personally it usually has to due with stale data, that is memory not being cleared when it should.

1) IF you decide to run xCache with "Password Authentication"
You will need to make sure these lines exist in your php.ini file:

Code:

xcache.admin.enable_auth="On"
xcache.admin.user="YOUR USERNAME HERE"
xcache.admin.pass="YOUR PASSWORD HERE (MD5)"

Then you need to add these lines to your config.php file:

Code:

    // ****** XCACHE CONFIGURATION *****
        // Here is XCache login information to use XCache instead of MYSql to cache.
$config['xcache']['user'] = 'YOUR USERNAME HERE';
$config['xcache']['pass'] = 'YOUR PASSWORD HERE (NOT MD5)';

It doesn't really matter where in the config.php file they go, personally I put it right under the "DATASTORE CACHE CONFIGURATION" section (which should also be set to use xCache) that way all the cache settings are right next to each other.
2. IF you decide to run xCache without "Password Authentication"
In php.ini this will be the only setting change:

Code:

xcache.admin.enable_auth="off"
..and in config.php file you will just need to make sure xCache is set in the "DATASTORE CACHE CONFIGURATION" section.

RichieBoy67 06-14-2014 11:25 PM

Quote:

Originally Posted by DreadsUK (Post 2501898)
I've just installed vBOptimise which i am told works best with this mod.

I've uploaded all the contents into the forum root. Now looking at step 2

2. Open up your /includes/config.php file and add the following:

I went to download the file /includes/config.php and i'm being told its the same file i've just uploaded from vBoptimise. is this correct?

If so, where abouts do i add the code

Code:

/*
 * XCache Config
 */
$config['xcache']['user'] = 'user';
$config['xcache']['pass'] = 'pass';


I am not so sure this cache is good for you unless you have decent amount of ram. If you are already having issues using up your ram this will make it worse. Don't get me wrong, this can help immensely but not if you do not have a decent amount of ram.

fxdigi-cash 06-18-2014 03:52 AM

Quote:

Originally Posted by RichieBoy67 (Post 2501995)
I am not so sure this cache is good for you unless you have decent amount of ram. If you are already having issues using up your ram this will make it worse. Don't get me wrong, this can help immensely but not if you do not have a decent amount of ram.

how much of RAM do we we need at least to make things work just fine, if you don't mind me asking??

I used memcache alone before, but I think I want to use Xcache with it to see how good they are.

RichieBoy67 06-18-2014 04:02 AM

Quote:

Originally Posted by fxdigi-cash (Post 2502422)
how much of RAM do we we need at least to make things work just fine, if you don't mind me asking??

I used memcache alone before, but I think I want to use Xcache with it to see how good they are.

I cannot really answer that as there are too many variables. I was specifically talking to Dreads because his issue was that he was maxing out his ram.

iraqiboy90 05-01-2015 03:12 PM

what's the difference between this and the config.php xcache setting?


All times are GMT. The time now is 11:19 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01162 seconds
  • Memory Usage 1,776KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (23)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete