Status
Not open for further replies.
That usually means your APC is running out of memory.

If you add this plugin to admin_index_main3
PHP:
$cache_user = apc_cache_info('user', 1); 
$cache = apc_cache_info('opcode', 1); 

$stats = array(
    'Variable Cache' => array(
        'Cached Variables'                 => vb_number_format($cache_user['num_entries']) . ' (' . vb_number_format($cache_user['mem_size'], 2, true) . ')',
        'Hits'                             => vb_number_format($cache_user['num_hits']),
        'Misses'                         => vb_number_format($cache_user['num_misses']),
        'Request Rate (hits, misses)'    => vb_number_format((($cache_user['num_hits'] + $cache_user['num_misses']) / (TIMENOW - $cache_user['start_time']))) . ' cache requests/second',
        'Hit Rate'                         => vb_number_format((($cache_user['num_hits']) / (TIMENOW - $cache_user['start_time']))) . ' cache requests/second',
        'Miss Rate'                     => vb_number_format((($cache_user['num_misses']) / (TIMENOW - $cache_user['start_time']))) . ' cache requests/second',
        'Insert Rate'                     => vb_number_format((($cache_user['num_inserts']) / (TIMENOW - $cache_user['start_time']))) . ' cache requests/second',
        'Cache full count'                 => vb_number_format($cache_user['expunges'])
    ),
    'File Cache' => array(
        'Cached Files'                     => vb_number_format($cache['num_entries']) . ' (' . vb_number_format($cache['mem_size'], 2, true) . ')',
        'Hits'                             => vb_number_format($cache['num_hits']),
        'Misses'                         => vb_number_format($cache['num_misses']),
        'Request Rate (hits, misses)'    => vb_number_format((($cache['num_hits'] + $cache['num_misses']) / (TIMENOW - $cache['start_time']))) . ' cache requests/second',
        'Hit Rate'                         => vb_number_format((($cache['num_hits']) / (TIMENOW - $cache['start_time']))) . ' cache requests/second',
        'Miss Rate'                     => vb_number_format((($cache['num_misses']) / (TIMENOW - $cache['start_time']))) . ' cache requests/second',
        'Insert Rate'                     => vb_number_format((($cache['num_inserts']) / (TIMENOW - $cache['start_time']))) . ' cache requests/second',
        'Cache full count'                 => vb_number_format($cache['expunges'])
    )
);

print_table_start();
print_table_header('APC Cache Info', 2);
foreach ($stats as $title => $info)
{
    print_description_row($title, false, 2, 'optiontitle');
    foreach ($info as $key => $val)
    {
        print_cells_row(array("<strong>$key</strong>", $val), 0, 0, -5, 'top', 0, 1);
    }    
}
print_table_footer(2, '', '', false);
You can see if that's the case.

My apologies for the late reply. I am having serious issues connecting here.

This is what it shows:

Capture50.webp

Still have the same issues though. Thanks!
 
In that case you'll need to contact your host with a variation of the message I posted previously - vBO doesn't control how APC responds to cache requests.

I suspect you'd receive similar issues by refreshing the "test2.php" file in that at some point it'll stop reporting "Working!" until you flush the cache again.
 
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