|
|
|
Upload File ที่มีขนาด70กว่าMB 2ไฟล์ พร้อมกัน (ใน Localhost ครับ) ไม่สามารถ Upload ได้ครับ |
|
|
|
|
|
|
|
ผมทําหน้าอัพโหลดไฟล์ โดยไฟล์ที่อัพโหลด จะมีประมาณ 70กว่าเมก แต่จะต้องอัพพร้อมกัน โดยผมได้ปรับค่า PHP.ini Upload max 750M แล้วครับพร้อมRestart Apache แล้วมันยังไม่สามารถอัพโหลดได้มันจะวิ่งไปแจ้งว่า Not Completeครับ
โค๊ด
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
include'../../core/connect/connection.php';
?>
<h1>ระบบจัดการ:ดาวโหลดไฟล์</h1>
<?
if(isset($_POST['dl_title']) && isset($_POST['dl_desc']) && isset($_POST['dl_detail']) && isset($_POST['dl_type'])){
$dl_title = $_POST['dl_title'];
$dl_desc = $_POST['dl_desc'];
$dl_detail = $_POST['dl_detail'];
$dl_type = $_POST['dl_type'];
$dl_datetime = date('Y-m-d H:i:s');
if( move_uploaded_file($_FILES["dl_file_xp"]["tmp_name"],"../../file/".$_FILES["dl_file_xp"]["name"]) &&
move_uploaded_file($_FILES["dl_file_7"]["tmp_name"],"../../file/".$_FILES["dl_file_7"]["name"])){
echo "Add Complete<br>";
$up_sql = "INSERT INTO $tb_download ";
$up_sql .="(dl_title,dl_desc,dl_detail,dl_file_xp,dl_file_7,dl_type,dl_datetime) VALUES ('$dl_title','$dl_desc','$dl_detail','".$_FILES["dl_file_xp"]["name"]."','".$_FILES["dl_file_7"]["name"]."','$dl_type','$dl_datetime')";
$up_query = mysql_query($up_sql) or die (mysql_error());
}
}else{
echo '<script language="javascript">
alert("Not Complete");
window.location="admin/download/add.php";
</script>';
}
?>
<a href="index.php">View files</a>
Tag : PHP
|
|
|
|
|
|
Date :
2013-03-09 10:44:13 |
By :
kenghockey |
View :
736 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องปรับ post_max_size ด้วยครับ
|
|
|
|
|
Date :
2013-03-09 10:48:57 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ post_max_size ไม่พอครับ
แล้วมีวิธีที่จะอัพโดยที่อยู่บนHostไหมครับถ้าไม่ใช่ Server แบบ VPS หรือต้องอัพผ่าน FTPอย่างเดียวครับ
|
|
|
|
|
Date :
2013-03-09 10:51:27 |
By :
kenghockey |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|