Chào các bác, Minh làm chức năng upload file trong MVC - Codeigniter trên Sublim-Text3, mặc dù đã để dung lượng >500000000 nhưng các file trên 2M thì không upload vào được. Minh tìm trên mạng thấy hướng dẫn chỉnh file .htaccess nhưng không được. Vậy có cách nào khắc phục tình trạng này để mình upload được file dung lượng lớn hơn không ạ?
Cảm ơn các bác nhiều!
Dưới đây là dòng code:
if ($IdLST1 != null && $Ho1 != null && $NgaySinh1 != null && $Phone1 != null && $Email1 != null && $Van1 != null )
{
$KiemtraKhach1 = $KiemtraKhach1 + 1;
echo '<br> chuyển khách 1';
echo '<br>';
$target_dir = "VanKhach/DaiLy1/";
$target_file = $target_dir . basename($_FILES["Van1"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["Van1"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, File trùng tên với file đã tải trước đó.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["Van1"]["size"] > 500000000) {
echo "Sorry, Dung lượng file quá lớn.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "rar" && $imageFileType != "zip" && $imageFileType != "jpg"&& $imageFileType != "zip") {
echo "Sorry, chỉ nhận file đã được nén lại.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, Tải file không thành công.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["Van1"]["tmp_name"], $target_file))
{
$Van1 = base_url()."VanKhach/DaiLy1/".basename( $_FILES["Van1"]["name"]);
} else {
echo "Sorry, Có lỗi khi upload 1.";
}
}
$Khach1 = array
(
'IdDaily' => $IdDaily,
'LoaiSinhtrac' => $IdLST1,
'Ho' => $Ho1,
'Ten'=> $Ten1,
'NgaySinh'=>$NgaySinh1,
'Phone'=>$Phone1,
'Email'=>$Email1,
'NguoiBT'=>$NguoiBT1,
'Vantay'=>$Van1,
'GuivanDate' =>$CreateDate,
'NguoiguivanId'=>$IdDaily,
'CreateDate'=>$CreateDate,
'IdCreater'=>$IdDaily,
);
$this->load->model('KhachThem_M');
$KQ = $this->KhachThem_M->Adkhach($Khach1);
}