Follow these steps to set up and run the DataVault project.
- XAMPP or WAMP installed on your local machine.
- MySQL database server running.
- A web browser for accessing the application.
-
Import the Database
- Locate the
datavault.sqlfile in the project folder. - Import the SQL file into your MySQL database:
- Open phpMyAdmin or your preferred database management tool.
- Create a new database (e.g.,
datavault). - Import the
datavault.sqlfile into the newly created database.
- Locate the
-
Update Database Configuration
- Open the
database.phpfile in the project directory. - Enter your database credentials:
// Database connection details $hostname = "localhost"; $username = "root"; $password = ""; $database = "datavault";
- Open the
-
Place Project Files
- Copy all files and folders excluding the
datavault.sqlfile into:xampp\htdocs(if using XAMPP), orwamp64\www(if using WAMP).
- Copy all files and folders excluding the
-
Start Your Server
- Ensure that your Apache and MySQL services are running in XAMPP or WAMP.
-
Access the Application
- Open a web browser and navigate to:
http://localhost/<your_project_folder>
- Open a web browser and navigate to:
-
Login Credentials
- Use the following credentials to log in:
- Username:
admin - Password:
admin123
- Username:
- Use the following credentials to log in:
- Secure login system
- User-friendly interface
- Data visualization features
- If the application does not load, verify that:
- The Apache and MySQL services are running.
- The project files are correctly placed in the
htdocsorwwwdirectory. - The database was successfully imported.
- The database credentials in
database.phpare correct.
- For further assistance, check the project logs or contact the development team.
Developed by Masroor Ejaz.