[SOLVED]SESSION variables where to find?

Hello,
does anyone know where to find and show the array of the session-variables of the scriptcase-array?

In V 8.x it was possible to show all the variables and so to find e.g.
Now in V9. I don’t find the any more. The view->season variables one shows the new to define form.

Especially the code in the initial application_inint-event (aiming to disable the mobile version in total, worked in V8.x):
$_SESSION[‘scriptcase’][‘device_mobile’]=false;
$_SESSION[‘scriptcase’][‘display_mobile’]=false;

runs to an error in mobile version:
“Ajax parameters are not valid”

I assume, the session-variables do not exist, but how to check?

Or does anyone know the “real reason” for that mistake?

Thx for help.

Why not dump it yourself in an application?
Embed some Javascript like
<script>
alert(<?= var_dump($_SESSION) ?>);
</script>

Problem solved as I increased the max_inout_vars to 10.000 in php.ini

Where found at localhost php.ini, I have the same problem. Thank

He podido encontrar la var max_input_vars y la tenia a 10000 pero sigo con el mismo problema.
I could find the var max_input_vars and had it at 10000 but I still have the same problem.