• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Custom SSO

A

amiles248

Guest
I was wondering if it is possible to create my own login.aspx page and post the username and password over to the sitebuilder login.aspx page.

If this is possible can you please provide a code sample. I already tried a basic form with TextBoxUserName and TextBoxPassword, that doesn't work.

Thanks
 
It looks like this can be done. I found the following in the
"Integration API Developer's Guide" for sitebuilder:

If dealing with Sitebuilder for Unix, use the URLs in the following formats:

To log in to the control panel as administrator:
http://<sb-example-host.com>/external_login.php?Login=admin&Password=admin

To log in to the wizard as site owner:
http://<sb-example-host.com>/external_login.php?Login=siteowner&Password=siteowner

To log in to the control panel as site owner:
http://<sb-example-host.com>/external_login.php?Login=siteowner&Password=siteowner&ShowAdmin=true

To login to the control panel with a specific language and skin:
http://<sb-example-host.com>/external_login.php?Login=admin&Password=admin&Skin=AquaCompact&&Language=de-DE

To log in as site owner directly to the page of editing a particular site (specified by its ID):
http://<sb-example-host.com>/external_login.php?Login=siteowner&Password=siteowner&SiteID=b2e11f743e10475dcaa60f81b271caaa


If dealing with Sitebuilder for Windows, use the URLs in the following formats:

To log in to the control panel as administrator:
http://<sb-example-host.com>/ExternalLogin.ashx?Login=admin&Password=admin

To log in to the wizard as site owner:
http://<sb-example-host.com>/ExternalLogin.ashx?Login=siteowner&Password=siteowner

To log in to the control panel as site owner:
http://<sb-example-host.com>/ExternalLogin.ashx?Login=siteowner&Password=siteowner&ShowAdmin=true

To login to the control panel with a specific language and skin:
http://<sb-example-host.com>/ExternalLogin.ashx?Login=admin&Password=admin&Skin=AquaCompact&&Language=de-DE

To log in as site owner directly to the page of editing a particular site (specified by its ID):
http://<sb-example-host.com>/ExternalLogin.ashx?Login=siteowner&Password=siteowner&SiteID=b2e11f743e10475dcaa60f81b271caaa
 
Back
Top