Click here to Skip to main content
15,881,687 members
Articles / Programming Languages / SQL

A Free Website Management System - Nukedit

Rate me:
Please Sign up or sign in to vote.
3.38/5 (25 votes)
9 Sep 2010CPOL3 min read 173.6K   728   93   26
Realtime page editing, simple, "on-the-fly" menu construction, modifiable permissions for users and groups, built-in search engine optimisation

Download Nukedit. Free Content ManagementDownload Nukedit

Introduction

Easy to Use

  • Simple, automatic menu construction
  • Easy to modify permissions for users and groups
  • WYSIWYG page editing with file and image library

Get Noticed!

  • Search engine friendly
  • Content is saved as static so Google will love it

Lightning Fast

  • Modern technologies to automatically cache pages

Open Source

  • Some CMSs cost a lot of money
  • Nukedit is free
  • Open Source ASP and database is included
  • Free for both Personal and commercial use

HelpInstallation Guide

ENSURE SCRIPT BLOCKING IS DISABLED IF YOU USE NORTON ANTI-VIRUS.

1. Internet Information Server - IIS

Unzip the “Nukedit” to your computer and open IIS. Nukedit must run as the DEFAULT WEB SITE.
Open IIS, right click "Default Web Site" and select "Home Directory" and browse for the location you unzipped Nukedit to.

Choose "Directory Security" and allow anonymous access.

Allow read and write access to the content and database folder.

If you are just developing locally, you may also need to right click the folder in Windows Explorer and grant everyone full control.

If running on your personal computer, the address must be http://localhost/.

2. Setup

Edit includes/setup.asp.
You should look at all the options and alter them to reflect your requirements. Most won't need changing.

3. Design

Create new graphics for your new website. The main ones being the image across the top and watermark. See “For Designers” for full information about designing a site.

4. Permissions

Using IIS, set anonymous access to the site and...

Database read and edit

/database/*.mdb

read, edit & delete

/content/*.* (plus all sub directories)

Script access will also be required throughout the site.

5. Login

Once the site is working, you'll need to log in as a power user to add new pages, etc.

username: you@server.com

password: 1

6. Create

Create new pages by right clicking the menu on the left. Click the "start menu" to add main menu items. Be sure to log on first.

Important Files and Description

includes/Setup.asp

Contains setup options for most of the site. See here first when setting up a new site.

includes/inc_main.asp

Does a lot of the work.
Includes dynamic JavaScript cache creation.

#includes all other required files.
Writes headers and footers.

includes/inc_dbfunctions.asp

Useful set of helper functions that do database SQL commands

includes/inc_FileUtilities.asp

Library of file system object functions

includes/inc_misc.asp

Some of the other ezyedit functions.
E.g. permission checking, format date and server side HTTP requests

utilities/mailgate.asp

Use as you would use a regular mailgate. This one pretties it up to form emails a bit better.

includes/sendmail.asp

Contains the following function:

function SendMail(fromname,fromemail,toemail,subject,body,htmlbody)

Be sure to set the mail server at the top of the file.

includes/searchcode.asp
utilities/search.asp

Pages that handle the site search capabilities.

errormsg/404b.asp

If your hosting company allows you to, set the default 404b.htm error message to:

errormsg/404b.asp and pages not found will be looked in the search page.
InplaceEditor/

Contains all files that allow inplace editing. Includes EDIT/SAVE buttons.

content/

Where the regular ASP pages are stored. These can all be edited.

content/cache/

The side menu is cached to files in here. One file for each user id.

content/skins/

Any sub folders in this folder will be selectable as a page theme or skin. Any images and style sheets in this folder need to be modified by a designer to suit your needs. See "For Designers" for more information.

Tips

  • There are lots of files, so use global searches to find the functions you are looking for until you become familiar with the code.
  • When changing settings for the side menu, you'll have to delete all /content/cache/*.* files for changes to take effect. Or just temporarily disable the menu cache in includes/setup.asp.
  • Read the file descriptions above to get you started with customisation.
  • If you have any problems, check the FAQ or Forums
    http://www.nukedit.com - Nukedit Content Management

Conclusion

Nukedit is a simple content management system that is suitable for managing and building a website. I hope you benefit from it and the source code.

Visit the Nukedit Free Content Management website for more information.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Australia Australia
From Brisbane, Australia.

Likes building stuff.

Comments and Discussions

 
GeneralCode Pin
najiulla1237-Dec-03 17:27
najiulla1237-Dec-03 17:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.