aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/mayor-naplo/www/policy
diff options
context:
space:
mode:
Diffstat (limited to 'mayor-orig/mayor-naplo/www/policy')
-rw-r--r--mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug-pre.php22
-rw-r--r--mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug.php11
2 files changed, 33 insertions, 0 deletions
diff --git a/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug-pre.php b/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug-pre.php
new file mode 100644
index 00000000..de0924bd
--- /dev/null
+++ b/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug-pre.php
@@ -0,0 +1,22 @@
+<?php
+
+ if (!__NAPLOADMIN) {
+ $_SESSION['alert'][] = 'page:insufficient_access';
+ } else {
+
+ $ADAT['debug_result']['mayor rev'] = _MAYORREV;
+ $ADAT['debug_result']['apache version'] = @apache_get_version();
+ $ADAT['debug_result']['php version'] = @phpversion();
+// $ADAT['debug_result']['php info'] = get_loaded_extensions();
+ $ADAT['debug_result']['sql_server']['sql_mode']=db_query('SHOW GLOBAL variables like "%sql_%"',array('modul'=>'naplo','fb'=>'debug',result=>'indexed'));
+ $ADAT['debug_result']['sql_server']['sql_version']=db_query('SELECT VERSION()',array('modul'=>'naplo','fb'=>'debug',result=>'indexed'));
+ $ADAT['debug_result']['tex_cli'] = @shell_exec('tex --version');
+ $ADAT['debug_result']['xetex_cli'] = @shell_exec('xetex --version');
+ $ADAT['debug_result']['constants'] = @get_defined_constants();
+
+ @ini_set('xdebug.var_display_max_depth', '3');
+ @ini_set('xdebug.var_display_max_children', '4096');
+ @ini_set('xdebug.var_display_max_data', '4096');
+
+ }
+?> \ No newline at end of file
diff --git a/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug.php b/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug.php
new file mode 100644
index 00000000..f20c3e5f
--- /dev/null
+++ b/mayor-orig/mayor-naplo/www/policy/private/naplo/admin/debug.php
@@ -0,0 +1,11 @@
+<?php
+global $ADAT;
+
+ if (is_array($ADAT)) {
+ foreach ($ADAT['debug_result'] as $key => $value) {
+ echo '<h1>'.$key.'</h1>';
+ dump($value);
+ }
+ }
+
+?> \ No newline at end of file