-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Guide
Vishal Pawar edited this page Mar 20, 2026
·
1 revision
Follow these steps to set up the EduManage Course Management System in your local development environment.
Before you begin, ensure you have the following installed:
- XAMPP / WAMP / LAMP: A local server environment with at least PHP 8.1.
- Git: (Optional) For cloning the repository.
- Web Browser: Modern version of Chrome, Firefox, or Edge.
Copy the project folder to your server's root directory:
-
XAMPP:
C:\xampp\htdocs\CMS -
WAMP:
C:\wamp\www\CMS
- Open phpMyAdmin (
http://localhost/phpmyadmin). - Create a new database named
cms_db. - Select the
cms_dbdatabase and click the Import tab. - Choose the
config/cms_db.sqlfile from the project folder and click Import.
Open config/db.php and verify the settings:
define('DB_HOST', 'localhost');
define('DB_NAME', 'cms_db');
define('DB_USER', 'root'); // Default XAMPP user
define('DB_PASS', ''); // Default XAMPP password is empty- Start Apache and MySQL services in your XAMPP Control Panel.
- Open your browser and navigate to
http://localhost/CMS.
Use these credentials to explore the different dashboards:
| Role | Password | |
|---|---|---|
| Administrator | admin@cms.com |
admin_pass_2026 |
| Instructor | vikram@cms.com |
instructor123 |
| Student | alice@cms.com |
student123 |
-
Database Connection Error: Double-check
config/db.phpand ensure MySQL is running. - CSS Not Loading: Ensure your browser has access to the internet (Tailwind is loaded via CDN for this version).
- Session Issues: Ensure your browser accepts cookies.
Β© 2026 EduManage CMS | Premium Course Management Platform
Maintained by Vishal Pawar