Welcome Guest, Not a member yet? Register   Sign In
FrameworkException Missing Extension
#1

I have just installed codeigniter 4 and I'm receiving the following error
PHP Code:
foreach ($requiredExtensions as $extension) {
            if (! extension_loaded($extension)) {
                $missingExtensions[] = $extension;
            }
        }
 
        if ($missingExtensions !== []) {
            throw FrameworkException::forMissingExtension(implode(', '$missingExtensions));
        }
    }
 
    /**
      * Initializes Kint
      */
    protected function initializeKint()

I have already enabled intl extension but it's still saying that it cannot find it. I have even restarted and done a full clean and install but till receiving this error 
Reply


Messages In This Thread
FrameworkException Missing Extension - by ramonhenry - 08-15-2022, 05:47 AM



Theme © iAndrew 2016 - Forum software by © MyBB