• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
Trên các trang chia sẻ nội dung số như mediafire, tài liệu, fshare, zing... Các bạn có thể thấy link download của nó không bao giờ cố định. Có thể link này mới 1 phút trước còn download được nhưng bây giờ thì không thể. Có thể bạn đang download được với link này nhưng nếu bạn gửi link đó cho máy khác download thì cũng không thể download.

SinhVienIT.Net---temporary-link-php.jpg

Cách tạo link download thay đổi theo thời gian, cách tạo link download tạm thời bằng PHP

Trong video clip hôm nay, mình sẽ hướng dẫn chi tiết các bạn tạo 1 trang upload đơn giản bằng PHP và tạo ra link download như vậy.
Video được làm khi chưa có sự chuẩn bị nên có thể hơi rối, mong các bạn thông cảm :D

Demo: http://demo.sinhvienit.net/php/linkthaydoi/download.php?file=x.txt

P/S: Đoạn đầu mấy nhà bên cạnh tưới cây nước nó rớt xuống tôn nên nghe hơi ồn ào ;))
Download
PHP-linktamthoi-linkthaydoi.rar
 
admin sua dum em cai file nay voi
PHP:
<?phpinclude 'inc/db.php';include 'config.php';include 'function.php';
$fileName='wapdt.biz-'.htmlspecialchars(trim($_GET['id'])).'.'.$row['typevideo'];if(!file_exists(UPLOAD_DIR.'/'.$fileName)){    exit('File not found !');}$sql = mysql_query("SELECT * FROM video WHERE id='".$_GET['id']."' LIMIT 1");while($row = mysql_fetch_array($sql)){$downloadLink='download/'.makeHash($fileName).'/'.$fileName;$downplus = ($row['down']   +1);}mysql_query("UPDATE `video` SET `down` = '$downplus' WHERE `id` =".$_GET['id']." LIMIT 1 ;");header("location: ".$url."");?>
 
Nó báo lỗi như thế nào em, sửa như thế này xem
PHP:
<?php
include 'inc/db.php';
include 'config.php';
include 'function.php';
$fileName='wapdt.biz-'.htmlspecialchars(trim($_GET['id'])).'.'.$row['typevideo'];
if(!file_exists(UPLOAD_DIR.'/'.$fileName))
{
    exit('File not found !');
}
$sql = mysql_query("SELECT * FROM video WHERE id='".$_GET['id']."' LIMIT 1");
while($row = mysql_fetch_array($sql)){$downloadLink='download/'.makeHash($fileName).'/'.$fileName;$downplus = ($row['down']   +1);}
mysql_query("UPDATE `video` SET `down` = '$downplus' WHERE `id` =".$_GET['id']." LIMIT 1 ;");
header("location: ".$url."");
?>
 
Nó báo lỗi như thế nào
file not fount!

----------> Bổ sung bài viết lúc 10:59 AM <----------> Bài viết trước lúc 10:58 AM <----------

demo day http://phim***hay.nazuka.net/down.php?id=40
 

cai nay thi em cung lam dc.
[url]http://wapdt.nazuka.net/download.php?file=x.txt [/url]


nhung em thay vao code wap video cua em ko dc.

a thay dum em nhe.


file down.php cua wap em.
PHP:
<?php
include 'inc/db.php';
$sql = mysql_query("SELECT * FROM video WHERE id='".$_GET['id']."' LIMIT 1");
while($row = mysql_fetch_array($sql))
{
$downplus = ($row['down']   +1);
$url = 'data/video/wapdt.biz-'.htmlspecialchars(trim($_GET['id'])).'.'.$row['typevideo'].'';
}
mysql_query("UPDATE `video` SET `down` = '$downplus' WHERE `id` =".$_GET['id']." LIMIT 1 ;");
header("location: ".$url."");
?>


file download.php cua a V.T.Lai
PHP:
<?php

header('Content-Type: text/html;charset=UTF-8');
include 'config.php';
include 'function.php';

$fileName=$_GET['file'];
if(!file_exists(UPLOAD_DIR.'/'.$fileName))
{
	exit('File not found !');
}
$downloadLink='download/'.makeHash($fileName).'/'.$fileName;
?>
IP của bạn: <?=$_SERVER['REMOTE_ADDR'];?><br />
Tên file: <?=$fileName?><br />
Download link: <a href="<?=$downloadLink?>" target="_blank">Click Here</a>
 
Last edited:
Em đưa hết file .php vào /inc rồi dán code này vào file down.php xem
PHP:
<?php
include 'inc/db.php';
include 'inc/function.php';
$fileName=$_GET['file'];
if(!file_exists(UPLOAD_DIR.'/'.$fileName))
{
	exit('File not found !');
}
$downloadLink='download/'.makeHash($fileName).'/'.$fileName;

$sql = mysql_query("SELECT * FROM video WHERE id='".$_GET['id']."' LIMIT 1");
while($row = mysql_fetch_array($sql))
{
$downplus = ($row['down']   +1);
$url = 'data/video/wapdt.biz-'.htmlspecialchars(trim($_GET['id'])).'.'.$row['typevideo'].'';
}
mysql_query("UPDATE `video` SET `down` = '$downplus' WHERE `id` =".$_GET['id']." LIMIT 1 ;");
header("location: ".$url."");
?>

Download link: <a href="<?=$downloadLink?>" target="_blank">Click Here</a>
 
click here» dm.com/dowload/tdtdttdtjmpapapata/



sao no ko co ten file. hinh nhu $fileName bi sai roi.
 
Em đã move file .php vào inc chưa

ko em de ngang hang voi index luon.
<?php
include 'config.php';
?>

----------> Bổ sung bài viết lúc 06:22 PM <----------> Bài viết trước lúc 06:21 PM <----------

hinh nhu a get fileName bi sai thi phai.
 

Facebook Comments

New posts New threads New resources

Back
Top