|
Modifying the Login Page to Use SSL |
Top Previous Next |
|
To use an SSL secure connection, modify your login page as follows:
You should change: * Http to Https * Standard Port (default 4961) to the SSL Port (default 4962)
For example: If you've used the predefined login page (as described in section C.(1) above)the link, from your web site, to the secure login page should appear as follows: <A HREF="https://127.0.0.1:4962">Click to login</A>
If you have embedded the login fields on one of your web pages (as described in section C.(2) above), modify the JavaScript used to post the login request as follows:
Original: Method="post" action="http://127.0.0.1:4961" Modified: Method="post" action="https://127.0.0.1:4962"
|