AI-Apps Municipal Call Centre - Standalone PHP Admin Starter Deployment: 1. Upload this folder to your web server, e.g. /var/www/html/ai_apps_callcentre 2. Create a MySQL/MariaDB database named ai_callcentre. 3. Edit config.php with your database username and password. 4. Import install.sql into the database. 5. Create the first admin user manually after generating a password hash: php -r "echo password_hash('Admin@123', PASSWORD_DEFAULT).PHP_EOL;" 6. Insert admin user using the generated hash: INSERT INTO users (group_id, first_name, last_name, username, password_hash, status) SELECT id, 'System', 'Admin', 'admin', 'PASTE_HASH_HERE', 'active' FROM groups WHERE group_slug='admin'; 7. Login URL: /ai_apps_callcentre/login.php 8. Admin URL: /ai_apps_callcentre/admin/index.php Default theme: - Msunduzi green background: #006B3F - White menu font: #FFFFFF Notes: - Only admin group users can access /admin pages. - Logo and favicon uploads are managed in Admin > Theme Settings. - Keep /assets/uploads writable by the web server.