Oops, that message was relevant for an earlier version, but not any longer. Only the first two options are valid. To manually configure web.config to point to SQL Server, open web.config in a text editor and set the three provider sections to point to SQL Server. They will look like this:
Code:
<dataProvider defaultProvider="SqlServerGalleryServerProProvider">
...
<membership defaultProvider="SqlMembershipProvider">
...
<roleManager enabled="true" cacheRolesInCookie="true" cookieProtection="Validation" defaultProvider="SqlRoleProvider">
Finally, update the connection string to point to your SQL Server:
Code:
<add name="SqlServerDbConnection" connectionString="server=(local);uid=;pwd=;Trusted_Connection=yes;database=YourDbName;Application Name=Gallery Server Pro" />
Roger Martin
Creator and Lead Developer of Gallery Server Pro