Reputation: 1
I have downloaded DNN from (https://github.com/dnnsoftware/Dnn.Platform/releases) Installation version and configured in my local machine by following all steps as they are given. I have given all permission (Read/Write/Modify) but at Installation time it gives Error see this errore http://prntscr.com/ogmkfi
I followed all steps before my last try then I do it well but this time I followed the same process but getting error
Upvotes: 0
Views: 46
Reputation: 1098
The account that runs the application pool for the website needs Modify permissions on the whole directory structure where the web site is installed. Let's assume you have created a website in IIS called dnndevme, and created an application pool with the same name, then the account name is "IIS AppPool\dnndevme".
Normally I do it this way:
Configure the connection string in the web.config file. If SQL Server is on the same machine, use
<add name="SiteSqlServer" connectionString="Data Source=MY_MACHINE_NAME[\INSTANCE];Initial Catalog=dnndevme;Integrated Security=True" providerName="System.Data.SqlClient" />
Otherwise use
<add name="SiteSqlServer" connectionString="Data Source=MY-SQL-SERVER-NAME[\INSTANCE];Initial Catalog=dnndevme;User ID=dnndevme;Password=mySEcrEtpaS$w0rd" providerName="System.Data.SqlClient" />
Now start the installation wizard by navigating to the site in your browser (the defined host name from above).
Upvotes: 1