|
|
|
ขอถามหน่อยน่ะค๊ะ...คือ เช่า hosting ไว้ 2 ที่ค๊ะ..hosting อันที่ 1 เอาไว้เก็บภาพสวยๆๆขนาด 1-3MB/1ภาพ ส่วนอันที่ 2.... |
|
|
|
|
|
|
|
สามารถทำได้โดยผ่านการ FTP ครับ อันที่จริง เก็บไว้ที่เดียวกันแหละง่ายต่อการนำไปใช้ครับ
|
|
|
|
|
Date :
2012-02-03 19:24:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตั้ง 70 กิ๊ก แล้วทำไมถึงต้องแยกออกจากกันอะครับ
อธิบายหน่อย
|
|
|
|
|
Date :
2012-02-03 19:44:04 |
By :
naya2007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เก็บเอาไว้ค๊ะ... เหมือนฝากรูป ตั้งแต่ อดีต-ปัจุบัน ถ้าฝากในเว็บหายแน่นอนน...เลยเช่าห้องเก็บของ online ค๊ะ..
ไม่อยากไรท์ลงแผ่น หรือ ฮาร์ดิส.. เวลาไปไหน ก็เอาออกมาได้อ่ะคะ...^^
ใช้ FTP นี้คือต้อง link ยังไงอ่ะค๊ะ....-_-" งงนิดนึง
ขอบคุณค๊ะ...
|
|
|
|
|
Date :
2012-02-03 22:16:38 |
By :
น้องรินชา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้โห ใจปล้ำแฮะ
|
|
|
|
|
Date :
2012-02-03 23:20:08 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอคำชีแนะเพิ่มหน่อยน่ะค๊ะ ...ทำยังไงให้มัน FTP หากันได้อ่ะ T^T
|
|
|
|
|
Date :
2012-02-04 00:15:12 |
By :
น้องรินชา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
php มันมี function FTP จาก Server 1 ไปยัง Server 2 ครับ ซึ่งการ FTP ผ่าน Server to Server จะเร็วมากครับ
|
|
|
|
|
Date :
2012-02-04 10:14:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจอกระทู้เก่า ๆ
Code (PHP)
//สคริปต์อัพโหลด
<?
if($_POST[Submit]){
set_time_limit(3000);
//set up basic connection
$ftp_server = “domain.com”;
$ftp_user_name = “user“;
$ftp_user_pass = “password”;
$destination_file = $_FILES['file']['name'];
$source_file = $_FILES['file']['tmp_name'];
$size_file=$_FILES['file']['size'];
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
ftp_chdir($conn_id,”htdocs/upload/store_file”);
// check connection
if ((!$conn_id) || (!$login_result)) {
echo “FTP connection has failed!”;
echo “Attempted to connect to $ftp_server for user $ftp_user_name”;
exit;
} else {
echo “Connected to $ftp_server, for user $ftp_user_name<br/>”; }
// upload the file
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
// check upload status
if (!$upload) {
echo “FTP upload has failed!”;
}
// close the FTP stream
ftp_close($conn_id);}//end $_POST[Submit]
?>
Go to : การ อัพโหลด ไฟล์ ใหญืเกิน 2 mb วานท่านเทพ โดยเฉพาะ Mr.win ผู้เป็น ตำนาน ทีครับ
Ref#2
|
|
|
|
|
Date :
2012-02-04 10:15:38 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ mr.win มากๆๆ ค่ะ ๅ^^
|
|
|
|
|
Date :
2012-02-05 12:34:25 |
By :
น้องรินชา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|