ASPX templates
Version 5.x > ASPX templates > how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password. View modes: 
User avatar
Member
Member
hkusa-vip.qq - 8/13/2010 7:49:41 AM
   
how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password. ?

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 8/13/2010 8:06:59 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
Hello,

Could you please describe in more detail, what do you wantt to accomplish?

Best regards,
Boris Pocatko

User avatar
Member
Member
hkusa-vip.qq - 8/13/2010 8:13:03 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
I want to delete this registry address prompt link, if everyone can see this, I think this is dangerous, unsafe, because the registry entry just want their site to know! Do not open

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 8/13/2010 8:26:16 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
Hello,

I am still confussed on what you are tryinig to accomplish. Do you want to change the Sign on form, or its location? Do you want to create a password for the administrator? Do you want to change the appearence of the logon form? Do you want to delete that account?

Best regards,
Boris Pocatko

User avatar
Member
Member
hkusa-vip.qq - 8/13/2010 9:58:04 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
i want del:Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.

User avatar
Member
Member
hkusa-vip.qq - 8/13/2010 11:16:48 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
I want remove from the Homepage Tips

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 8/16/2010 2:01:43 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
Hello,

You can delete this tip by entering the CMSDesk and deleting the txtTrialInfo webpart from the masterpage (rootpage) of your site in the Design tab. For more information please see the image below:

User image

Best regards,
Boris Pocatko

User avatar
Member
Member
hkusa-vip.qq - 8/13/2010 12:10:30 PM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
and how can change this login link:CMSPages/logon.aspx?ReturnUrl=~/cmssitemanager/default.aspx&username=administrator

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 8/16/2010 2:04:18 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
Hello,

Could you please describe youre requirement in more detail? How do you want to change this URL? What should be your new URL?

Best regards,
Boris Pocatko

User avatar
Member
Member
hkusa-vip.qq - 8/16/2010 7:03:23 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
i want to change to www.xx.com/master/index.aspx

User avatar
Kentico Developer
Kentico Developer
kentico_ivanat - 8/17/2010 4:34:55 AM
   
RE:how to Change Sign in to CMS Desk. Sign in to CMS Site Manager. The default account is administrator with blank password.
Hi,

1. Could you please create ~/master directory in your project file system?
2. Could you please copy ~/CMSPages/login.aspx and ~/CMSPages/login.aspx.cs to ~/master directory and rename them to index.aspx and index.aspx.cs?
3. Do not forget to change CodeFile="login.aspx.cs" to CodeFile="index.aspx.cs" in index.aspx file.
4. In index.aspx.cs file replace following line

bool splashScreenEnabled = false;


with

bool splashScreenEnabled = true;

5. Add following code to ~/AppCode/Global.aspx.cs file (at the end of public void Application_BeginRequest(object sender, EventArgs e) method)
if ((UrlHelper.CurrentURL).ToLower().Contains("/cmspages/logon.aspx")) 
{
string url = UrlHelper.GetApplicationPath() + "/master/index.aspx?returnurl=" + QueryHelper.GetString("returnurl", string.Empty).ToLower();

UrlHelper.Redirect(url);
}

After these steps your CMS and Site manager login page will be www.xx.yy/master/index.aspx.

Best regards,
Ivana Tomanickova