Run a downloaded laravel project on the local computer

I am trying to install a LaravelFramework project on my local computer.

error

Please help me.

+4
source share
2 answers

From PHP.net :

Windows users must include the associated dll php_fileinfo.dll file in php.ini to enable this extension.

Check the php.ini file to make sure the .dll file is listed. The line probably is and looks like ;extension=php_fileinfo.dll, so just delete it ;.

+7
source

; before; extension = php_fileinfo.dll, ; . php.ini, php.ini .

+2

All Articles