• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Direct login to phpmyadmin

AleksandarZ

New Pleskian
Hello,

Is there any way to login on phpmyadmin without logging on plesk panel, I tried with auth method signon, but it requires signonurl and I don't know what to put there. I also installed phpmyadmin beside plesk and it can't connect to mysql server. Please help.
 
Hi,

It is possible login to Sitebuilder or phpmyadmin directly with Plesk Panel v11.

Regarding to access to phpmyadmin you could write a php script (or any language) that redirects to target page (sent parameters login, password and etc) and put this script to target host. Link to this script should to work without any issues.

For example on target host (demoSbOrPhpMyAdmin.com) put php file and html file:
index.php

<?php

header("Location: index.html");
header("Referer: https://demoSbOrPhpMyAdmin.com:8443");

index.html

<html>
<body>
<form method="post" action="https://a10-52-78-135.qa.plesk.ru:8443/login_up.php3"
name="f1" id="form">

<input type="hidden" value="setup" name="passwd">
<input type="hidden" value="tr-TR" name="locale">
<input type="hidden" value="testp" name="login_name">
<input type="hidden"
value="https://a10-52-78-135.qa.plesk.ru:8443/smb/sitebuilder/redirect/id/119"
name="success_redirect_url">
<input type="submit" value="Click!" name="mysubmit">
</form>
<script>
document.getElementById('form').submit();
</script>
</body>
</html>

put link to 3rd party host:
<a "href='http://demoSbOrPhpMyAdmin.com/index.php'"> demo </a>
 
Regarding to access to phpmyadmin you could write a php script (or any language) that redirects to target page (sent parameters login, password and etc) and put this script to target host. Link to this script should to work without any issues. It is also possible to login directly to Web Presence Builder

For example on target host (demoSbOrPhpMyAdmin.com) put php file and html file:
index.php

<?php

header("Location: index.html");
header("Referer: https://demoSbOrPhpMyAdmin.com:8443");

index.html

<html>
<body>
<form method="post" action="https://a10-52-78-135.qa.plesk.ru:8443/login_up.php3"
name="f1" id="form">

<input type="hidden" value="setup" name="passwd">
<input type="hidden" value="tr-TR" name="locale">
<input type="hidden" value="testp" name="login_name">
<input type="hidden"
value="https://a10-52-78-135.qa.plesk.ru:8443/smb/sitebuilder/redirect/id/119"
name="success_redirect_url">
<input type="submit" value="Click!" name="mysubmit">
</form>
<script>
document.getElementById('form').submit();
</script>
</body>
</html>

put link to 3rd party host:
<a "href='http://demoSbOrPhpMyAdmin.com/index.php'"> demo </a>
 
  • Like
Reactions: Giu
reply

Regarding to access to phpmyadmin you could write a php script (or any language) that redirects to target page (sent parameters login, password and etc) and put this script to target host. Link to this script should to work without any issues. The same method is acceptable to login directly to Web Presence Builder.

For example on target host (demoSbOrPhpMyAdmin.com) put php file and html file:

<?php

header("Location: index.html");
header("Referer: https://demoSbOrPhpMyAdmin.com:8443");

index.html

<html>
<body>
<form method="post" action="https://a10-52-78-135.qa.plesk.ru:8443/login_up.php3"
name="f1" id="form">

<input type="hidden" value="setup" name="passwd">
<input type="hidden" value="tr-TR" name="locale">
<input type="hidden" value="testp" name="login_name">
<input type="hidden"
value="https://a10-52-78-135.qa.plesk.ru:8443/smb/sitebuilder/redirect/id/119"
name="success_redirect_url">
<input type="submit" value="Click!" name="mysubmit">
</form>
<script>
document.getElementById('form').submit();
</script>
</body>
</html>
 
Back
Top