Help Giải đáp tất cả các vấn đề về PTU!!!!!!xin mời gửi câu hỏi tại đây!

Status
Not open for further replies.
---------- Post added at 05:25 PM ---------- Previous post was at 05:25 PM ----------

[/COLOR]

vào akiba-online đầy, torent hay dl đều cóa :)[/QUOTE]

Mình xin EU mà ^^
 
---------- Post added at 05:25 PM ---------- Previous post was at 05:25 PM ----------

[/COLOR]

vào akiba-online đầy, torent hay dl đều cóa :)

Mình xin EU mà ^^[/QUOTE]

đã pm!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
em làm cái forums phpbb3 đã cài MOD autolinks nhưng khi cho vào thẻ code thì nó vẫn ko nhận links :(
có cách nào để link để trong thẻ code mà vẫn tự nhận link như VBB ko ạ ?
tại làm VBB nulled sợ nó chém nên mới phải dùng phpbb :(
 
Với dự luật SOPA/PiPa thì kiếm tiền bằng PTU trang nào giờ bà con ?
các host nga hoặc Euro bạn ạ, link ở đây!

---------- Post added at 02:26 PM ---------- Previous post was at 02:19 PM ----------

em làm cái forums phpbb3 đã cài MOD autolinks nhưng khi cho vào thẻ code thì nó vẫn ko nhận links :(
có cách nào để link để trong thẻ code mà vẫn tự nhận link như VBB ko ạ ?
tại làm VBB nulled sợ nó chém nên mới phải dùng phpbb :(
Các bạn tạo 1 file .js = Notepad ++ với nội dung

Code:
jQuery.fn.textNodes = function() {
var ret = [];
this.contents().each(function() {
var fn = arguments.callee;
if(this.nodeType == 3) {
ret.push(this);
} else if(this.nodeType==1 &&!(
this.tagName.toLowerCase()=='script' ||
this.tagName.toLowerCase()=='head' ||
this.tagName.toLowerCase()=='iframe' ||
this.tagName.toLowerCase()=='textarea' ||
this.tagName.toLowerCase()=='option' ||
this.tagName.toLowerCase()=='style' ||
this.tagName.toLowerCase()=='title' ||
this.tagName.toLowerCase()=='a')){
jQuery(this).contents().each(fn);
}
});
return ret;
}

jQuery.fn.hfautolink = function() {
re_link2 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:hotfile.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link3 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:hotfile.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link4 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:sharingmatrix.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link5 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:sharingmatrix.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link6 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:fileserve.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link7 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:fileserve.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link8 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:filesonic.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link9 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:filesonic.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link10 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:rapidshare.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link11 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:rapidshare.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link12 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:duckload.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link13 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:duckload.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link14 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:megaupload.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link15 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:megaupload.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
re_link16 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:eek:ron.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])', "ig");
re_link17 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:eek:ron.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]', "i");
this.each(function(i){
jQuery.each($(this).textNodes(), function(i, node){
text = node.nodeValue;
if(re_link3.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link2, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link5.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link4, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link7.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link6, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link9.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link8, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link11.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link10, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link13.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link12, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link15.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link14, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
else if(re_link17.test(text)){
newNode=document.createElement('span');
text=jQuery('<div/>').text(text).html();
newNode.innerHTML=text.replace(re_link16, '<a href="$1" target="_blank">$1</a>');
node.parentNode.replaceChild(newNode, node);
}
});
});
}

$(function() {
$("div").hfautolink();
});


Sau đó save lại với tên vd : "livelinks.js" or "whatever.js" . Sau đó dùng phần FTP upload lên host. tốt nhất để ngang hàng vs index.php hoặc forum.php

Sau đó vào admincp tìm file header của site
add thêm đoạn mã này vào cuối cùng
Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="livelinks.js" type="text/javascript"></script>


Như vậy là xong.
 
Cho mình hỏi Filefactory hiện nay đã disable chức năng upload cho tài khoản free. Vậy bắt buộc mình phải upgrade lên Pre mới cho upload sao. Có cách nào khác ko mấy pro?
 
Cho mình hỏi Filefactory hiện nay đã disable chức năng upload cho tài khoản free. Vậy bắt buộc mình phải upgrade lên Pre mới cho upload sao. Có cách nào khác ko mấy pro?
up pre thôi cậu ạ!!
mấy câu trên các bạn xem trả lời ở trang 10 nhé
 
Cho mình hỏi sao khi mình add payment vô letitbit.net thì nó báo như vậy là sao bạn " Attention! The data in your account have been changed.
Payments on your account will be temporarily suspended Hold 10 (days) "
 
Cho mình hỏi sao khi mình add payment vô letitbit.net thì nó báo như vậy là sao bạn " Attention! The data in your account have been changed.
Payments on your account will be temporarily suspended Hold 10 (days) "

tránh trường hợp hacker đổi số ví lúc pay tiền, nên đổi số tk thanh toán bạn phải chờ 10 ngày:binhsua04:
 
Bác có thể cho em biết nguồn wazer kiếm ở đâu được ko. Nếu được bác nhắn vào inbox cho em với. Em cảm ơn. :D
 
chơi hotfile lúc này có nguy cơ bi ban acc nữa không đại ka :(
chơi 3x ấy, đừng lên up film của studio nổi tiếng,
HF mà gửi cho mình thư cảnh cáo 3 lần là Ban nhé
 
Status
Not open for further replies.

Announcements

Today's birthdays

Forum statistics

Threads
420,935
Messages
7,103,488
Members
173,012
Latest member
goldbullionshops

Most viewed of week

Most discussed of week

Most viewed of week

Most discussed of week

Back
Top Bottom