Statistik Load TimeLimit auf 600 gesetzt

Default Parameter bei Statistik aktualisiert
This commit is contained in:
kindlm
2023-12-05 14:38:07 +01:00
parent fad475fb64
commit 32459ccff8
2 changed files with 24 additions and 5 deletions
+1 -1
View File
@@ -512,7 +512,7 @@ class statistik extends basis_db
$this->csv='';
$this->json=array();
$this->countRows=0;
set_time_limit(120);
set_time_limit(600);
if($this->sql!='')
{
+23 -4
View File
@@ -161,11 +161,30 @@ if(!$rechte->isBerechtigt('basis/statistik', null, 'suid'))
$statistik->preferences = <<<EOT
// Folgendes Objekt wird als "options"-Parameter an den Pivottable übergeben:
{
rows: [],
cols: [],
rendererName: "Table",
aggregatorName: "Count",
vals: []
rows: [],
vals: [],
showUI: true,
colOrder: "key_a_to_z",
rowOrder: "key_a_to_z",
menuLimit: 500,
exclusions: {},
inclusions: {},
rendererName: "Tabelle",
aggregatorName: "Anzahl",
inclusionsInfo: {},
hiddenAttributes: [],
derivedAttributes: {},
hiddenFromDragDrop: [],
autoSortUnusedAttrs: false,
aggregators: {},
unusedAttrsVertical: true,
hiddenFromAggregators: [],
sorters: {},
parseHTML: false,
hideTotals: false,
showLinecount: true,
showEmailButton: false
}
EOT;
}