pcam
Customer
/vbanalytics.php gives a over-set memory error which after temporarily increasing the limits seems too needy.
First without any PHP 7.1 memory adjustments:
File: main.php
First without any PHP 7.1 memory adjustments:
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1498089632 bytes) in /var/domain/dbtech/vbanalytics/actions/main.php on line 354
PHP:
//ini_set('memory_limit', '256M');
//ini_set('memory_limit', '512M');
//ini_set('memory_limit', '1028M');
Code:
Fatal error: Allowed memory size of 1077936128 bytes exhausted (tried to allocate 1498089632 bytes) in /var/domain/dbtech/vbanalytics/actions/main.php on line 356
PHP:
ini_set('memory_limit', '-1');
Code:
PHP Warning: ksort() expects parameter 1 to be array, string given in ..../dbtech/vbanalytics/actions/main.php on line 373
Code:
PHP Warning: implode(): Invalid arguments passed in ..../dbtech/vbanalytics/actions/main.php on line 375
File: main.php
Code:
372: // make sure the datelines are in order
373: ksort($result['graph']['results']);
374:
375: $result['graph']['results'] = implode(', ', $result['graph']['results']);
376:
377: foreach ($result AS $key => &$data)
378: {