• 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.

Hướng dẫn xóa bản quyền VFcoders mod hide hack

Admin

Well-Known Member
Staff member
Administrator
vào includes/vfchh/php/vfc_hide_core.php

xóa tất cả và change thành code sau

Code:
<?php/*======================================================================*\
|| #################################################################### ||
|| #                 vFcoders - Hide Hack v4                            ||
|| #         Copyright ©2012 vFcoders.com. All rights reserved.         ||
|| #################################################################### ||
\*======================================================================*/


class VFC_HIDE {


    /**
	* The vBulletin registry object
	*
	* @var	vB_Registry
	*/
	
	public $registry = null;
	
	/**
	* Whether html is allowed or not
	*
	* @var	boolean
	*/
	
	public $dohtml = false;
	
	/**
	* Hide Taglist (without option)
	*
	* @var	array
	*/
	
	private $taglist = array(
		'HIDE-REPLY' => 'p_bb_code_hr',
		'HIDE-THANKS' => 'p_bb_code_ht',
		'HIDE-REPLY-THANKS' => 'p_bb_code_hrt'
		);
		
	/**
	* Hide Taglist (with option)
	*
	* @var	array
	*/
	
	private $taglistwo = array(
		'HIDE-POSTS'   => 'p_bb_code_hp',
		'SHOWTOGROUPS' => 'p_bb_code_stg',
		'STU'          => 'p_bb_code_stu'
		);
		
	private $twodefault = array();
		
	/**
	* Post's Details for parsing Hide Tags
	*
	* @var	string
	*/
	
	public $forumid = null;
	public $postid = null;
	public $threadid = null;
	public $userid = null;
	
	/**
	* @var	boolean
	*/
	
	public $owner = false;
	public $hreply = false;
	public $hthanks = false;
	
    private $tagparser;


	
	/**
	* Constructor - checks that the registry object has been passed correctly.
	*
	* @param	vB_Registry	Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
	*/
	
	public function __construct(&$registry) 
	{
	
		global $vbphrase, $vbulletin;


		if (is_object($registry))
		{
			$this->registry =& $registry;
		}
		else
		{
			trigger_error("vB_Database::Registry object is not an object", E_USER_ERROR);
		}
		
		if (in_array(THIS_SCRIPT, array('ajax', 'editpost', 'misc', 'newthread', 'newreply', 'printthread', 'showpost', 'showthread')))
		{
			$this->dohtml = true;
		}
		else
		{
			$this->dohtml = false;
		}
		
	
		$this->twodefault = array('HIDE-POSTS' => $this->registry->options['vfc_hide_hack_hr_posts'], 
		                          'SHOWTOGROUPS' => $this->registry->options['hide_hack_sett_grp'],
								  'STU'        => 0
								  );
								  
		$hidetag = $this->registry->options['vfc_hide_hack_hide'];
		if ($this->taglist[$hidetag])
		{
		   $this->taglist['HIDE'] = $this->taglist[$hidetag];
		}
		else
		{
		   $this->taglistwo['HIDE'] = $this->taglistwo[$hidetag];
		   $this->twodefault['HIDE'] = $this->twodefault[$hidetag];
		}
		
		/// Calling Parser
		
		require_once( DIR."/includes/vfchh/php/vfc_hide_parser.php" );
        $this->tagparser = new VFC_PARSER($this);		
		
	}
	
	
	/**
	* Main Function which will be used to Parse the tags
	*
	* @param	Message, Forumid, Threadid, Postid, Userid (of creator)
	*
	* @return	Message (Parsed)
	*/


 function fetch_msg_to_hide ($params = array()) 
 {
 
   @extract($params);
   global $vbphrase;


   $this->forumid = $forumid;
   $this->threadid = $threadid;
   $this->postid = $postid;
   $this->userid = $userid;
   $this->hthanks = false;
  
   // Check if this user can bypass hide tags or not
   $this->owner = $this->canbypass();


   // Hide Tags without option
   foreach ($this->taglist as $tag => $parser) 
   {
      $message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $this->tagparser->$parser('\\1'), $message);
   }
											  
   // Hide Tags with option
   
   foreach ($this->taglistwo as $tag => $parser) 
   {
      $message = preg_replace("/\[" . $tag . "\]/siU", "[".$tag."=".$this->twodefault[$tag]."]", $message);
      $message = preg_replace("/\[" . $tag . "=(&quot;|\"|'|)([0-9,\s]+)\\1\](.*)\[\/" . $tag . "\]/esiU", "\$this->tagparser->\$parser('\\3', '\\2')", $message);
      $message = preg_replace("/\[" . $tag . "=" . $this->twodefault[$tag] . "\]/siU", '[' . $tag . ']', $message);
   }
   
   return $message;


 }
 
   /**
	* Function for removing hide tags
	*
	* @param	Message
	*
	* @return	Message (Stripped)
	*/
 
  function strip_hide_bbcodes($message, $for = '') 
  {
     global $vbphrase;
  
     $replace = '';
     $replace2 = '';
  
     switch ($for)
     {
        case 'preview':
             $replace = '\\1';
             $replace2 = '\\3';
	         break;
	    case 'quote':
	         $replace2 = $replace = $vbphrase['vfc_hide_hack_noquote'];
	         break;
	    case 'email':
             $replace2 = $replace = $vbphrase['vfc_hide_hack_email'];
	         break;
	    default:
	         $replace2 = $replace = '';
	         break;
     }	  
	


     foreach ($this->taglist as $tag => $parser) 
     {
        $message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $replace, $message);
     }
											 
     foreach ($this->taglistwo as $tag => $parser) 
	 {
        $message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $replace, $message);
        $message = preg_replace("/\[" . $tag . "=(&quot;|\"|'|)([0-9,\s]+)\\1\](.*)\[\/" . $tag . "\]/siU", $replace2, $message);
	 }											 
 
     return $message;
 
  }
   
    /**
	* Permission for tags
	*
	* @param	Foruminfo
	*
	* @return	Permission
	*/
	
   function check_permission ($foruminfo) 
   {
      $output = array();


      $output['stg'] = ($this->registry->options['vfc_hide_hack_stg'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_stg'])
	  && $foruminfo['vfchh_stg']);
	  
	  $output['stu'] = ($this->registry->options['vfc_hide_hack_stu'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_stu'])
	  && $foruminfo['vfchh_stu']);
	
      $output['hide'] = ($this->registry->options['vfc_hide_hack_hide'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide'])
	  && $foruminfo['vfchh_hide']);	
	  
	  $output['hreply'] = ($this->registry->options['vfc_hide_hack_hr'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_reply'])
	  && $foruminfo['vfchh_hreply']);


	  $output['hthanks'] = ($this->registry->options['vfc_hide_hack_ht'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_thanks'])
	  && $foruminfo['vfchh_hthanks'] && ($this->registry->products['post_thanks'] || $this->registry->products['crawlability_vbseo']));


	  $output['hrt'] = ($this->registry->options['vfc_hide_hack_hrt'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_rt'])
	  && $foruminfo['vfchh_hrt'] && ($this->registry->products['post_thanks'] || $this->registry->products['crawlability_vbseo']));


	  $output['hposts'] = ($this->registry->options['vfc_hide_hack_hp'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_posts'])
	  && $foruminfo['vfchh_hposts']);
	  
      return $output;


   }
   
    /**
	* Tags which user can use
	*
	* @param	Foruminfo
	*
	* @return	Permission
	*/
   
   function fetch_tags ($foruminfo) 
   {
   
       $permission =& $this->check_permission($foruminfo);
       $tags = array();
   
       if ($permission['hide']) 
       {
          $tags[] = 'Hide';
       }
	   
	   if ($permission['hide'] AND $permission['hreply']) 
       {
	      $tags[] = '-';
	   }
	   
       if ($permission['hreply']) 
       {
          $tags[] = 'HReply';
       }
	   
       if ($permission['hthanks']) 
       {
          $tags[] = 'Hthanks';
       }
	   
       if ($permission['hrt']) 
       {
          $tags[] = 'HReplyThanks';
          $tags[] = '-'; 
       }
	   
       if ($permission['hposts']) 
          $tags[] = 'HPosts';
	   
       if ($permission['stg']) 
          $tags[] = 'Showtogroups';
		  
       if ($permission['stu']) 
          $tags[] = 'STU';	   	  
   
       return $tags;
   
   
   }
   
   /**
	* Function for checking if user can bypass HIDE Tags
	*
	* @param	Foruminfo
	*
	* @return	Permission
	*/
	
	function canbypass () 
	{
	
	   if (($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_allow']))
       {	   
	        return true;
       }	
	
       if ($this->registry->userinfo['userid'] == $this->userid) 
	   {
            return true;
       }
	  
	   if (can_moderate($this->forumid, 'caneditposts'))
	   {
	       return true;
	   }
	  
	       return false;


	}
	
   /**
	* Don't Edit This Function else this MOD will stop working
	*/
	
	function copyright ($output)
	{
	
       $output = preg_replace('#All rights reserved.#i', 'All rights reserved.', $output, 1, $match);
	   
	   if (empty($match)) 
	   {
	   
	   $output = preg_replace('#<div id="footer_copyright"#i', '<div id="footer_copyright"', $output, 1, $match);
	   
	   }
	   
	   if (empty($match))
	   {
	   
	   $output = preg_replace('#</body>#i', '</body>', $output);
	   
	   }
	   
	   return $output;
                	
	}
	 
}


?>

dành cho mobile

[text]<?php/*======================================================================*\
|| #################################################################### ||
|| # vFcoders - Hide Hack v4 ||
|| # Copyright ©2012 vFcoders.com. All Rights Reserved. ||
|| #################################################################### ||
\*======================================================================*/


class VFC_HIDE {


/**
* The vBulletin registry object
*
* @var vB_Registry
*/

public $registry = null;

/**
* Whether html is allowed or not
*
* @var boolean
*/

public $dohtml = false;

/**
* Hide Taglist (without option)
*
* @var array
*/

private $taglist = array(
'HIDE-REPLY' => 'p_bb_code_hr',
'HIDE-THANKS' => 'p_bb_code_ht',
'HIDE-REPLY-THANKS' => 'p_bb_code_hrt'
);

/**
* Hide Taglist (with option)
*
* @var array
*/

private $taglistwo = array(
'HIDE-POSTS' => 'p_bb_code_hp',
'SHOWTOGROUPS' => 'p_bb_code_stg',
'STU' => 'p_bb_code_stu'
);

private $twodefault = array();

/**
* Post's Details for parsing Hide Tags
*
* @var string
*/

public $forumid = null;
public $postid = null;
public $threadid = null;
public $userid = null;

/**
* @var boolean
*/

public $owner = false;
public $hreply = false;
public $hthanks = false;

private $tagparser;



/**
* Constructor - checks that the registry object has been passed correctly.
*
* @param vB_Registry Instance of the vBulletin data registry object - expected to have the database object as one of its $this->db member.
*/

public function __construct(&$registry)
{

global $vbphrase, $vbulletin;


if (is_object($registry))
{
$this->registry =& $registry;
}
else
{
trigger_error("vB_Database::Registry object is not an object", E_USER_ERROR);
}

if (in_array(THIS_SCRIPT, array('ajax', 'editpost', 'misc', 'newthread', 'newreply', 'printthread', 'showpost', 'showthread')))
{
$this->dohtml = true;
}
else
{
$this->dohtml = false;
}


$this->twodefault = array('HIDE-POSTS' => $this->registry->options['vfc_hide_hack_hr_posts'],
'SHOWTOGROUPS' => $this->registry->options['hide_hack_sett_grp'],
'STU' => 0
);

$hidetag = $this->registry->options['vfc_hide_hack_hide'];
if ($this->taglist[$hidetag])
{
$this->taglist['HIDE'] = $this->taglist[$hidetag];
}
else
{
$this->taglistwo['HIDE'] = $this->taglistwo[$hidetag];
$this->twodefault['HIDE'] = $this->twodefault[$hidetag];
}

/// Calling Parser

require_once( DIR."/includes/vfchh/php/vfc_hide_parser.php" );
$this->tagparser = new VFC_PARSER($this);

}


/**
* Main Function which will be used to Parse the tags
*
* @param Message, Forumid, Threadid, Postid, Userid (of creator)
*
* @return Message (Parsed)
*/


function fetch_msg_to_hide ($params = array())
{

@extract($params);
global $vbphrase;


$this->forumid = $forumid;
$this->threadid = $threadid;
$this->postid = $postid;
$this->userid = $userid;
$this->hthanks = false;

// Check if this user can bypass hide tags or not
$this->owner = $this->canbypass();


// Hide Tags without option
foreach ($this->taglist as $tag => $parser)
{
$message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $this->tagparser->$parser('\\1'), $message);
}

// Hide Tags with option

foreach ($this->taglistwo as $tag => $parser)
{
$message = preg_replace("/\[" . $tag . "\]/siU", "[".$tag."=".$this->twodefault[$tag]."]", $message);
$message = preg_replace("/\[" . $tag . "=(&quot;|\"|'|)([0-9,\s]+)\\1\](.*)\[\/" . $tag . "\]/esiU", "\$this->tagparser->\$parser('\\3', '\\2')", $message);
$message = preg_replace("/\[" . $tag . "=" . $this->twodefault[$tag] . "\]/siU", '[' . $tag . ']', $message);
}

return $message;


}

/**
* Function for removing hide tags
*
* @param Message
*
* @return Message (Stripped)
*/

function strip_hide_bbcodes($message, $for = '')
{
global $vbphrase;

$replace = '';
$replace2 = '';

switch ($for)
{
case 'preview':
$replace = '\\1';
$replace2 = '\\3';
break;
case 'quote':
$replace2 = $replace = $vbphrase['vfc_hide_hack_noquote'];
break;
case 'email':
$replace2 = $replace = $vbphrase['vfc_hide_hack_email'];
break;
default:
$replace2 = $replace = '';
break;
}



foreach ($this->taglist as $tag => $parser)
{
$message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $replace, $message);
}

foreach ($this->taglistwo as $tag => $parser)
{
$message = preg_replace('/\\[' . $tag . '\\](.*)\\[\/' . $tag . '\\]/siU', $replace, $message);
$message = preg_replace("/\[" . $tag . "=(&quot;|\"|'|)([0-9,\s]+)\\1\](.*)\[\/" . $tag . "\]/siU", $replace2, $message);
}

return $message;

}

/**
* Permission for tags
*
* @param Foruminfo
*
* @return Permission
*/

function check_permission ($foruminfo)
{
$output = array();


$output['stg'] = ($this->registry->options['vfc_hide_hack_stg'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_stg'])
&& $foruminfo['vfchh_stg']);

$output['stu'] = ($this->registry->options['vfc_hide_hack_stu'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_stu'])
&& $foruminfo['vfchh_stu']);

$output['hide'] = ($this->registry->options['vfc_hide_hack_hide'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide'])
&& $foruminfo['vfchh_hide']);

$output['hreply'] = ($this->registry->options['vfc_hide_hack_hr'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_reply'])
&& $foruminfo['vfchh_hreply']);


$output['hthanks'] = ($this->registry->options['vfc_hide_hack_ht'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_thanks'])
&& $foruminfo['vfchh_hthanks'] && ($this->registry->products['post_thanks'] || $this->registry->products['crawlability_vbseo']));


$output['hrt'] = ($this->registry->options['vfc_hide_hack_hrt'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_rt'])
&& $foruminfo['vfchh_hrt'] && ($this->registry->products['post_thanks'] || $this->registry->products['crawlability_vbseo']));


$output['hposts'] = ($this->registry->options['vfc_hide_hack_hp'] && ($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_posts'])
&& $foruminfo['vfchh_hposts']);

return $output;


}

/**
* Tags which user can use
*
* @param Foruminfo
*
* @return Permission
*/

function fetch_tags ($foruminfo)
{

$permission =& $this->check_permission($foruminfo);
$tags = array();

if ($permission['hide'])
{
$tags[] = 'Hide';
}

if ($permission['hide'] AND $permission['hreply'])
{
$tags[] = '-';
}

if ($permission['hreply'])
{
$tags[] = 'HReply';
}

if ($permission['hthanks'])
{
$tags[] = 'Hthanks';
}

if ($permission['hrt'])
{
$tags[] = 'HReplyThanks';
$tags[] = '-';
}

if ($permission['hposts'])
$tags[] = 'HPosts';

if ($permission['stg'])
$tags[] = 'Showtogroups';

if ($permission['stu'])
$tags[] = 'STU';

return $tags;


}

/**
* Function for checking if user can bypass HIDE Tags
*
* @param Foruminfo
*
* @return Permission
*/

function canbypass ()
{

if (($this->registry->userinfo['permissions']['vfc_hide_hack_perm'] & $this->registry->bf_ugp['vfc_hide_hack_perm']['vfc_can_hide_allow']))
{
return true;
}

if ($this->registry->userinfo['userid'] == $this->userid)
{
return true;
}

if (can_moderate($this->forumid, 'caneditposts'))
{
return true;
}

return false;


}

/**
* Don't Edit This Function else this MOD will stop working
*/

function copyright ($output)
{

$output = preg_replace('#All rights reserved.#i', 'All rights reserved.', $output, 1, $match);

if (empty($match))
{

$output = preg_replace('#<div id="footer_copyright"#i', '<div id="footer_copyright"', $output, 1, $match);

}

if (empty($match))
{

$output = preg_replace('#</body>#i', '</body>', $output);

}

return $output;

}

}


?>[/text]
 

Facebook Comments

Similar threads
Thread starter Title Forum Replies Date
Admin Hướng dẫn xóa bản quyền vBSEO 3.6.0 - Remove copyright vBSEO 3.6.0 Vbb tutorial 0
Admin Hướng dẫn xóa bản quyền add-ons Advertisement Manager cho xenforo Xenforo 0
Admin Hướng dẫn xóa bản quyền mod dbtech vbsecurity cho vbb Vbb tutorial 1
Admin Hướng dẫn xóa bản quyền dbtech advanced user tagging Vbb tutorial 0
Admin Hướng dẫn xóa bản quyền phpfox 3.x Mã nguồn web 0
Admin Hướng dẫn xoá bản quyền trong bloger, hướng dẫn xóa thanh navibar trong blogspot Blogger 0
Admin Cơ bản VPS - Xóa mù VPS VPS & Dedicated Server 1
Admin Hướng dẫn xóa lịch sử command linux - How to clear the terminal history linux VPS & Dedicated Server 0
Admin Hướng dẫn fix lỗi không xóa được bôi đen trong Word bằng phím Backspace - Backspace doesn't delete highlighted text word Sử dụng, chia sẻ, hỏi đáp 4
Admin Hướng dẫn xóa sổ hoàn toàn ký tự Nokia S40 cho Xenforo 2 - Remove all nokia s40 characters for xenforo 2 Xenforo 0
Admin Hướng dẫn xóa khoảng cách các sản phẩm trên trang chủ Woocommerce Wordpress 0
Admin Hướng dẫn xóa khoảng trắng trên trang sản phẩm Woocommerce - How to remove the gap between products in Woocommerce Wordpress 0
Admin Hướng dẫn xóa mật khẩu Microsoft Access Sử dụng, chia sẻ, hỏi đáp 0
cuongpro9x HD TẢI VIDEO TIKTOK XÓA ID TIỆN LỢI TRÊN WIN10 Video, clip 1
Admin Hướng dẫn xóa Meta link và Category trên wordpress 5.x đơn giản Wordpress 0
Admin Hướng dẫn xóa bỏ test mode trên windows - How to disable the "Test mode" message that is displayed in Windows Thủ thuật máy tính 0
Admin Hướng dẫn tạo CronJob xóa toàn bộ mail chờ DirectAdmin - How to clear queue mail with CronJob DirectAdmin VPS & Dedicated Server 2
Thichquangboom Thông Báo: Fshare Xóa File Có Nội Dung Không Lành Mạnh Trò chuyện linh tinh 0
M Sociedad - Barcelona: Lời nguyền bị xóa bỏ Trò chuyện linh tinh 0
Thichquangboom Chức năng mới của fshare.vn: Cảnh báo xóa file Thông tin khuyến mại Fshare 0
T Phần mềm sửa, xóa chi tiết ảnh thừa - Inpaint v6.2 Phần mềm 0
T Phần mềm PC Phần mềm sửa, xóa chi tiết ảnh thừa - Inpaint v5.1 Phần mềm 2
Admin Hướng dẫn xóa thư mục có khoảng trắng ở đầu hoặc cuối Sử dụng, chia sẻ, hỏi đáp 0
blog4me Share Xóa bạn bè trong Facebook hàng loạt thế nào? Kiến thức lập trình 0
Admin Hướng dẫn xóa thư mục Windows.old trên win 10 đơn giản chi tiết bằng hình ảnh Sử dụng, chia sẻ, hỏi đáp 0
A Help xóa popup trong theme bione-mini Wordpress 0
T Share Code xóa quảng cáo Xtgem bằng css Wap builder, wapego, xtgem, wen.ru, wapka, wap4 0
H Share mod xóa file đính kèm cho john cms Johncms 0
Admin Hướng dẫn xóa toàn bộ chữ ký thành viên vbulletin Vbb tutorial 0
Smobi Hướng dẫn Send dữ liệu bằng Ajax Jquery cho việc thêm sửa xóa PHP 0
L0ngHackit Game hot Flappy Bird sẽ bị chính "cha đẻ" xóa sổ vào ngày mai Trò chơi 0
Admin Xóa hàng nghìn tài khoản trực tuyến đơn giản và nhanh chóng Mạng internet 0
caonguyenpc Cách xóa một hệ điều hành trong một Dual boot Thủ thuật máy tính 0
C Share Tools xóa dấu ảnh của haivl.com Mã nguồn wap 3
Admin Hướng dẫn xóa nhiều thành viên cho xenforo Xenforo 0
Admin Hướng dẫn xóa "Credits by brivium" cho xenforo Xenforo 0
Admin Hướng dẫn tự động xóa admin log và moderator log cho xenforo Xenforo 0
T Help Lỗi xóa topic trong xenforo Xenforo 5
T Help Giúp em xóa style mobile mặc định của xenforo với ạ. Xenforo 8
Admin Hướng dẫn cách xóa tài khoản facebook vĩnh viễn Thảo luận wap việt 3
L0ngHackit Cách xóa tài khoản Facebook vĩnh viễn Tin tức, sự kiện thường ngày 1
Admin Hướng dẫn xóa quảng cáo dcom E173eu-1 Sử dụng, chia sẻ, hỏi đáp 0
bunvocam9x Share Mod xóa đính kèm trong bài viết cho johncms Johncms 0
bunvocam9x Share Mod xóa files đính kèm trong từng bài viết cho johncms Johncms 0
Admin Hướng dẫn xóa toàn bộ tin nhắn riêng của thành viên cho vbb nhanh chóng Vbb tutorial 0
I BatchInpaint 1.1 - Xóa watermark trên ảnh hàng loạt Phần mềm 0
Admin Thủ thuật xóa dữ liệu đồng bộ trên windows 8 Thủ thuật máy tính 0
S Yahoo sẽ xóa tài khoản không sử dụng Tin tức CNTT 0
S WikiCancel - Tra cứu cách xóa tài khoản cá nhân trực tuyến Tin tức CNTT 0
Admin Hướng dẫn xóa ký tự sau forum.php vbb 4.2 Vbb tutorial 1

Similar threads

New posts New threads New resources

Back
Top