|
|
|
ขอวิธีกันพวกโหลดไฟล์จากเว็บโดยตรงหน่อยครับ (ให้สมาชิกเท่านั้นสามารถโหลดได้) |
|
|
|
|
|
|
|
มี keyword google ไหมครับ
|
|
|
|
|
Date :
2014-10-10 03:04:32 |
By :
AIAPEM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วแบบนี้มันมีข้อเสียอะไรไหมครับ
Code (PHP)
<?php
$local_file = '1.rar';
$download_file = '1.rar';
// set the download rate limit (=> 20,5 kb/s)
$download_rate = 20.5;
if(file_exists($local_file) && is_file($local_file))
{
header('Cache-control: private');
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($local_file));
header('Content-Disposition: filename='.$download_file);
flush();
$file = fopen($local_file, "r");
while(!feof($file))
{
// send the current file part to the browser
print fread($file, round($download_rate * 1024));
// flush the content to the browser
flush();
// sleep one second
sleep(1);
}
fclose($file);}
else {
die('Error: The file '.$local_file.' does not exist!');
}
?>
|
|
|
|
|
Date :
2014-10-10 03:11:05 |
By :
aibot |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้ารหัส ชื่อไฟล์+เวลา แล้ว ไปถอดรหัสเอาในไฟล์ถ้าเวลา แตกต่างจาก server เกินไม่ให้โหลด แบบนี้ดีกว่าไหม ครับ
|
|
|
|
|
Date :
2014-10-10 08:31:00 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้โค๊ดด้านบนเขียนดัก username เเล้ว เขียน .htaccess กันคนเข้าไปอีกชั้น แล้วชื่อ folder ก็ทำให้มันเปลี่ยนทุกวันเเล้วเอาวันนั้นมาเข้ารหัส อีกที แบบนี้จะดีไหมครับ
|
|
|
|
|
Date :
2014-10-10 15:30:19 |
By :
AIAPEM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|