• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Panel redirect after 10.3 upgrade causing SSL warning

theywill

Basic Pleskian
Hi there,

--------------------------------------------------------------
PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

CentOS 5.6, latest updates, Plesk 10.3

PROBLEM DESCRIPTION AND STEPS TO REPRODUCE

After the upgrade, when I load the control panel URL (https://www.domainname.com:8443/), the browser is redirected to the hostname (https://hostname.domainname.net:8443/), before being redirected back to the original URL. This is causing an SSL warning, because the certificate does not belong to the hostname.

This is true, even if I use the final URL, https://www.domainname.com:8443/sso/ui

Previously, this did not occur, and it's obviously an issue because the panel no longer appears secure to end users.

ACTUAL RESULT

Redirection to host name, before redirecting back to the original URL.

EXPECTED RESULT

Loading of control panel with no redirection to hostname.

ANY ADDITIONAL INFORMATION

Change occurred after 10.2 to 10.3 upgrade.

--------------------------------------------------------------

Thanks for any ideas you have to resolve this.

James
 
Thank you. I have forwarded it to developers. Let's wait their answer.
 
Check the database.

SELECT * FROM misc WHERE param IN ('sso_relay', 'sso_server', 'sso_server_user_url');

Replace hostname.domainname.net with www.domainname.com in these of the three fields where required

UPDATE misc SET val = 'https://www.domainname.com:8443' WHERE param = 'sso_server_user_url;
 
Thanks for your help. Here's what I did.

# 1. shows us the db data for these parameters
/usr/bin/mysql -u admin -p`cat /etc/psa/.psa.shadow` --skip-column-names -e "SELECT * FROM misc WHERE param IN ('sso_relay', 'sso_server', 'sso_server_user_url');" psa

# 2. updates the db for these parameters - domain xxxxxx out
/usr/bin/mysql -u admin -p`cat /etc/psa/.psa.shadow` --skip-column-names -e "UPDATE misc SET val = 'https://www.xxxxxxxxxxxx.com:8443' WHERE param IN ('sso_relay', 'sso_server', 'sso_server_user_url');" psa

# 3. re-run the first command to see the changes.

When I re-ran the first query, I observed the changes were successful. However, I still see the redirect. To be sure, I tested the admin panel in four different browsers.

Is there another command that must be run to update PSA?

Thank you,
James
 
Is there a solution that will fix this problem on log-out too? When logging-out, the browser is redirected to the machine name too.
 
Back
Top