Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
This is now sorted. Line 50 of database.php in root -> application -> config should have read:
database.php
Correct: $db['default']['char_set'] = "utf8"
$db['default']['char_set'] = "utf8"
Incorrect: $db['default']['char_set'] = "UTF-8"
$db['default']['char_set'] = "UTF-8"
Something so simple! I hope that might help others.