[BlueOnyx:24929] Login of phpMyAdmin on 5209R not working when using URL /phpmyadmin/signon
Andreas Ebertus
lists.aeb at cbxnet.de
Fri Apr 23 11:16:11 -05 2021
Hi,
we noticed that the login to phpMyAdmin is not working anymore when using this URL:
https://<servername>:81/phpmyadmin/signon
We are getting this error:
Fatal error: Call to a member function getWrapped() on a non-object in /usr/sausalito/ui/chorizo/ci/application/helpers/uifc_ng_helper.php on line 343
I found what seems to be a typo in /usr/sausalito/ui/chorizo/ci/application/modules/base/phpmyadmin/controllers/signon.php.
After this change the login works again:
--- /usr/sausalito/ui/chorizo/ci/application/modules/base/phpmyadmin/controllers/signon.php.orig 2021-04-20 12:50:17.256800373 +0200
+++ /usr/sausalito/ui/chorizo/ci/application/modules/base/phpmyadmin/controllers/signon.php 2021-04-20 12:50:52.418798971 +0200
@@ -98,7 +98,7 @@
'<IMG BORDER="0" WIDTH="720" HEIGHT="0" SRC="/libImage/spaceHolder.gif">' .
addTextField("PMA_user", "text", $db_username, "base-phpmyadmin", "required", "rw", $i18n) .
addTextField("PMA_password", "password", $db_pass, "base-phpmyadmin", "required", "rw", $i18n) .
- addTextField("hostname", "text", $db_host, "base-phpmyadmin", "required", "hidden", $i18n),
+ addTextField("hostname", "text", $db_host, "base-phpmyadmin", "required", "hidden", $i18n) .
"<input type=\"hidden\" name=\"" . $csrf['name'] . "\" value=\"" . $csrf['hash'] . "\" />\n",
addSaveButton($i18n),
$i18n,
So if this change doesn't break anything else, I would be happy to see it in base-phpmyadmin-ui ;-)
All the best,
Andreas
More information about the Blueonyx
mailing list