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 - [DBTech] vB Optimise 2.0.1 (Lite) (https://vborg.vbsupport.ru/showthread.php?t=237325)

DragonByte Tech 01-30-2012 02:13 PM

You can also check your php info page for any references to any of the opcode cachers vB Optimise references.

If not, you can use Filecache, instructions for how to use it is on the page and does not require any special software on the server :)


Fillip

autoescala 02-02-2012 03:53 PM

Thanks for the response, I ask to my provider (cheap Dreamhost.com) and say me that can't I use any type of cache in my shared free account.

I want try to use filecache, but Im not sure if It works....

thanks to all for the answers :)

autoescala 02-03-2012 08:23 AM

I test your cache in filecache mode and it works great!!!! very happy with it, how much is cost the pay version ?? I will tell to my boss....

A.Chakery 02-03-2012 08:49 AM

Here is the Pro Details ...
http://www.dragonbyte-tech.com/vbeco...ct&productid=1

I am using it and I am very happy with it ... I love the Full page caching for guests ...

John Lester 02-20-2012 09:44 PM

Last week I installed xcache on my hostmonster account (shared hosting) following the tutorial here ... http://rk.md/2009/xcache-bluehost/

After verifying installation via phpinfo.php I waited until today to install vBoptimize.

Installed lite version fine (vB 4.1.10) but when I select xcache as the operator it tells me I have selected a cache method that vB Optimise has detected I can not use :(

hostmonster support said I didn't need to restart the apache server because "all apache variables that would normally require a apache restart are stored in .htaccess and dynamically processed".

So I went into cpanel and killed all processes, then went back to my site. Still can not use xcache as the operator.

Any ideas on where to go from here?

A.Chakery 02-21-2012 02:43 AM

Quote:

Originally Posted by John Lester (Post 2301719)
Last week I installed xcache on my hostmonster account (shared hosting) following the tutorial here ... http://rk.md/2009/xcache-bluehost/

After verifying installation via phpinfo.php I waited until today to install vBoptimize.

Installed lite version fine (vB 4.1.10) but when I select xcache as the operator it tells me I have selected a cache method that vB Optimise has detected I can not use :(

hostmonster support said I didn't need to restart the apache server because "all apache variables that would normally require a apache restart are stored in .htaccess and dynamically processed".

So I went into cpanel and killed all processes, then went back to my site. Still can not use xcache as the operator.

Any ideas on where to go from here?

have you set xCache in config.php ?

John Lester 02-21-2012 08:16 AM

No I forgot that part :D However when I did set it I can't get into my acp, I get the following error:

Fatal error: Xcache not installed in [path]/includes/class_datastore.php on line 528

It's late and I shouldn't be fiddling with this right now :D

DragonByte Tech 02-21-2012 10:39 AM

You should contact your host, that error indicates it's not a vBO issue and it's an issue with the XCache installation. They should be able to help :)


Fillip

arkueckelhan 02-26-2012 09:53 PM

I am using memcache
I get error:
Code:

Running Test: Store Cache
 Your Opcache Operator extension is functioning, however it is unable to store data. Please check your extension configuration.
Running Test: Fetch Cache
 Your Opcache Operator extension is functioning, however it is unable to store data. Please check your extension configuration.

My config.php file looks like this:
Code:

// ******** 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'] = 'vbo_';



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


I don't know exactly what to change in config file or what to change it to

DragonByte Tech 02-26-2012 10:20 PM

That's a server error, please contact your host to have them assist with verifying memcached in PHP :)


Fillip

arkueckelhan 03-01-2012 02:29 AM

Quote:

Originally Posted by arkueckelhan (Post 2303726)
I am using memcache
I get error:
Code:

Running Test: Store Cache
 Your Opcache Operator extension is functioning, however it is unable to store data. Please check your extension configuration.
Running Test: Fetch Cache
 Your Opcache Operator extension is functioning, however it is unable to store data. Please check your extension configuration.

My config.php file looks like this:
Code:

// ******** 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'] = 'vbo_';



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


I don't know exactly what to change in config file or what to change it to

For those having trouble with this in the future. The solution was to remove the "*/" and "/*" that were commenting out the memcache configuration in the config.php

aquariumpros 03-03-2012 03:06 AM

Does the PRO version of this mod function properly under vB 4.1.10?

DragonByte Tech 03-03-2012 11:36 AM

We're using it with 4.1.11 with no problems :)


Fillip

aquariumpros 03-03-2012 11:35 PM

Quote:

Originally Posted by DragonByte Tech (Post 2305651)
We're using it with 4.1.11 with no problems :)


Fillip

Excellent!

Thank you much!

thecore762 03-04-2012 12:12 AM

Any plans to upgrade vBOptimise? It hasn't been updated for over 2 years.
I know recently the pro version was upgraded, was looking to see if you guys were going to release an update for vBOptimise lite.

DragonByte Tech 03-04-2012 11:59 AM

It's currently not in our short-term update schedule :)


Fillip

Nirjonadda 04-07-2012 06:28 PM

Just purchased vB Optimise & [AddOn] Branding Free: vB Optimise I Think this is best mod/made by dragonbyte-tech.

sivaganeshk 04-18-2012 12:09 PM

Any updates on the Lite version ?

sross 04-22-2012 12:17 AM

Looking into using this, possibly going pro too. I will try lite first. Any issues with vbseo? and lite version running on 4.1.11? And lastly the "flush cache" option. The pro version has an auto-flush, does this mean I need to manually flush lite version every couple days or so? What happens if it is not flushed? Thanks!

A.Chakery 04-22-2012 07:19 AM

I ma using this plugin for about 6 month (the pro version), it has no problems wit h vBSEO,

and about your question : there is no need for you to flush the cache unless you make some changes to your forum (like templaes / images etc) then in some cases you should flush the cache manually , and about the Full Page cache for guests (my favorite feature in the Pro version) there is an option for the expire time , I set 24h for this setting , so every 24h it flushed the full page cache automatically ...

sross 04-22-2012 10:03 PM

should my vboptimize filecache folder be empty? I have it set to 777 but do i also need the parent directory to be 777?

DragonByte Tech 04-22-2012 10:11 PM

If you're using a cache method other than Filecache then it's normal for it to be empty :)


Fillip

Winter Sonata 04-24-2012 04:51 AM

shall i use this on 4.1.10 version, or it's now default in this version 4.1.10 ?

DragonByte Tech 04-24-2012 11:16 AM

Nothing regarding vB Optimise is default in vBulletin 4.1.10 or above.

Fillip

mescalin 04-25-2012 06:31 PM

Are you planning to update lite or pro version with css sprites, combining css and js?

i thought about pro version but it seemed to be not updated for a very long time are you planning to add features?

DragonByte Tech 04-25-2012 06:42 PM

Combining JS is very much a bad thing since it will break mods and possibly also core vBulletin features.


Fillip

Winter Sonata 05-09-2012 08:40 AM

Any ideas how to install those extention (xchache) on a shared hosting without hash access ?

Zachery 05-09-2012 08:56 AM

You cannot, stright up.

You're better off just using the filecache on a shared host.

Winter Sonata 05-09-2012 10:20 AM

Thanks alot, Zachery, I choosed Filecache and it tested and worked :)

But is that Filecahce sth simliar to Xcache ?

DragonByte Tech 05-09-2012 01:21 PM

Quote:

Originally Posted by Winter Sonata (Post 2327626)
Thanks alot, Zachery, I choosed Filecache and it tested and worked :)

But is that Filecahce sth simliar to Xcache ?

Filecache uses your harddrive, it's similar but is much slower compared to XCache.


Fillip

markp_2000 05-09-2012 03:19 PM

Thanks for the mod. I will be going to the pro as with several of your other mods I have. One question on vbseo and memcached. Does it use the settings under vbseo or out of config.php.

Mark

DragonByte Tech 05-09-2012 03:21 PM

config.php, this mod is not aware of or integrate with vBSEO in any way.

Fillip

Zachery 05-09-2012 05:31 PM

Quote:

Originally Posted by DragonByte Tech (Post 2327711)
Filecache uses your harddrive, it's similar but is much slower compared to XCache.


Fillip

Arguably, if xcache is also installed (but in a public setting) it should cache the file, and be reasonably close to the same speed.

Winter Sonata 05-09-2012 09:29 PM

Thanks alot for the support!

Chadi 06-02-2012 08:36 PM

Getting this error

Quote:

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 configured correctly on your server.
However, EA is indeed installed (suPHP is not)

Quote:

root@server [~]# php -v
PHP 5.3.13 (cli) (built: May 30 2012 09:49:36)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
with eAccelerator v0.9.6.1, Copyright (c) 2004-2010 eAccelerator, by eAccelerator
with the ionCube PHP Loader v4.0.12, Copyright (c) 2002-2011, by ionCube Ltd., and
with Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

DragonByte Tech 06-03-2012 11:07 AM

Create the following two scripts, and run them in order:

PHP Code:

<?php eaccelerator_put('test''Working!'5000); ?>

PHP Code:

<?php echo eaccelerator_get('test'); ?>

If the second script does not output anything, or outputs anything other than Working! then eAccelerator is not working correctly, and I would suggest you show those two scripts to your host so that they can diagnose it further :)


Fillip

Chadi 06-03-2012 11:43 AM

Where do I run them?

DragonByte Tech 06-03-2012 11:51 AM

Anywhere within your forum is fine :)

Chadi 06-03-2012 12:15 PM

Quote:

Fatal error: Call to undefined function eaccelerator_put() in /home/zzzzzz/public_html/1.php on line 1
I get that on both scripts.

DragonByte Tech 06-03-2012 12:24 PM

eAccelerator was not compiled with the shared functions.

See this thread: https://groups.google.com/group/eacc...562c28a83d6694 and other search results for "call to undefined function eaccelerator_put" on Google :)


Fillip


All times are GMT. The time now is 01:17 AM.

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.02894 seconds
  • Memory Usage 1,831KB
  • 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
  • (2)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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