sumber : https://forum.codeigniter.com/thread-77086.html
edit file php.ini
Auto-respone: if anyone is using xampp the quick way to fix this is open php.ini and uncomment:
extension=intl
------
Missing function:
// file: ./system/CodeIgniter/CodeIgniter.php
/**
* Handles some basic app and environment setup.
*/
public function initialize()
{
// Set default locale on the server
locale_set_default($this->config->defaultLocale ?? 'en');
edit menjadi sbb :
/**
* Handles some basic app and environment setup.
*/
public function initialize()
{
// Set default locale on the server
if (function_exists('locale_set_default')) :
locale_set_default($this->config->defaultLocale ?? 'en');
endif;
// Set default timezone on the ser