|
|
|
ช่วยแก้ให้หน่อยครับ อัพโหลดไฟล์ภาษาไทย ปล.โค้ดไม่ได้เขียนเอง ดูเขามาอีกทีหนึ่ง |
|
|
|
|
|
|
|
1.ไฟล์ที่จะอัพโหลด
2.อัพโลดขึ้นฐานข้อมูล
2.1โค้ดฟอร์มอัพโหลด
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<title>Admin</title>
<link rel="shortcut icon" href="images/hospital.png"/>
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<center>
<body>
<div><a href="page_admin.php"><img src='images/manage/1440760696_home.png' width='40px' height='40px' style="float: right" /></a></div>
<br/><br/><br/>
<form name="form1" id="form1" action="manage_upload_add.php" method="post" enctype="multipart/form-data">
<p>File1:
<input name="file[]" type="file" id="file[]" />
</p>
<p>File2 :
<input name="file[]" type="file" id="file[]" />
</p>
<p>File3 :
<input name="file[]" type="file" id="file[]" />
</p>
<p>File4 :
<input name="file[]" type="file" id="file[]" />
</p>
<p>
<input type="submit" name="Submit" value="Upload" />
</p>
</form>
</body>
</center>
2.2.โค้ดอัพโหลด
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<?php
include "class.resizepic.php";
$db = new mysqli("localhost", "root", "123456", "dbboard");
if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
mysql_query("SET NAMES UTF8");
if(isset($_POST['Submit'] ))
{
$num_file = count($_FILES['file']['name']);
$select = false;
$count = 0;
for($i = 0; $i < $num_file ; $i++)
{
if($_FILES['file']['error'][$i] != 0)
{
$count++;
continue;
}
if($_FILES['file']['name'][$i] != "")
{
$Filename = $_FILES['file']['name'][$i];
$type = $_FILES['file']['type'][$i];
// .gif, .png, .jpg, .zip, .docx, .pdf, .doc, .swf, .rar
if ( $type == "image/gif") {$pic_type = 'GIF'; }
else if ($type == "image/png") {$pic_type = 'PNG'; }
else if (($type == "image/jpg") or ($type=="image/jpeg") or ($type == "image/pjpeg")) {$pic_type = 'JPG'; }
else if ($type == "application/octet-stream") {$pic_type = false;}
else if ($type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") {$pic_type = false;}
else if ($type == "application/pdf") {$pic_type = false;}
else if ($type == "application/msword") {$pic_type = false;}
else if ($type == "application/x-shockwave-flash") {$pic_type = false;}
else if ($type == "application/octet-stream") {$pic_type = false;}
if(move_uploaded_file($_FILES['file']['tmp_name'][$i], 'fileUpload/'.$Filename)){
if($pic_type){
$original_image = "fileUpload/". $Filename ;
$pic_size = getimagesize($original_image);
$desired_width = 250 ;
$per_div = abs($desired_width - $pic_size[0]) * 100 / $pic_size[0];
$desired_height = $pic_size[0] > $desired_width ? $pic_size[1] - floor( $pic_size[1] * $per_div / 100) : $pic_size[1] + floor( $pic_size[1] * $per_div / 100);
$image = new hft_image($original_image);
$image->resize($desired_width, $desired_height, '0');
$image->output_resized("fileUpload/".$Filename, "JPG");
}
$sql = $db->query("INSERT INTO files (file_name) VALUES ('{$Filename}') ");
if($sql)
{
echo "<H3><CENTER><br><br><br><br><br><img src='images/thumbsup.png' width='256px' height='161px'></CENTER></H3>";
echo "<META HTTP-EQUIV=refresh CONTENT=\"0; page_admin.php\">";
$upload_true = true;
}else{
echo "<H3>ERROR:Can not Upload</H3>";
}
}
}else{
$count++;
}
}
}
?>
3.ข้อมูลใน SQL
4.ไฟล์ที่อัพโหลดเสร็จ ถูกเก็บไว้ใน fileUpload
5.หน้าการดาวน์โหลด
5.1 โค้ดดาวน์โหลด
Code (PHP)
<!------------------------------------------------------ Download ------------------------------------------------------------------>
<div id='tab3'>
<br>
<?
$db = new mysqli("localhost", "root", "123456", "dbboard");
if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
$db->set_charset("utf8");
$sql = $db->query("SELECT * FROM files");
echo "<table border = 1 cellpadding = 5 cellspacing = 1><tr>";
$rows = 0;
while($result = $sql->fetch_object()){
echo "<td>";
$rows++;
$type = substr($result->file_name,-3);
if($type == 'jpg' or $type == 'png' or $type == 'gif'){
?>
<img src="fileUpload/<?php echo $result->file_name; ?>" /><br/>
<a href="download.php?pic=picture.jpg"><img src='images/manage/1440760601_download.png' width='40px' height='40px' style="float: right" /></a>
<?
}else{
?>
<a href="fileUpload/<?php echo $result->file_name; ?>"><?php echo $result->file_name; ?></a>
<?
}
echo"</td>";
if(($rows)%2==0)
{
echo"<tr></tr>";
}
}
echo"</tr></table>";
?>
</div>
<!------------------------------------------------------------------------------------------------------------------------------------->
ปล.มีคนเคยบอกแล้วแต่คือผมไม่ได้เขียนขึ้นมาเอง ก้อเลยไม่รู้ว่าจะทำยังไง และผมไม่รู้เรื่องด้วยครับ
อยากให้มีคนเขียนทับไฟล์ผมเลย เพราะไม่รู้จะเอาใส่ตรงไหนและแก้ตรงไหนดี
Tag : PHP
|
|
|
|
|
|
Date :
2015-10-18 08:07:21 |
By :
NuItMaster |
View :
1490 |
Reply :
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะมีใครช่วยไหม น้อ
|
|
|
|
|
Date :
2015-10-18 17:23:27 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยครับ
|
|
|
|
|
Date :
2015-10-18 20:49:42 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครั้งก่อนก็บอกไปหมดละนะครับ มันไม่น่าจะยากละ ที่ไม่เขียนให้ทั้งหมดเพราะเด๋วคุณจะไม่คิด ไม่พยายาม เวลาทำงานจริงๆ(หมายถึงเรียนจบแล้วทำงาน) มันจะลำบากนะครับ อะสีแดงคือที่เพิ่มหรือแก้ไข
1. อันดับแรกสร้างฟิลด์ชื่อ original_file_name ใน DB มาอีกฟิลด์นึง เพื่อเก็บชื่อไฟล์ที่อัพโหลด(ชื่อไฟล์ต้นฉบับ)
Code
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<?php
include "class.resizepic.php";
$db = new mysqli("localhost", "root", "123456", "dbboard");
if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
mysql_query("SET NAMES UTF8");
if(isset($_POST['Submit'] ))
{
$num_file = count($_FILES['file']['name']);
$select = false;
$count = 0;
for($i = 0; $i < $num_file ; $i++)
{
if($_FILES['file']['error'][$i] != 0)
{
$count++;
continue;
}
if($_FILES['file']['name'][$i] != "")
{
$originalFilename = $_FILES['file']['name'][$i];
$type = $_FILES['file']['type'][$i];
// .gif, .png, .jpg, .zip, .docx, .pdf, .doc, .swf, .rar
if ( $type == "image/gif") {$pic_type = 'GIF'; }
else if ($type == "image/png") {$pic_type = 'PNG'; }
else if (($type == "image/jpg") or ($type=="image/jpeg") or ($type == "image/pjpeg")) {$pic_type = 'JPG'; }
else if ($type == "application/octet-stream") {$pic_type = false;}
else if ($type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") {$pic_type = false;}
else if ($type == "application/pdf") {$pic_type = false;}
else if ($type == "application/msword") {$pic_type = false;}
else if ($type == "application/x-shockwave-flash") {$pic_type = false;}
else if ($type == "application/octet-stream") {$pic_type = false;}
if(move_uploaded_file($_FILES['file']['tmp_name'][$i], 'fileUpload/'.$Filename)){
if($pic_type){
$original_image = "fileUpload/". $Filename ;
$pic_size = getimagesize($original_image);
$desired_width = 250 ;
$per_div = abs($desired_width - $pic_size[0]) * 100 / $pic_size[0];
$desired_height = $pic_size[0] > $desired_width ? $pic_size[1] - floor( $pic_size[1] * $per_div / 100) : $pic_size[1] + floor( $pic_size[1] * $per_div / 100);
$image = new hft_image($original_image);
$image->resize($desired_width, $desired_height, '0');
$image->output_resized("fileUpload/".$Filename, "JPG");
}
$sql = $db->query("INSERT INTO files (original_file_name , file_name) VALUES ('{$originalFilename}' , '{$Filename}') ");
if($sql)
{
echo "<H3><CENTER><br><br><br><br><br><img src='images/thumbsup.png' width='256px' height='161px'></CENTER></H3>";
echo "<META HTTP-EQUIV=refresh CONTENT=\"0; page_admin.php\">";
$upload_true = true;
}else{
echo "<H3>ERROR:Can not Upload</H3>";
}
}
}else{
$count++;
}
}
}
?>
2. การเรียกใช้งาน
Code
<!------------------------------------------------------ Download ------------------------------------------------------------------>
<div id='tab3'>
<br>
<?
$db = new mysqli("localhost", "root", "123456", "dbboard");
if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
$db->set_charset("utf8");
$sql = $db->query("SELECT * FROM files");
echo "<table border = 1 cellpadding = 5 cellspacing = 1><tr>";
$rows = 0;
while($result = $sql->fetch_object()){
echo "<td>";
$rows++;
$type = substr($result->file_name,-3);
if($type == 'jpg' or $type == 'png' or $type == 'gif'){
?>
<img src="fileUpload/<?php echo $result->file_name; ?>" /><br/>
<a href="download.php?pic=picture.jpg"><img src='images/manage/1440760601_download.png' width='40px' height='40px' style="float: right" /></a>
<?
}else{
?>
<a href="fileUpload/<?php echo $result->file_name; ?>"><?php echo $result->original_file_name; ?></a>
<?
}
echo"</td>";
if(($rows)%2==0)
{
echo"<tr></tr>";
}
}
echo"</tr></table>";
?>
</div>
<!------------------------------------------------------------------------------------------------------------------------------------->
|
|
|
|
|
Date :
2015-10-18 21:44:18 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ผมก้อไม่เก่งครับ พยายามแล้วคืองงอะครับ โทดทีที่รบกวนนะครับ
|
|
|
|
|
Date :
2015-10-19 14:29:02 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็นแบบนี้อ่ะครับ แก้ยังไง รบกวนอีกทีครับ
|
|
|
|
|
Date :
2015-10-19 15:16:14 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันหาโฟล์เดอร์จัดเก็บรูปของคุุณไม่เจอ สรุปแล้วคุณจะเก็บในโฟล์เดอร์ไหนกันแน่? fileUpload หรือ myfile
|
|
|
|
|
Date :
2015-10-19 16:34:52 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ ขอโทดทีครับ พอดีใส่รูปผิด
จริงๆแล้วมัน
|
|
|
|
|
Date :
2015-10-20 09:56:51 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปัญหาแบบเดียวกันครับ สร้างโฟล์เดอร์ชื่อ fileUpload ให้มันด้วย แล้วเซ็ต permission เป็น 777 ครับ
|
|
|
|
|
Date :
2015-10-20 13:49:14 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ของผมก็เคยเป็นนะ แต่เป็นเฉพาะเวลาทำ local แต่ทำแบบมี server ไฟล์ชื่อภาษาไทยปกติ
|
|
|
|
|
Date :
2015-10-20 14:09:48 |
By :
zadstoms |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ผมไม่ค่อยอยู่เลยไม่ได้มากล่าวขอบคุณอย่างเป็นทางการเลย
ผมเปลี่ยนตามที่พี่บอกแล้วนะครับ แต่ยังไม่ได้มันเป็นแบบนี้ครับ โค้ดตามที่พี่บอกมาเลย แก้แล้วด้วยงับ
ส่วนโค้ด ก้อแบบเดิม
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<?php
include "class.resizepic.php";
$db = new mysqli("localhost", "890969", "123456987", "890969");
if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
mysql_query("SET NAMES UTF8");
if(isset($_POST['Submit'] ))
{
$num_file = count($_FILES['file']['name']);
$select = false;
$count = 0;
for($i = 0; $i < $num_file ; $i++)
{
if($_FILES['file']['error'][$i] != 0)
{
$count++;
continue;
}
if($_FILES['file']['name'][$i] != "")
{
$originalFilename = $_FILES['file']['name'][$i];
$type = $_FILES['file']['type'][$i];
// .gif, .png, .jpg, .zip, .docx, .pdf, .doc, .swf, .rar
if ( $type == "image/gif") {$pic_type = 'GIF'; }
else if ($type == "image/png") {$pic_type = 'PNG'; }
else if (($type == "image/jpg") or ($type=="image/jpeg") or ($type == "image/pjpeg")) {$pic_type = 'JPG'; }
else if ($type == "application/octet-stream") {$pic_type = false;}
else if ($type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") {$pic_type = false;}
else if ($type == "application/pdf") {$pic_type = false;}
else if ($type == "application/msword") {$pic_type = false;}
else if ($type == "application/x-shockwave-flash") {$pic_type = false;}
else if ($type == "application/octet-stream") {$pic_type = false;}
if(move_uploaded_file($_FILES['file']['tmp_name'][$i], "fileUpload/".$Filename)){
if($pic_type){
$original_image = "fileUpload/". $Filename ;
$pic_size = getimagesize($original_image);
$desired_width = 250 ;
$per_div = abs($desired_width - $pic_size[0]) * 100 / $pic_size[0];
$desired_height = $pic_size[0] > $desired_width ? $pic_size[1] - floor( $pic_size[1] * $per_div / 100) : $pic_size[1] + floor( $pic_size[1] * $per_div / 100);
$image = new hft_image($original_image);
$image->resize($desired_width, $desired_height, '0');
$image->output_resized("fileUpload/".$Filename, "JPG");
}
$sql = $db->query("INSERT INTO files (original_file_name , file_name) VALUES ('{$originalFilename}' , '{$Filename}') ");
if($sql)
{
echo "<H3><CENTER><br><br><br><br><br><img src='images/thumbsup.png' width='256px' height='161px'></CENTER></H3>";
echo "<META HTTP-EQUIV=refresh CONTENT=\"0; page_admin.php\">";
$upload_true = true;
}else{
echo "<H3>ERROR:Can not Upload</H3>";
}
}
}else{
$count++;
}
}
}
?>
ผมอัพขึ้นโฮดทุกอย่างแล้ว เซ็ต permission เป็น 777 แล้วครับ ขอคำแนะนำอีกครั้งนะครับ ขอบคุณครับ
|
|
|
|
|
Date :
2015-10-24 15:32:06 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็น text copy มา paste ครับ อย่า capture หน้าจอมา
ไฟล์มันใหญ่กว่ากันจมเลย พวกที่ใช้ bandwidth เปลืองแย่
และ ก็ก๊อปปี้มาตอบยาก พาลทำให้ไม่ตอบไปด้วย
|
|
|
|
|
Date :
2015-10-24 16:35:12 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่ะครับ ผมไม่รู้ขอโทดด้วยครับ
|
|
|
|
|
Date :
2015-10-24 19:12:27 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
mysql_query("SET NAMES UTF8");
ทำให้เป็น utf8 เหมือนกัน ครับ
|
|
|
|
|
Date :
2015-10-24 19:32:43 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยอีกทีครับ พอดียังเป็นแบบเดิม แก้ตามที่ คุณ NewbieXYZ บอกแล้วยังไม่หายครับ
|
|
|
|
|
Date :
2015-10-25 12:21:48 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างการเก็บชื่อไฟล์ภาษาไทย ตารางมี 2 field
id autoincrement,
nm callation utf8_unicode_ci
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
</head>
<body>
<?php
$db=new mysqli('localhost', 'test','test','test');
$db->set_charset('utf8');
if(isset($_REQUEST['save'])){
$db->query("insert into test set nm='".$_FILES['file_a']['name']."' ");
$rs=$db->query('select * from test');
echo '<table boder=1>';
while ($ro=$rs->fetch_assoc() ) echo '<tr><td>', implode('</td><td>', $ro), '</td></tr>';
echo '</table>';
}
?>
<form method="post" enctype="multipart/form-data" >
<input type="file" name="file_a" style="cursor:hand" />
<button name="save" >Save</button>
</form>
</body>
</html>
|
|
|
|
|
Date :
2015-10-25 13:09:54 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14.$db = new mysqli("localhost", "root", "123456", "dbboard");
15.if(mysqli_connect_errno()) die("Connect Failed! :" . mysqli_connect_error());
16.mysql_query("SET NAMES UTF8");
มันใช้กันคนละตัว ใช้ร่วมกันไม่ได้
|
|
|
|
|
Date :
2015-10-25 13:14:24 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ จะลองดู
|
ประวัติการแก้ไข 2015-10-25 14:19:43
|
|
|
|
Date :
2015-10-25 14:19:08 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นแบบเดิมเลย ครับ
Code (PHP)
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style>
body {
background: url('images/bg.jpg') top center ;
background-attachment:fixed;
background-size: 100%;
background-origin: content;
background-repeat: no-repeat;
}
</style>
<?php
include "class.resizepic.php";
$db = new mysqli("localhost", "890969", "123456987", "890969");
$db->set_charset('utf8');
if(isset($_POST['Submit'] ))
{
$num_file = count($_FILES['file']['name']);
$select = false;
$count = 0;
for($i = 0; $i < $num_file ; $i++)
{
if($_FILES['file']['error'][$i] != 0)
{
$count++;
continue;
}
if($_FILES['file']['name'][$i] != "")
{
$originalFilename = $_FILES['file']['name'][$i];
$type = $_FILES['file']['type'][$i];
// .gif, .png, .jpg, .zip, .docx, .pdf, .doc, .swf, .rar
if ( $type == "image/gif") {$pic_type = 'GIF'; }
else if ($type == "image/png") {$pic_type = 'PNG'; }
else if (($type == "image/jpg") or ($type=="image/jpeg") or ($type == "image/pjpeg")) {$pic_type = 'JPG'; }
else if ($type == "application/octet-stream") {$pic_type = false;}
else if ($type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document") {$pic_type = false;}
else if ($type == "application/pdf") {$pic_type = false;}
else if ($type == "application/msword") {$pic_type = false;}
else if ($type == "application/x-shockwave-flash") {$pic_type = false;}
else if ($type == "application/octet-stream") {$pic_type = false;}
if(move_uploaded_file($_FILES['file']['tmp_name'][$i], "fileUpload/".$Filename)){
if($pic_type){
$original_image = "fileUpload/". $Filename ;
$pic_size = getimagesize($original_image);
$desired_width = 250 ;
$per_div = abs($desired_width - $pic_size[0]) * 100 / $pic_size[0];
$desired_height = $pic_size[0] > $desired_width ? $pic_size[1] - floor( $pic_size[1] * $per_div / 100) : $pic_size[1] + floor( $pic_size[1] * $per_div / 100);
$image = new hft_image($original_image);
$image->resize($desired_width, $desired_height, '0');
$image->output_resized("fileUpload/".$Filename, "JPG");
}
$sql = $db->query("INSERT INTO files (original_file_name , file_name) VALUES ('{$originalFilename}' , '{$Filename}') ");
if($sql)
{
echo "<H3><CENTER><br><br><br><br><br><img src='images/thumbsup.png' width='256px' height='161px'></CENTER></H3>";
echo "<META HTTP-EQUIV=refresh CONTENT=\"0; page_admin.php\">";
$upload_true = true;
}else{
echo "<H3>ERROR:Can not Upload</H3>";
}
}
}else{
$count++;
}
}
}
?>
|
|
|
|
|
Date :
2015-10-25 14:33:20 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$Filename มันหายไป ของเก่ามันมีการกำหนดค่า ไว้ แต่ของใหม่มันหายไป ทำให้ error
|
|
|
|
|
Date :
2015-10-25 15:28:13 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับบบบบ ขอบคุณมากๆเลยครับ
|
|
|
|
|
Date :
2015-10-25 15:35:46 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอถามหน่อยครับ
ผมอัพขึ้นโฮสเวลาดูไฟล์ที่เคยอัพไปมันเข้าไปดูยังไงอ่ะครับ พอคลิกที่โฟสเดอร์เปิดมาไม่มีอะไรเลย
และพอผมเปลี่ยนมาเป็น localhost ไฟล์ที่อัพโหลดกับเป็น เธเธ—เธเธฑเธ”เธขเนเธญ เน€เธ”เธดเธก.docx ยังนี้ต้องแก้ตรงไหนครับ
|
ประวัติการแก้ไข 2015-10-25 16:16:48
|
|
|
|
Date :
2015-10-25 16:15:43 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ชื่อไฟล์นอกจากอังกฤษกับตัวเลข ภาษาอื่นๆไม่น่าจะอัพโหลดได้มั้ง
เคยพยายามเมื่อนานมาแล้วไม่เป็นผล จนต้องใช้วิธีตรวจชื่อไฟล์ที่ไม่ใช่ eng, number แปลงให้มันเป็น md5() แทน
|
|
|
|
|
Date :
2015-10-25 16:21:57 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไงครับ ผมไม่เคยเรียนเลย งง ครับ
อ่านแล้วพอเข้าใจอยู่แต่คือจะต้องเอามาใส่ตรงไหนครับ แล้วแก้ยังไง งง มาก ครับ
|
|
|
|
|
Date :
2015-10-25 17:07:44 |
By :
NuItMaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|