Status
Not open for further replies.
Hello,

I have Memcache as Opcache Operator and Guest Full Page Caching is set to 10 minutes.

First I view a thread as a guest (internet explorer),
then i post a new reply as a registered user (firefox),
finally i refresh the thread as a guest (internet explorer) and i can see the new reply.

Isn't it supposed to display the cached version?
 
I use xcache and vboptimize 3.0 beta, and it seems to work.

Also, where is Deceptor anyway, is he alright? Hasn't been on in a while (and I've been very excited about the aggressive caching)
 
I use xcache and vboptimize 3.0 beta, and it seems to work.

Also, where is Deceptor anyway, is he alright? Hasn't been on in a while (and I've been very excited about the aggressive caching)

He's on a leave of absence at the moment, not really in a position to go into details though, sorry =(
 
Same problem here using filecache. No files appear in the /filecache/ folder. They do appear when caching styles etc.
 
Alls cache work, and php files for style and templates appear in the filecache folder, it not a permission thing.

Btw im running vb 3.8.2, there is no version in the files, but i just downloaded it couple hours ago.
 
Not at the moment, i have to ask my hosting provider to install the software. I do have a private server so this would not be an issue.

Regarding my problem, it seems to be my noobness. I looked at the code and came to conclusion; none setting for Opcache means nothing is cached period regardles if VBO is enabled or not :)

Anyways its working, thanks for the quick reply.
 
If you search for eAccelerator in that file, you'll see - I don't remember it off hand :)
 
Seems like the Put and Get functions cannot be called from PHP.

http://www.sitedeals.nl/gpct.php

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);
 
?>

Not a VBoptimize problem.
 
Last edited:
Status
Not open for further replies.

Similar threads

Legacy vB Optimise

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