All day i've been trying to install Umbraco, but it keeps returning SQL errors.
My SQL knowledge is pretty narrow, but still i don't understand why i should get an error saying it cannot locate the SQL server and/or instance while i have selected the option to install SQL Server + create database.
So the installer installs SQL and a database but one or two screens further it cannot find these...
Is the standard .\sqlexpress path really correct? I tried changing this, but without any progress.
I am installing on a VM with full admin rights, so i don't really see the problem...
What SQL have you got installed on your machine? Is it SQL Express or fully-fledged SQL Server? I've had this problem before and struggled. When you install SQL on your computer, it is given an instance name, this is so that you can have multiple instances of SQL running on the same computer (different versions etc.).
If you have SQL Server then try changing the .\sqlexpress to a single .
SQL issue on install
All day i've been trying to install Umbraco, but it keeps returning SQL errors.
My SQL knowledge is pretty narrow, but still i don't understand why i should get an error saying it cannot locate the SQL server and/or instance while i have selected the option to install SQL Server + create database.
So the installer installs SQL and a database but one or two screens further it cannot find these...
Is the standard .\sqlexpress path really correct? I tried changing this, but without any progress.
I am installing on a VM with full admin rights, so i don't really see the problem...
There may be number of reasons, for me editing the web.config manually as below worked!
<add key="umbracoDbDSN" value="server=adin-pc\SQLEXPRESS;database=MYDB;user id=test;password=test" />
What SQL have you got installed on your machine? Is it SQL Express or fully-fledged SQL Server? I've had this problem before and struggled. When you install SQL on your computer, it is given an instance name, this is so that you can have multiple instances of SQL running on the same computer (different versions etc.).
If you have SQL Server then try changing the .\sqlexpress to a single .
is working on a reply...