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:
application/config/database.php
Replace localhost, username, password, and database with live server credentials.
3 Update the base URL in:
application/config/config.php
Example:
$config['base_url'] = 'https://yourdomain.com/';
4. Import the MySQL database to the live server using phpMyAdmin.