Pre-Requisites
- Microsoft SQL Server 2000 or higher. SQL Server Express edition with SQL Server Express Management studio can be freely downloaded from Microsoft Website.
- Source code compilation: Visual Web Developer 2008 or Visual Studio 2008 is required.
Download
Database Setup
- Download Database.JMDCMS.3.0.0.9.Alpha.rar
- All the database objects in JMDCMS has JMD_ prefix. So theoratically you can use your existing database to run JMDCMS Or you can simply create a new database and extract the script DDL_3.0.0.8.Alpha.rar and run the extracted file against your database. The user must have dbo rights. This script will create all the necessary objects. When you run the script first time, you may see some error messages, don't worry about them, just run the script again, you should not see any error messages. Contact us, If you still see any error message with detailed error message.
Site Initialization
- It is very simple to initialize a new web site in the database. Follow the given below example:
For Domain:
Execute JMD_SITE_CREATE 'jmdcms.com', 'admin@jmdcms.com'
- OR -
For SubDomain: :
Execute JMD_SITE_CREATE 'subdomain.jmdcms.com', 'admin@jmdcms.com'
- OR -
For Virtual Directory http://localhost/JMDCMS:
Execute JMD_SITE_CREATE 'JMDCMS', 'admin@jmdcms.com'
Run the above script on your database. Replace jmdcms.com with your website name before running. It can be a Domain, subdomain or virtual directory.
Note: jmdcms.com and www.jmdcms.com are treated as seperate websites by jmdcms engine. Most often they should be the same website. You can simply create the site ALIAS by running the following example script:
Execute JMD_SITE_ALIAS 'jmdcms.com', 'www.jmdcms.com'
Replace jmdcms.com and www.jmdcms.com with your website name before running the sctipt.
Web.Config
- Open web.config file with notepad or your favourite editor. Change connection string to match your SQL Server connection information. The user must have dbo rights for the database.
Deploy
- Create a website and upload the binary code to the home directory of your website.
- You should be able to browse your website now:)
- Default admin user/password is admin/password. You should change this immediatly. You will see the admin link on top of your page once you are logged in with above admin/password credentials.
Thanks
Your valuable feedback or suggestions are most welcome.
- You can send email to admin@jmdcms.com
- You can discuss or post your proposed changes at codeplex website.