"PHP Fileinfo extension must be installed/enabled to use Intervention Image." 错误
"PHP Fileinfo extension must be installed/enabled to use Intervention Image." error
我在尝试 Laravel 示例时遇到此错误 "PHP Fileinfo extension must be installed/enabled to use Intervention Image."
:
Route::get('/', function()
{
$img = Image::make('foo.jpg')->resize(300, 200);
return $img->response('jpg');
});
我在 C:\MAMP\bin\php\php7.1.5
中的 php.ini 文件中取消了对 extension=php_fileinfo.dll
的注释,但这不起作用。这样做后我重新启动了我的 PC 和我的 MAMP。我自己托管我的网站。
您编辑了错误的 ini 文件。
检查 phpinfo()
的已加载 ini 文件部分。
UPDATE you edited an ini in the bin
folder and not the conf
. Editing the one in conf should fix your issue.
我在尝试 Laravel 示例时遇到此错误 "PHP Fileinfo extension must be installed/enabled to use Intervention Image."
:
Route::get('/', function()
{
$img = Image::make('foo.jpg')->resize(300, 200);
return $img->response('jpg');
});
我在 C:\MAMP\bin\php\php7.1.5
中的 php.ini 文件中取消了对 extension=php_fileinfo.dll
的注释,但这不起作用。这样做后我重新启动了我的 PC 和我的 MAMP。我自己托管我的网站。
您编辑了错误的 ini 文件。
检查 phpinfo()
的已加载 ini 文件部分。
UPDATE you edited an ini in the
bin
folder and not theconf
. Editing the one in conf should fix your issue.