Let me 1st summerize steps I followed so far:
I copied the following DLL files to the bin folder of the Kooboo CMS:
Kooboo.CMS.Account.Persistence.SqlSever.dll
Kooboo.CMS.Content.Persistence.SQLServer.dll
Kooboo.Connect.Providers.SqlServer.dll
EntityFramework.dll
tried to removing
Kooboo.CMS.Account.dll
Kooboo.CMS.Content.dll
Kooboo.Connect.dll
But got error
Could not load file or assembly 'Kooboo.Connect, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
So didn't remove these files.
After that I run the SqL script to add CMS data tables to the database. Then I copied the SQLServer.config file with the following settings.
Quote:<SqlServerSettings xmlns="http://schemas.datacontract.org/2004/07/Kooboo.CMS.Content.Persistence.SqlServer" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Connections>
<ConnectionSetting>
<ConnectionString>Data Source=xxxxx;Initial Catalog=Book_Test;User ID=xxxx;Password=xxxx;</ConnectionString>
<Name>Sample</Name>
</ConnectionSetting>
</Connections>
<CreateDatabaseSetting></CreateDatabaseSetting>
<SharingDatabase>true</SharingDatabase>
<SharingDatabaseConnectionString>Data Source=xxxxx;Initial Catalog=Book_Test;User ID=xxxx;Password=xxxx;</SharingDatabaseConnectionString>
</SqlServerSettings>
I also add the also added the 2 connection strings in the main application config.
After this I restarted my web application. When I run the CMS app. , After I login and create new website and try to export the website or do anything related to database. It gives me
Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'book_test.Article'.
I think page information isn't getting added to the Database because there's no record of these, Am I missing something? Please let me know...
Regards,
Kaustubh Shukla