You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR PHP ERROR: Could not set timer: Invalid argument (22) in file: cacti-1.2.25/graph_templates.php on line: 34
Offending line:
ini_set('max_execution_time', '-1');
Changing value to 0 allows unlimited execution time and resolves the error.
ERROR PHP DEPRECATED: Increment on non-alphanumeric string is deprecated in file: cacti-1.2.25/lib/html.php on line: 936
Offending line:
$page++;
Changing to "$page = (int)$page + 1;" looks less developer-y but resolves the deprecation.
Both can be experienced when going Console > Templates > Graph.
The text was updated successfully, but these errors were encountered:
ERROR PHP ERROR: Could not set timer: Invalid argument (22) in file: cacti-1.2.25/graph_templates.php on line: 34
Offending line:
ini_set('max_execution_time', '-1');
Changing value to 0 allows unlimited execution time and resolves the error.
ERROR PHP DEPRECATED: Increment on non-alphanumeric string is deprecated in file: cacti-1.2.25/lib/html.php on line: 936
Offending line:
$page++;
Changing to "$page = (int)$page + 1;" looks less developer-y but resolves the deprecation.
Both can be experienced when going Console > Templates > Graph.
The text was updated successfully, but these errors were encountered: