1.
安装帮助:
首先下载 Microsoft Web Platform Installer
选中Umbraco安装就好了。
问题:
唯一的问题如何就是设置SQL SA的密码,并且可以登录。
我装的SQL 2008 Express
首先要安装升级SQL Server Management Studio ----( 在我的网摘中有步骤。)
然后设置SA密码,Enable SA account, 将window authentication 方式改成混合模式。
-----
1. Search this Registry Key (regedit.exe):
“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQLServer”
2. Change the “LoginMode” property to 2
3. Go to a Command Line (cmd.exe) and follow this commands:
1: sqlcmd -E -S .\SQLEXPRESS (will login with windows authentication mode)
2: 1) ALTER LOGIN sa WITH PASSWORD = '<new_password>'
3: 2) GO
4: 1) ALTER LOGIN sa ENABLE
5: 2) GO
4. Go to SQL Server Configuration Manager (Just type “SQL Configuration Manager” on Windows Vista/7 search program box.
5. On “SQL Server Services” select SQL Server(SQLEXPRESS) and Restart it.
-----