I accidentaly found,that there are some errors in code.
in the start of config.php, i just inserted
var_dump($_SESSION);
and got this response
https://pastebin.com/raw/sMWc60sS
i've found, that /libraries/common.inc.php, 553 line, the `$default_server` doesnt exist at all, as it's local variable, while it should be (in my opinion) the global variable.
Same applied to line before that, as instead of $cfg variable, i think, there should be $GLOBALS['cfg'] , as $cfg seems emply local variable there.
On 02-Mar-18 2:18 PM, Selno Meria via Developers wrote:
I accidentaly found,that there are some errors in code.
in the start of config.php, i just inserted
var_dump($_SESSION);
and got this response
https://pastebin.com/raw/sMWc60sS
i've found, that /libraries/common.inc.php, 553 line, the `$default_server` doesnt exist at all, as it's local variable, while it should be (in my opinion) the global variable.
Developers mailing list Developers@phpmyadmin.net https://lists.phpmyadmin.net/mailman/listinfo/developers
Mainly, the problem happens when phpMyAdmin's "index.php" is being included in external application as a part.
On 02-Mar-18 2:18 PM, Selno Meria via Developers wrote:
I accidentaly found,that there are some errors in code.
in the start of config.php, i just inserted
var_dump($_SESSION);
and got this response
https://pastebin.com/raw/sMWc60sS
i've found, that /libraries/common.inc.php, 553 line, the `$default_server` doesnt exist at all, as it's local variable, while it should be (in my opinion) the global variable.
Developers mailing list Developers@phpmyadmin.net https://lists.phpmyadmin.net/mailman/listinfo/developers
Hi
On Fri, 2018-03-02 at 14:56 +0400, Selno Meria via Developers wrote:
Mainly, the problem happens when phpMyAdmin's "index.php" is being included in external application as a part.
This was never supported and will probably break in many other ways as well.