...
Choose Lynicon.Identity package. This automatically performs all the steps in Manual Installation and Generic ASP.Net Identity.
Set the Connection String to the Database
...
Code Block | ||
---|---|---|
| ||
<connectionStrings> <add name="DefaultConnection" connectionString="..." providerName="System.Data.SqlClient" /> <!-- Add lynicon database connection string here, or delete if no database being used --> <add name="LyniconContent" connectionString="..." /> </connectionStrings> |
Warning |
---|
If you want to use the default connection string to a local .mdf in App_Data set up by VS scaffolding, you will need to modify it so that:
|
Build the Site
Run a build on the site as the commands you are about to run will load the current site's compiled code in order to enable them to execute, and they won't work without this step.
Build the Database
If you used the default connection string from the project scaffolding which points to an .mdf file in App_Data, you will need to ensure the database is created before running the initialization commands.
These initialize and activate Entity Framework Migrations.
- Enable-Migrations: this sets up the project for migrations
- Add-Migration -Name Init: this creates the first migration to create the database with ASP.Net Identity tables set up
- Update-Database: this runs the migration
Run the Initialization Commands
Go to the Package Manager console. Lynicon has installed Powershell commands to set up the CMS. The commands to run (in this order) are shown in the image. They are:
- Initialize-LyniconProject: this inserts commands into the Global.asax.cs to run lynicon initialization, and into FilterConfig.cs to set up Lynicon's MVC script manager
- Initialize-LyniconDatabase: this builds the core database tables needed for Lynicon
- Initialize-LyniconAdmin: this creates an admin user for Lynicon with all the admin roles, allowing you to access the CMS editor and back end. You have to supply a Password parameter ensuring that the admin password is never set to a default value. The . Ensure you use single quotes for the password to avoid issues with special characters. The admin user's username is 'administrator' and the default email is 'admin@lyniconadmin@lynicon-user.com'
Warning |
---|
Ensure you only have one instance of Visual Studio running when you run these commands or they may fail |
First Run
If you now run the site and log in as the administrator you will be able to see the Lynicon pages as described in the User Manual. Lynicon is now ready to be used for CMS functions.
...