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)

final kaoss 01-25-2011 04:02 PM

is this compatable with vB4 SuperCharged - Optimises CSS, Javascript and HTML or will I see conflicts?

DragonByte Tech 01-25-2011 04:12 PM

Not entirely sure; vB4S is known to break a great many modifications by rearranging JS code and such, so I wouldn't be surprised if there were conflicts, though I can think of none off the top of my head.

Fillip

newmark 01-25-2011 08:13 PM

Quote:

Originally Posted by DragonByte Tech (Post 2154083)
Hmm, can you try disabling all other mods to see if the issue still occurs?

For #1, sadly we're unable to assist with how to set up XCache. You can try Memcached instead, it's got a lot less configuration problems and works on pretty much all systems.

#2: What happens if you turn off opcaching? Does it work then?

#1: Sounds like something's wrong with your server or file permissions, as it's not an error someone has reported before.

#2 and #3 are probably related.

Are you running suhosin?


Fillip

yes when I disable this product everything seems working properly..

by the way I change the cache type to "filecahce" and change the folder permission to 077; now the product works properly..I got no error..and I'm also able to edit the templates etc..
but what I wonder is, when I choose filecahce as the cache type does it mean the same with xcache??

TeknoSounds 01-26-2011 02:49 AM

does your xcache show up properly in your phpinfo file? And are you able to flush the cache from the XCache Admin page? does everything in the admin page show its working? (i.e. counters increasing, colored bars filling, etc)

newmark 01-26-2011 09:24 AM

Quote:

Originally Posted by TeknoSounds (Post 2154702)
does your xcache show up properly in your phpinfo file? And are you able to flush the cache from the XCache Admin page? does everything in the admin page show its working? (i.e. counters increasing, colored bars filling, etc)

not with xcache but when I choose filecahce as the cache option then I can flush cache and system test also works properly..no error is given..and the most important part is, I can edit my templates with filecahce..but I'm not sure about the performance of it compared to Xcache..

TeknoSounds 01-26-2011 11:07 AM

right, that's using it through vboptimize. But is xcache showing as functioning on its own already? when you view your phpinfo file there should be a section for it if its running:
Quote:

This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
with XCache v1.3.0, Copyright (c) 2005-2009, by mOo
Hopefully you installed the xcache admin pages as well, and can you access them?

DragonByte Tech 01-26-2011 11:21 AM

Filecache is not as efficient as using a proper opcode cacher, but if you're unable to get XCache working and can't switch to a different and more recommended cacher like Memcached (extremely easy to setup, if I remember correctly it just needs to be installed, started, set to auto-start on startup, and then it Just Works), then filecache is a viable alternative :)


Fillip

newmark 01-26-2011 10:19 PM

Quote:

Originally Posted by DragonByte Tech (Post 2154812)
Filecache is not as efficient as using a proper opcode cacher, but if you're unable to get XCache working and can't switch to a different and more recommended cacher like Memcached (extremely easy to setup, if I remember correctly it just needs to be installed, started, set to auto-start on startup, and then it Just Works), then filecache is a viable alternative :)


Fillip

thanks..

rajubd 02-02-2011 10:25 PM

when v3.0 will be lunched?

DragonByte Tech 02-03-2011 02:17 AM

That's not clear yet, sorry.

Fillip

tomoyo23 02-06-2011 02:06 AM

hello error:
Running Test: Fetch Cache
Your Opcache Operator extension is functioning, however it is unable to store data. Please check your extension configuration.
PHP Version 5.2.15
XCache v1.3.1

any solution please?.. greetings

DragonByte Tech 02-06-2011 02:11 AM

Quote:

Originally Posted by DragonByte Tech (Post 2154083)
sadly we're unable to assist with how to set up XCache. You can try Memcached instead, it's got a lot less configuration problems and works on pretty much all systems.


Fillip

denman75 03-09-2011 03:02 PM

installed it and loading time is so much faster
i thought it was query optimization but its really visible faster
thank you and if its keep working like this ill go for the pro version!

BadgerDog 03-14-2011 02:10 PM

Uninstalled vB Optimise 2.0.1 (Lite) ....

Purchased and installed vB Optimise 2.3.0 (Pro) ....

I don't understand why as I'm not a huge technical Unix guy, but for whatever reason, our forums are incredibly faster using this product ... :up:

Thanks Fillip, for helping us get it going with Memcache .... :)

Regards,
Doug

doobiefillin 03-17-2011 02:02 PM

broken in 4.1.2

DragonByte Tech 03-17-2011 03:00 PM

Quote:

Originally Posted by doobiefillin (Post 2174391)
broken in 4.1.2

Unfortunately that does not help us diagnose the problem.

We are running it on two sites using 4.1.2 with no problems.


Fillip

RWerksman 03-23-2011 12:34 AM

FYI - we have this installed with eAccelerator. It was kind of tricky:

- You need eAccelerator 0.9.5.3 or below. The _get and _put caching was dropped from 0.9.6 and above.
- 0.9.5.3 only works with PHP 5.2.x It doesn't work or install with 5.3.x
- The note in the first post of this is correct. You need the extra flag in during PHP compile.

You can test to see if eAccelerator is working correctly (or will work correctly with this mod by dropping the following code into a php file and running it:

Code:

<?php
$rfunc = get_extension_funcs( 'eaccelerator' );
print_r($rfunc);
 
function ea ($str)
{
        eaccelerator_put("testkey", $str);
        for ($i = 0; $i < 1e5; $i++)
        {
                $r = eaccelerator_get("testkey");
        }
        return $r;
}
 
$str = str_repeat("1234567890", 1024); // 10 KB
$r = ea($str);
echo strlen($r);
 
?>

If you get an error. You have some work to do...

I hope this mod is worth it :D

shaw17 04-20-2011 07:39 AM

Killed my forum, had to restore from a backup, warning.

DragonByte Tech 04-20-2011 07:59 AM

Unfortunately your post does not help us diagnose the problem and help you :(


Fillip

Lestat_ 05-01-2011 05:00 PM

maybe stupid question but does this mean this mod reduces server load ? Currently i get about 25 error emails per day , always the same reason (mysql server has gone away) and always the same sql that's causing it (UPDATE vb_session SET lastactivity ...) so i could use a mod which reduces server load :)

DragonByte Tech 05-01-2011 05:49 PM

Your best bet would be to contact your host, those errors are related to a faulty MySQL configuration (or installation) which is not something a mod can help fix.

That being said, vBO does reduce the strain on the MySQL server :)


Fillip

Lestat_ 05-01-2011 05:51 PM

thanks for the reply Fillip, I'm going to try this mod, thank you :)

SpaceStar 05-07-2011 12:15 AM

Hello

I don't know if this is reported before.

I have encountered a problem with this mod, when this is enabled and set to ON, it is not allowing other products to be installed. I am getting this error, if I try to install any other mod:

The website cannot display the page (HTTP 500).

Disabling this product, allow other products to be installed again.

Regards

ellinofatsa 05-07-2011 03:21 PM

thank you so mats work perfect in vb 4.1.3

strudinox 05-07-2011 07:19 PM

Installed, working perfect for me as well in 4.1.3 using Memcached.

Thanks!

djilou 05-09-2011 04:14 PM

Can I use this mod without installing any of this : APC
eAccelerator
Memcache
XCache
WinCache
Filecache
??

DragonByte Tech 05-09-2011 06:08 PM

Quote:

Originally Posted by SpaceStar (Post 2192824)
Hello

I don't know if this is reported before.

I have encountered a problem with this mod, when this is enabled and set to ON, it is not allowing other products to be installed. I am getting this error, if I try to install any other mod:

The website cannot display the page (HTTP 500).

Disabling this product, allow other products to be installed again.

Regards

You'll need to log in to your server via SSH and check the error_log file (unfortunately I cannot be more specific due to the vast number of server configurations out there) directly after trying to install a product.

Quote:

Originally Posted by djilou (Post 2193698)
Can I use this mod without installing any of this : APC
eAccelerator
Memcache
XCache
WinCache
Filecache
??

You have Filecache "installed", Filecache simply means using the file system to cache the different things :)


Fillip

MissKalunji 05-11-2011 07:01 PM

I noticed at times, I would "save a template" and my website would go blank like no colors etc.

Do you know what's causing this?

DragonByte Tech 05-11-2011 07:13 PM

That's a known problem if you're also using the config.php variable to set cache method (which I think may be required with XCache, but I've also seen it happen with Memcached when the config.php variable is used).

Fillip

MissKalunji 05-11-2011 07:30 PM

Ah I understand. Well nothing that simple Flush Cash can't fix :)

thank you!!!

TeknoSounds 05-12-2011 04:54 AM

yeah i occasionally have a single rogue image that will disappear intermittently, but a simple flush of the cache clears it up.
Using XCache myself.

SO has to do with the fact I set XCache as the cacher in the vb config file? Any idea if thats a fixable bug in the future?

DragonByte Tech 05-12-2011 04:44 PM

It's not a bug with vB Optimise so nothing we can do about that I'm afraid :(


Fillip

final kaoss 07-20-2011 03:10 PM

any chance that this can be updated to combine js & css files? Maybe strip away the version numbers and then combine when the script runs?

Code:

1 change
clientscript/vbulletin-core.js?v=413
clientscript/yui/animation/animation-min.js?v=413
to
clientscript/vbulletin-core.js
clientscript/yui/animation/animation-min.js
etc...
2 repeat for all js files
3 combine them


washingtonboise 07-24-2011 01:54 AM

Quote:

Supported Extensions

APC
eAccelerator
Memcache
XCache
WinCache
Filecache
Which is best?

Successfulsteps 07-24-2011 02:48 AM

I'm confused, does this require I install a 3rd party software first and if so, where from? Obviously optimization is needed for any growing forum, and mine is growing rapidly. I use 4.1.4.

ndL 07-24-2011 09:10 AM

definitely worth reading whole thread and installing all needed scripts.

DragonByte Tech 07-24-2011 07:11 PM

Quote:

Originally Posted by washingtonboise (Post 2224149)
Which is best?

Memcached or XCache.

Quote:

Originally Posted by Successfulsteps (Post 2224167)
I'm confused, does this require I install a 3rd party software first and if so, where from? Obviously optimization is needed for any growing forum, and mine is growing rapidly. I use 4.1.4.

You can use Filecache if you do not have any of the listed extensions installed.


Fillip

S3Ponline 07-25-2011 08:04 AM

Quote:

Originally Posted by extreme-gaming (Post 2222900)
any chance that this can be updated to combine js & css files? Maybe strip away the version numbers and then combine when the script runs?

Code:

1 change
clientscript/vbulletin-core.js?v=413
clientscript/yui/animation/animation-min.js?v=413
to
clientscript/vbulletin-core.js
clientscript/yui/animation/animation-min.js
etc...
2 repeat for all js files
3 combine them


This would be awesome.

8thos 07-25-2011 05:22 PM

Installed using Filecache.

DragonByte Tech 07-25-2011 09:19 PM

Quote:

Originally Posted by extreme-gaming (Post 2222900)
any chance that this can be updated to combine js & css files? Maybe strip away the version numbers and then combine when the script runs?

Code:

1 change
clientscript/vbulletin-core.js?v=413
clientscript/yui/animation/animation-min.js?v=413
to
clientscript/vbulletin-core.js
clientscript/yui/animation/animation-min.js
etc...
2 repeat for all js files
3 combine them


That's sadly not going to be possible due to the vast number of compatibility issues this could cause :(


Fillip


All times are GMT. The time now is 01:09 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.01747 seconds
  • Memory Usage 1,830KB
  • 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
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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