Oops, WeRock compilation ran into an issue unfortunately. Here is what we know:
Type: Fatal Error
Issue: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20975616 bytes)
Server: www.rsssearchhub.com
Request: /feed/094d23fb622c866a49d33442c81900d6/kaktuz-com-hilarious-crazy-videos-chick-fights-funny-clips
File: /var/www/vhosts/werock.com/public/core/cache/CoreCache.class.php (481)
Line: return apc_store(DOMAIN_NAME . self::CACHE_KEY_CACHE_SEPARATOR . $key, ($serialize ? serialize($value) : $value), $duration);
PHP Version: 7.2.24-0ubuntu0.18.04.15
OS: Linux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481 ->
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
<?php

/**
 *
 *  In case of apcu support vs apc - here is some support
 *
    apcu_add — Cache a new variable in the data store
    apcu_cache_info — Retrieves cached information from APCu's data store
    apcu_cas — Updates an old value with a new value
    apcu_clear_cache — Clears the APCu cache
    apcu_dec — Decrease a stored number
    apcu_delete — Removes a stored variable from the cache
    apcu_entry — Atomically fetch or generate a cache entry
    apcu_exists — Checks if entry exists
    apcu_fetch — Fetch a stored variable from the cache
    apcu_inc — Increase a stored number
    apcu_sma_info — Retrieves APCu Shared Memory Allocation information
    apcu_store — Cache a variable in the data store
 */

if(!function_exists('apc_add') && function_exists('apcu_add')){
    function 
apc_add($key$var$ttl){
        return 
apcu_add($key$var$ttl);
    }
}
if(!
function_exists('apc_store') && function_exists('apcu_store')){
    function 
apc_store($key$var$ttl){
        return 
apcu_store($key$var$ttl);
    }
}
if(!
function_exists('apc_fetch') && function_exists('apcu_fetch')){
    function 
apc_fetch($key){
        return 
apcu_fetch($key);
    }
}
if(!
function_exists('apc_delete') && function_exists('apcu_delete')){
    function 
apc_delete($key){
        return 
apcu_delete($key);
    }
}
if(!
function_exists('apc_inc') && function_exists('apcu_inc')){
    function 
apc_inc($key$step, &$success){
        return 
apcu_inc($key$step$success);
    }
}

/**
 * Caching operations
 * Provided methods to set, get, update and delete cached object
 *
 * PHP version 5
 *
 * @package Ukora
 * @author Bas Kuis <b@ukora.com>
 * @copyright 2012 Bas Kuis (http://www.ukora.com)
 * @license http://creativecommons.org/licenses/by-nc/3.0/ Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)
 * @link http://www.ukora.com/cms/documentation/
 */
class CoreCache {

    
/**
     * Cache constants
     */
    
CONST CACHE_GLOBAL_NAMESPACE_KEY 'we:namespace';

    
/**
     * Page render cache stack
     * allows us to store objects
     * in memory while the page is
     * generated
     */
    
private static $cacheStack = array();

    
/**
     * Quick reference for namespace values
     * to prevent excessive cache lookups
     *
     * @var array
     */
    
private static $namespaces = array();

    
/**
     * Constants
     */
    
const CACHE_KEY_SEPARATOR ':';
    const 
CACHE_KEY_CACHE_SEPARATOR ':cache:';
    const 
CACHE_APC_DELETE_FUNCTION 'apc_delete';
    const 
CACHE_APC_INC_FUNCTION 'apc_inc';
    const 
CACHE_APC_STORE_FUNCTION 'apc_store';
    const 
CACHE_MEMCACHE_CLASS_NAME 'Memcache';
    const 
CACHE_APC_ITERATOR_CLASS 'APCIterator';
    const 
CACHE_NAMESPACE_SEPARATOR ',';
    const 
CACHE_APC_CLEAR_CACHE_FUNCTION 'apc_clear_cache';
    const 
CACHE_APC_FETCH_FUNCTION 'apc_fetch';
    const 
HTTP_MODIFIED_SINCE_HEADER 'HTTP_IF_MODIFIED_SINCE';
    const 
HTTP_NOT_MODIFIED_HEADER 'HTTP/1.1 304 Not Modified';

    
/**
     * Type references
     */
    
const TYPE_APC 'apc';
    const 
TYPE_MEMCACHED 'memc';

    
/**
     * Memcache holder
     *
     * @var Memcache $Memcache
     */
    
private static $Memcache null;

    
/**
     * Block cached responses
     *
     *
     */
    
public static function blockCacheRequests(){
        if(isset(
$_SERVER[self::HTTP_MODIFIED_SINCE_HEADER])) {

            
/**
             * Handle cached streamed items
             */
            
$lastModified CoreCache::getCache('streamCache:' str_replace(CoreController::PATH_Q $_SERVER[CoreController::SERVER_QUERY_STRING], null$_SERVER[CoreController::SERVER_REQUEST_URI]), true);
            if (!empty(
$lastModified) && strtotime($_SERVER[self::HTTP_MODIFIED_SINCE_HEADER]) <= $lastModified 60) {
                
header(self::HTTP_NOT_MODIFIED_HEADER);
                exit;
            }
            
        }
    }

    
/**
     * Expire Cache
     *
     * @param null $key
     * @param bool $apc Local cache or network wide cache
     * @param string $namespace
     * @return bool|string[]
     */
    
public static function deleteCache($key null$apc false$namespace null){

        
/**
         * Add namespace
         */
        
$key self::generateKey($key$namespace);

        
//no cache system lookup needed
        
if(isset(self::$cacheStack[$key])){
            unset(
self::$cacheStack[$key]);
        }

        
//cache local .. if we can
        
if($apc && function_exists(self::CACHE_APC_DELETE_FUNCTION)){

            
/**
             * Delete cache by key
             */
            
return apc_delete(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key);

        }else{

            
//check for Memcache
            
if(!class_exists(self::CACHE_MEMCACHE_CLASS_NAME)){
                return 
false;
            }

            
//assure memcached
            
if(self::assureMemcache()){

                
/**
                 * Delete cache key
                 */
                
return self::$Memcache->delete(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key);

            }

        }

        
//something went wrong
        
return false;

    }

    
/**
     * Create namespace
     *
     * @param mixed $namespace
     * @param bool $apc
     * @return bool
     */
    
public static function createNamespace($namespace null$apc true){

        
/**
         * To keep types straight
         */
        
$typeKey = ($apc) ? self::TYPE_APC self::TYPE_MEMCACHED;

        
/**
         * If is array
         */
        
if(is_array($namespace)){

            
/**
             * namespace values
             */
            
$ns_values = array();

            
/**
             * Step through namespaces
             */
            
foreach($namespace as $ns){

                
/**
                 * Lookup cached value only if needed
                 */
                
if(!isset(self::$namespaces[$typeKey][$ns])) {

                    
/**
                     * Create namespace key
                     */
                    
$key self::CACHE_GLOBAL_NAMESPACE_KEY self::CACHE_KEY_SEPARATOR DOMAIN_NAME self::CACHE_KEY_SEPARATOR $ns;

                    
$ns_value 0;

                    
/**
                     * If APC
                     */
                    
if ($apc && false === ($ns_value CoreCache::getCache($keytruenullfalse))) {
                        
CoreCache::saveCache($key00truenullfalse);
                        
$ns_value 0;
                    }

                    
/**
                     * If Memcache
                     */
                    
if (!$apc && false === ($ns_value CoreCache::getCache($keyfalsenullfalse))) {
                        
CoreCache::saveCache($key00falsenullfalse);
                        
$ns_value 0;
                    }

                    
//load value
                    
$ns_values[$ns] = $ns_value;

                    
//set lookup
                    
self::$namespaces[$typeKey][$ns] = $ns_value;

                } else {

                    
//restore from existing reference
                    
$ns_values[$ns] = self::$namespaces[$typeKey][$ns];

                }

            }

            
/**
             * Return string of values
             */
            
return implode(self::CACHE_NAMESPACE_SEPARATOR$ns_values);

        }

        
/**
         * Lookup cached value only if needed
         */
        
if(!isset(self::$namespaces[$typeKey][$namespace])) {

            
/**
             * Create namespace key
             */
            
$key self::CACHE_GLOBAL_NAMESPACE_KEY self::CACHE_KEY_SEPARATOR DOMAIN_NAME self::CACHE_KEY_SEPARATOR $namespace;

            
$ns_value 0;

            
/**
             * If APC
             */
            
if ($apc && false === ($ns_value CoreCache::getCache($keytrue))) {
                
CoreCache::saveCache($key00true);
                
$ns_value 0;
            }

            
/**
             * If Memcache
             */
            
if (!$apc && false === ($ns_value CoreCache::getCache($keyfalse))) {
                
CoreCache::saveCache($key00false);
                
$ns_value 0;
            }

        } else {

            
$ns_value self::$namespaces[$typeKey][$namespace];

        }

        
/**
         * All done
         */
        
return $ns_value;

    }

    
/**
     * Invalidate a namespace
     *
     * @param null $namespace
     * @return bool
     */
    
public static function invalidateNamespace($namespace null){

        
/**
         * Kill references
         */
        
if(isset(self::$namespaces[self::TYPE_MEMCACHED][$namespace])) unset(self::$namespaces[self::TYPE_MEMCACHED][$namespace]);
        if(isset(
self::$namespaces[self::TYPE_APC][$namespace])) unset(self::$namespaces[self::TYPE_APC][$namespace]);

        
/**
         * If an array of namespaces are passed
         */
        
if(is_array($namespace)){

            
/**
             * Step through namespaces
             */
            
foreach($namespace as $ns){

                
/**
                 * Create namespace key
                 */
                
$key self::CACHE_GLOBAL_NAMESPACE_KEY self::CACHE_KEY_SEPARATOR DOMAIN_NAME self::CACHE_KEY_SEPARATOR $ns;

                
/**
                 * Increment APC
                 */
                
CoreCache::increment($keytrue);

                
/**
                 * Increment Memcache
                 */
                
CoreCache::increment($keyfalse);

            }

            return 
true;

        }

        
/**
         * Create namespace key
         */
        
$key self::CACHE_GLOBAL_NAMESPACE_KEY self::CACHE_KEY_SEPARATOR DOMAIN_NAME self::CACHE_KEY_SEPARATOR $namespace;

        
/**
         * Increment APC
         */
        
CoreCache::increment($keytrue);

        
/**
         * Increment Memcache
         */
        
CoreCache::increment($keyfalse);

        return 
true;

    }

    
/**
     * Increment cached value
     *
     * @param null $key
     * @param bool $apc
     * @return bool
     */
    
public static function increment($key null$apc false){

        
//if incrementing local cache
        
if($apc && function_exists(self::CACHE_APC_INC_FUNCTION)){

            
/**
             * Attempt to increment
             */
            
$success false;
            
apc_inc(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key1$success);

            
/**
             * Return success
             */
            
return $success;

        }else{

            
//check for Memcache
            
if(!class_exists(self::CACHE_MEMCACHE_CLASS_NAME)){
                return 
false;
            }

            
//assure memcached
            
if(self::assureMemcache()){

                
/**
                 * Increment
                 */
                
return self::$Memcache->increment(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key1);

            }

        }

        return 
false;

    }

    
/**
     * Delete all with prepend
     * AVOID USING THIS
     *
     * @param $regex
     * @param bool $apc
     * @return bool
     */
    
public static function deleteAllCache($regex null$apc false){

        
//cache local .. if we can
        
if($apc && function_exists(self::CACHE_APC_DELETE_FUNCTION)){

            
/**
             * Check for iterator APCIterator
             */
            
if(class_exists(self::CACHE_APC_ITERATOR_CLASS)){

                
/**
                 * Iterate over cached objects and
                 * remove
                 */
                
foreach(new APCIterator('user'$regex) as $entry){
                    
CoreCache::deleteCache($entry['key'], true);
                }

                return 
true;

            }else{

                
CoreLog::error('APCIterator does not exist');

            }

        }

        return 
false;

    }

    
/**
     * Save cache
     *
     * @param string $key Cache key (host name inclusion not required)
     * @param mixed $value Variable to be cached
     * @param int $duration Cache expiration in seconds
     * @param bool $apc Local cache or network wide cache
     * @param string $namespace Cache namespace
     * @param boolean $serialize Serialize object?
     * @return bool True on success and false on failure
     */
    
public static function saveCache($key null$value null$duration 600$apc false$namespace null$serialize true){

        
//quick sanity check.. we need a key
        
if(empty($key)){ return false; }

        
/**
         * Add namespace
         */
        
$key self::generateKey($key$namespace);

        
//store in stack
        
if($value !== false && $value !=  nullself::$cacheStack[$key] = $value;
            
        
//cache local .. if we can
        
if($apc && function_exists(self::CACHE_APC_STORE_FUNCTION)){

            
//store cache
            
return apc_store(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key, ($serialize serialize($value) : $value), $duration); //<- Fatal Error Allowed memory size of 134217728 bytes exhausted (tried to allocate 20975616 bytes)
            
        //if network wide
        
}else{
            
            
//check for Memcache
            
if(!class_exists(self::CACHE_MEMCACHE_CLASS_NAME)){ 
                return 
false;
            }
            
            
//assure memcached
            
if(self::assureMemcache()){

                if(
false === self::$Memcache->replace(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key, ($serialize serialize($value) : $value), false$duration)){
                    
self::$Memcache->set(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key, ($serialize serialize($value) : $value), false$duration);
                }

                
//success
                
return true;
        
            }
    
        }

        
//notify
        
CoreLog::error('Unable to cache data');
        
        
//something went wrong
        
return false;
        
    }

    
/**
     * Generate key
     *
     * @param $key
     * @param $namespace
     * @return bool|string
     */
    
private static function generateKey($key$namespace$apc true){
        if(empty(
$namespace)) return $key;
        if(
false !== ($ns_value self::createNamespace($namespace$apc))){
            return 
$key self::CACHE_KEY_SEPARATOR $ns_value;
        }
        
CoreLog::error('Unable to generate cache key');
        return 
false;
    }

    
/**
     * Get cache
     *
     * @param string $key Cache key (host name inclusion not required)
     * @param bool $apc Local cache or network wide cache
     * @param string $namespace Cache namespace
     * @param boolean $serialize Serialize object?
     * @return mixed Cached variable or false
     */
    
public static function getCache($key null$apc false$namespace null$serialize true){

        
//quick sanity check.. we need a key
        
if(empty($key) || !CACHING_ENABLED){ return false; }

        
/**
         * Add namespace
         */
        
$key self::generateKey($key$namespace);

        
//no cache system lookup needed
        
if(isset(self::$cacheStack[$key])){
            return 
self::$cacheStack[$key];
        }

        
//get cache local .. if we can
        
if($apc && function_exists(self::CACHE_APC_FETCH_FUNCTION)){

            
//get cached value
            
return $serialize unserialize(apc_fetch(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key)) : apc_fetch(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key);

        
//try memcache
        
}else{
            
            
//quick sanity check
            
if(!class_exists(self::CACHE_MEMCACHE_CLASS_NAME)){
                return 
false;
            }
            
            
//assure memcached
            
if(self::assureMemcache()){
            
                
//lookup by key and return 
                
return $serialize unserialize(self::$Memcache->get(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key)) : self::$Memcache->get(DOMAIN_NAME self::CACHE_KEY_CACHE_SEPARATOR $key);
            
            }
        
        }

        
//something went wrong
        
return false;
        
    }

    
/**
     * Flush cache
     */
    
public static function flushCache(){

        
/**
         * Flush APC cache
         */
        
if (function_exists(self::CACHE_APC_CLEAR_CACHE_FUNCTION)) {
            
apc_clear_cache();
        }

        
/**
         * Assure memcache
         */
        
if (self::assureMemcache()) {
            
self::$Memcache->flush();
        }

    }

    
/**
     * Assure memcache connection
     */
    
private static function assureMemcache(){
        
        
//already connected
        
if(is_object(self::$Memcache)){  
            return 
true;
        }
        
        
//connect now
        
if(method_exists(self::CACHE_MEMCACHE_CLASS_NAME'connect')){
            
            
//initiate and connect
            
self::$Memcache = new Memcache
            return 
self::$Memcache->connect(MEMCACHED_HOSTMEMCACHED_PORT);
            
        }
        
        
//was unable to connect
        
return false;
        
    }    
    
}

Warnings:

Notices:

Unknown: