This is a full stack web application that helps users create, manage, and modify content on a website without the need for specialized technical knowledge. It has following features:
- User roles (Admin, subscriber)
- Post blogs, comments on web application
- Personalized dashboard for admin and subscriber
- Statistics information display of useful data for admin
- Admin can add, remove, edit the posts, users, comments, posts categories from admin dashboard.
- User authentication.
- xampp
- git
-
Go to directory where
xamppis installed. -
Go to
htdocsdirectory -
Git clone the project using following command.
git clone git@github.com:naveen-ku/cms.git
-
Open the
cmsorContent-Management-Systemin any project editor to start working.
- Start xampp server
- Create database in MySQL or import the
cms.sqlfile in database for premade database.
- Create file with name
db_cred.phpin root folder of repository. - Write code as follows in
db_cred.php:
<?php
$db['db_host'] = "your_host_name"; // localhost
$db['db_user'] = "your_user_name"; // root
$db['db_name'] = "your_db_name"; // eg: cms
$db['db_pass'] = "your_db_pass"; // eg: naveen@123
>?- Start xampp control panel and start
ApacheandMysqlserver. - Go to browser and enter url
localhost/cmsorlocalhost/Content-Management-System












