Codeigniter 4: Uploading files with move_uploaded_file
问题 I just started moving CodeIgniter 3 project to CodeIgniter 4. Everything works fine except file upload. I would like to keep the user uploaded files in /writable/uploads. Below is the code I use to move the uploaded file to desired location. $target_dir = '/writable/uploads/recordings/'; $target_file = $target_dir . basename($_FILES["gfile"]["name"]); $FileType = pathinfo($target_file,PATHINFO_EXTENSION); if($FileType != "mp3") { $vmuploadOk = 1; } else $vmuploadOk = 1; if ($vmuploadOk == 1)