I'm using IIS 7, MVC 3 .NET 4.5 installed. I tried using the default application pools in the dropdown and creating a new one using .NET v4 with integrated mode.
Also, if I change 'server' & 'database' to 'data source' & 'initial catalog' then the same error appears but replacing server with initial catalog.
I'm not sure what is going on here. Has anyone experienced this before?
Keyword not supported: 'server'.
Hi all,
I'm trying to install my Umbraco website on my server but I keep receiving the following issue:
Keyword not supported: 'server'.
My connection string looks correct:
<connectionStrings>
<remove name="umbracoDbDSN" />
<add connectionString="server=****;database=Umbraco;User=****;Password=****" name="umbracoDbDSN" providerName="System.Data.SqlServerCe.4.0" />
</connectionStrings>
I'm using IIS 7, MVC 3 .NET 4.5 installed. I tried using the default application pools in the dropdown and creating a new one using .NET v4 with integrated mode.
Also, if I change 'server' & 'database' to 'data source' & 'initial catalog' then the same error appears but replacing server with initial catalog.
I'm not sure what is going on here. Has anyone experienced this before?
Any ideas?
Thanks,
Jon
Hi Jon,
Try to change server to 'Data Source'.
Database we can change to 'Initial Catalog'.
User to 'User ID'.
Thanks
I had to change providerName to : providerName="System.Data.SqlClient"
Working now :D
Great !
is working on a reply...