Description
Download:
git clone https://github.com/codeigniter4/CodeIgniter4.git
File:
./system/CodeIgniter/CodeIgniter.php
Output:
Fatal error: Uncaught Error: Call to undefined function CodeIgniter\locale_set_default() in /var/www/CodeIgniter4/system/CodeIgniter.php:184
Stack trace:
#0 /var/www/CodeIgniter4/system/bootstrap.php(181): CodeIgniter\CodeIgniter->initialize()
#1 /var/www/CodeIgniter4/public/index.php(36): require('/var/www/CodeIg...')
#2 {main}
thrown in /var/www/CodeIgniter4/system/CodeIgniter.php on line 184
Fix:
/**
* Handles some basic app and environment setup.
*/
public function initialize()
{
// Set default locale on the server
// John REMOVED MISSING FUNCTION locale_set_default
// locale_set_default($this->config->defaultLocale ?? 'en');
Activity