ndCMS




Support This Project

SourceForge.net Logo

 

ndCMS Documentation  

Table of Contents


 

Requirements


Windows 2000/XP/2003
IIS 5 or above
.NET Framework 1.1

 

Installation


  1. Unzip into your root folder.
  2. Either wwwroot or a defined virtual root.
  3. Make sure the .NET User has permissions at the location where you are dumping the files to.
  4. Modify Configuration.
  5. Login and start building user accounts, assign roles and create pages!

 

Configuration


Under Construction.

The main configuration settings are located in the WEB.CONFIG file; and all the database connections are decalred in the DB_CONFIG.XML file.

To use Access (the default), make the following changes:

IN WEB.CONFIG

<appSettings>
<add key="DictionaryFolder" value="common/dic"/>

<add key="dbConfig" value="c://inetpub/wwwroot/ndcms/db_config.xml"/>

<!-- <add key="dbType" value="MSSQL" />
<add key="dbDate" value="getDate()" />
--
>

<add key="dbType" value="MSACCESS" />
<add key="dbDate" value="now()" />

</appSettings>

IN DB_CONFIG.XML SET THE LOCATION OF YOUR ACCESS DATABASE

<DataSource DataSourceId="MSACCESS" DataProviderId="OLEDB" ParamPrefix="@" DefConnStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c://inetpub/wwwroot/ndCMS/common/db/nd_database.mdb" Description="My Description" />

To use SQL, make the following changes:

IN WEB.CONFIG

<appSettings>
<add key="DictionaryFolder" value="common/dic"/>

<add key="dbConfig" value="c://inetpub/wwwroot/ndcms/db_config.xml"/>

<add key="dbType" value="MSSQL" />
<add key="dbDate" value="getDate()" />

<!-- <add key="dbType" value="MSACCESS" />
<add key="dbDate" value="now()" />
--
>

</appSettings>

IN DB_CONFIG.XML SET THE CONNECTION STRING FOR YOUR SQL DATABASE

<DataSource DataSourceId="MSSQL" DataProviderId="SQLSERVER" ParamPrefix="@" DefConnStr="server=localhost;Trusted_Connection=true;database=NDCMS" Description="My Description" />

To use any other databases look up the documentation on MaxVirtual.Data Database wrapper. 

 

Login


Use the following information to login for the first time:

username: admin
password: admin 


Copyright (C) Timothy Bell, 2005. All rights reserved.
This product is subject to the terms and conditions detailed in the license agreement.