CONFIGURING LIVE SERVER DEPLOYMENT

Configuring Live Server Deployment

Upload CodeIgniter Backend to Live Server
1. Use FTP or SSH to upload the CodeIgniter files to the live server (e.g., public_html directory).
2. Update the database settings in:
Copy code
application/config/database.php
Replace localhost, username, password, and database with live server credentials.
3 Update the base URL in:
Copy code
application/config/config.php
Example:
Copy code
$config['base_url'] = 'https://yourdomain.com/';
4. Import the MySQL database to the live server using phpMyAdmin.