vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Board Optimization - [DBTech] vB Optimise 2.0.1 (Lite) (https://vborg.vbsupport.ru/showthread.php?t=199207)

bahisyeri 01-04-2009 05:13 AM

It has some problems with phrase caching, but other options working good but i prefer old hacks from trigunflame, like plugin accelerator :) anyway nice job

lolo? 01-04-2009 06:54 AM

hy Deceptor
i have a small problem with recent thread on vba if i activate the cache doest aplly permission group if i apply on welcome block i'm loggin with an other user :(
Thanks for your work :)

Amenadiel 01-04-2009 12:41 PM

it seems that WOL caching does not work with VB 3.7.3
I get this error on forumhome only:

Code:

Database error in vBulletin 3.7.3:

Invalid SQL:

                SELECT
                        user.username, (user.options & 512) AS invisible, user.usergroupid,
                        session.userid, session.inforum, session.lastactivity, session.useragent,
                        IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
                FROM vb_session AS session
                LEFT JOIN vb_user AS user ON(user.userid = session.userid)
                WHERE session.lastactivity >;


logicuk 01-04-2009 01:51 PM

Quote:

Originally Posted by Amenadiel (Post 1701269)
it seems that WOL caching does not work with VB 3.7.3
I get this error on forumhome only:

Code:

Database error in vBulletin 3.7.3:

Invalid SQL:

                SELECT
                        user.username, (user.options & 512) AS invisible, user.usergroupid,
                        session.userid, session.inforum, session.lastactivity, session.useragent,
                        IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
                FROM vb_session AS session
                LEFT JOIN vb_user AS user ON(user.userid = session.userid)
                WHERE session.lastactivity >;


Works for me fine on 3.7.2

NolF 01-04-2009 02:49 PM

Quote:

Originally Posted by lolo? (Post 1701096)
hy Deceptor
i have a small problem with recent thread on vba if i activate the cache doest aplly permission group if i apply on welcome block i'm loggin with an other user :(
Thanks for your work :)

You are only supposed to activate the cache for modules that are not usergroup dependent because of the problem you just mentioned :)

Quote:

Originally Posted by princeedward (Post 1700721)
...but don't know if it's really working fine or enough... with my debug report below...as i see it...only FileCache Setup only has a good result...

Did you have said softwares installed? In other words did you have Xcache installed when selecting XCache?

thedark1 01-04-2009 09:48 PM

man this is pretty fast, I'm using it with xcache and the forum is loading quick ... will keep testing it out to see if any problems spring up....

thanks

Chadi 01-05-2009 01:27 AM

I need a bit of help here please.

vB Optimise: You have selected a cache method that vB Optimise has detected you cannot use, this may be because the extension required is either not installed or active on your server.

I get that on both eaccelerator, yet it was compiled in Apache (along with Zend Accelerator).

I'm using Cpanel / Centos / PHP 5.

My vbconfig:

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_Filecache';

    // ******** 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;
*/

Eaccelerator settings in php.ini

Code:

[eAccelerator]
extension="eaccelerator.so"
eaccelerator.shm_size="256"
eaccelerator.cache_dir="/tmp/eaccelerator"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"

Thanks.

ezak 01-05-2009 03:26 PM

thanks its nice mod and *installed*

but I want to know something
if I want to change the dir for ./vboptimise to other place out off public_html
for security reason as the folder is 0777

or make an option to set the dir for vboptimise cache as the attachment place

princeedward 01-05-2009 04:59 PM

Quote:

Originally Posted by NolF (Post 1701358)
Did you have said softwares installed? In other words did you have Xcache installed when selecting XCache?

...thanks for the reply bro...yeah it's my mistake...don't have XCache installed to my cpanel...i'm on a shared hosting only...can't have it on there...only if i get VPS...so what you think is the setup i must used on this one for my shared host?...

best regards...

:)

snakes1100 01-05-2009 08:37 PM

Quote:

Originally Posted by chadi (Post 1701925)
I need a bit of help here please.

vB Optimise: You have selected a cache method that vB Optimise has detected you cannot use, this may be because the extension required is either not installed or active on your server.

I get that on both eaccelerator, yet it was compiled in Apache (along with Zend Accelerator).

I'm using Cpanel / Centos / PHP 5.

My vbconfig:

Thanks.

Did you check your phpinfo and make sure eaccelerator is actually loaded?


All times are GMT. The time now is 05:20 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.03159 seconds
  • Memory Usage 1,756KB
  • 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
  • (4)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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