0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[FuelPHP]画像をアップロードするときに便利なUploadのErrorExceptionエラー解消方法

Last updated at Posted at 2015-10-13

はじめに

Uploadクラスを使用して速攻エラーが出たので、メモを残しておきます。
みなさんもいざUploadクラスを使用するときにエラーが出た場合に参考にしてください。

こんな感じのソース

$config = array(
		'randomize' => true,
		'ext_whitelist' => array('img', 'jpg', 'jpeg', 'gif', 'png'),
		);
Upload::process($config);

if(Upload::is_valid()){
	// save系の処理
}
else{
	// error		
}

エラー内容

error.PNG

ErrorException [ Fatal Error ]:
Call to undefined function Fuel\Upload\finfo_open()

解決方法

finfo_open()が無効になってるときのエラーのようです。

1.php.iniを開いく
2.;extension=php_fileinfo.dll を見つける(994行目付近)
3.extension=php_fileinfo.dll コメントアウトを外す
4.Apacheの再起動 ←ここ重要だいたい忘れる

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?