• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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