• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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