[MU] Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe - Trang 2
Hello & Welcome to our community. Is this your first visit? Đăng Ký
Follow us on
Follow us on Facebook Follow us on Twitter Linked In Flickr Watch us on YouTube My Space Blogger
 
Trang 2 của 3 Đầu tiênĐầu tiên 1 2 3 CuốiCuối
Kết quả 11 đến 20 của 24
  1. #11
    Thành Viên
    Ngày tham gia
    Jul 2012
    Đang ở
    Hà Nội - Việt Nam
    Bài viết
    435
    Thanks
    163
    Thanked 446 Times in 166 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Thích bỏ thì đơn giản thôi!
    Đây:
    Sửa 2 tệp:

    Bỏ cái đoạn tô màu đỏ đi
    1. Hosting\taikhoan\templates\box_login.tpl

    <!-- Box Login --><form name="login" id="login" action="" method="post">
    <div class="login">
    <div class="login_01"><img src="tony/imgs/login_icon.png">Đăng nhập tài khoản</div>
    <div class="login_02">
    <table align="center" border="0" cellpadding="0" cellspacing="0" height="125" width="225">
    <input name="login" value="login" type="hidden">
    <tbody><tr>
    <td align="right" height="34" width="62"><span class="font_02">Tên TK</span></td>
    <td colspan="2"><input id="username" name="username" maxlength="10" value="Tài khoản" onfocus="if (this.value == 'Tài khoản'){this.value='';}" class="input_01" type="text"></td>
    </tr>
    <tr>
    <td align="right" height="34"><span class="font_02">Mật khẩu</span></td>
    <td colspan="2"><input type="password" name="password" id="password" class="input_01" value="password" onfocus="if (this.value == 'password'){this.value='';}"></td>
    </tr>
    <tr>
    <td align="right" height="34"><span class="font_02"></span></td>
    <td colspan="2"><img src="img.php?size=6" /></td>
    </tr>
    <tr>
    <td align="right" height="34"><span class="font_02">Nhập mã kiểm tra</span></td>
    <td colspan="2"><input type="text" class="input_01" name="vImageCodP" id="vImageCodP" onfocus="focus_codeverify(this.value,'msg_'+this.n ame);"></td>
    </tr>
    <tr>
    <td height="36"><input name="ref" id="ref" value="/" type="hidden"></td>
    <td><input class="btn_01" name="Đăng nhập" id="Đăng nhập" value="Đăng nhập" type="submit"></td>
    <td><a href="#register" rel="ajax" class="font_01">Đăng ký miễn phí </a></td>
    </tr>
    <tr>
    <td height="32">&nbsp;</td>
    <td colspan="2"><a href="#receive_pass1" rel="ajax" class="font_03">Quên mật khẩu?</a></td>
    </tr>
    </tbody>
    </table>
    </div>
    </div>
    </form>
    <!-- End Box Login -->

    2. Hosting\taikhoan\includes\login.class.php

    <?php/**
    * @author NetBanBe
    * @copyright 2005 - 2012
    * @website [Only registered and activated users can see links. ]
    * @Email [Only registered and activated users can see links. ]
    * @HotLine 094 92 92 290
    * @Version v5.12.0722
    * @Release 22/07/2012

    * WebSite hoan toan duoc thiet ke boi NetBanBe.
    * Vi vay, hay ton trong ban quyen tri tue cua NetBanBe
    * Hay ton trong cong suc, tri oc NetBanBe da bo ra de thiet ke nen NWebMU
    * Hay su dung ban quyen duoc cung cap boi NetBanBe de gop 1 phan nho chi phi phat trien NWebMU
    * Khong nen su dung NWebMU ban crack hoac tu nguoi khac dua cho. Nhung hanh dong nhu vay se lam kim ham su phat trien cua NWebMU do khong co kinh phi phat trien cung nhu san pham tri tue bi danh cap.
    * Cac ban hay su dung NWebMU duoc cung cap boi NetBanBe de NetBanBe co dieu kien phat trien them nhieu tinh nang hay hon, tot hon.
    * Cam on nhieu!
    */

    if (!defined('NetNWEB')) die("Ban khong co quyen truy cap he thong");
    // Dang nhap
    if (isset($_POST["login"]))
    {
    include_once("config/config.php");
    include_once("config/config_sms.php");


    $accountid = $_POST['username'];
    $passwordid = $_POST['password'];
    $ip_client = get_ip();

    include_once("vimage.php");
    $vImage = new vImage();
    $vImage->loadCodes();
    if(!($vImage->checkCode())) {
    $error = "Sai mã kiểm tra";
    }
    elseif (($accountid == NULL) || ($passwordid == NULL)) {$error = "<font size='4' color='red'>Hãy điền tên đăng nhập và mật khẩu.</font>";}
    elseif (eregi("[^a-zA-Z0-9_$]", $accountid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Tài khoản chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif (eregi("[^a-zA-Z0-9_$]", $passwordid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Mật khẩu chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif ( $accountid == 'demo' && $passwordid == 'demo')
    {
    $_SESSION['mu_username'] = $accountid;
    $_SESSION[mu_nvchon] = 'Demo';
    $_SESSION['mu_Ranking'] = 'Rankingok';
    jum('index.php#acc_manager');
    }
    else {
    $getcontent_url = $server_url . "/view.php";
    $getcontent_data = array(
    'action' => 'login',
    'login' => $accountid,
    'pass' => md5($passwordid),
    'ip' => $ip_client,
    'passtransfer' => $passtransfer
    );

    $show_reponse = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);

    if( empty($show_reponse) )
    {
    $error = "<font size='3' color='red'>Server đang bảo trì</font>";
    }
    else if($show_reponse == 'PASSRAN_KGCO') {
    $error = "<font color='red'><b>Danh sách Mật khẩu ngẫu nhiên chưa khởi tạo hoặc đã sử dụng hết</b></font>.<br>Tài khoản của bạn đang ở chế độ <b>sử dụng mật khẩu ngẫu nhiên để tăng độ bảo mật</b>.<br>Vui lòng <b>dùng SĐT của tài khoản <font color='red'>$accountid</font></b> nhắn tin với cú pháp bên dưới để lấy danh sách mật khẩu ngẫu nhiên mới.<br><font color='red'><b>VNU &nbsp;&nbsp;&nbsp; $cuphap &nbsp;&nbsp;&nbsp; PR &nbsp;&nbsp;&nbsp; $accountid</b></font> &nbsp;&nbsp;&nbsp; gửi &nbsp;&nbsp;&nbsp; <font color='blue'> <b>8185</b> </font> <font color='gray'><i>(Phí nhắn tin : 1.000 VNĐ)</i></font>";
    }
    else if($show_reponse == 'PASSRAN_SAI') {
    $error = "<font color='red'><b>Mật khẩu không đúng</b></font>.<br>Tài khoản của bạn đang ở chế độ <b>sử dụng mật khẩu ngẫu nhiên để tăng độ bảo mật</b>.<br>Nếu bạn quên danh sách mật khẩu ngẫu nhiên đã nhận, vui lòng <b>dùng SĐT của tài khoản <font color='red'>$accountid</font></b> nhắn tin với cú pháp bên dưới để lấy danh sách mật khẩu ngẫu nhiên mới.<br><font color='red'><b>VNU &nbsp;&nbsp;&nbsp; $cuphap &nbsp;&nbsp;&nbsp; PR &nbsp;&nbsp;&nbsp; $accountid</b></font> &nbsp;&nbsp;&nbsp; gửi &nbsp;&nbsp;&nbsp; <font color='blue'> <b>8185</b> </font> <font color='gray'><i>(Phí nhắn tin : 1.000 VNĐ)</i></font><br>
    Các Mật khẩu cũ chưa sử dụng thì sẽ bị xóa hết để bảo mật.";
    }
    else {
    $info = read_TagName($show_reponse, 'info', 1);
    if ($info == 'OK') {
    $_SESSION['mu_username'] = $accountid;
    $_SESSION['checklogin'] = read_TagName($show_reponse, 'stringlogin', 1);

    $accthehe = abs(intval(read_TagName($show_reponse, 'thehe', 1)));
    if ($accthehe == 0) $accthehe = 1;
    $_SESSION['acc_thehe'] = $accthehe;
    $_SESSION['thehe'] = $accthehe;

    $_SESSION['acc_gcoin'] = read_TagName($show_reponse, 'gcoin', 1);
    $_SESSION['acc_gcoin_km'] = read_TagName($show_reponse, 'gcoinkm', 1);
    $_SESSION['acc_vpoint'] = read_TagName($show_reponse, 'vpoint', 1);
    $_SESSION['acc_zen'] = read_TagName($show_reponse, 'zen', 1);
    $_SESSION['acc_chao'] = read_TagName($show_reponse, 'chao', 1);
    $_SESSION['acc_cre'] = read_TagName($show_reponse, 'create', 1);
    $_SESSION['acc_blue'] = read_TagName($show_reponse, 'blue', 1);
    $_SESSION['acc_phone'] = read_TagName($show_reponse, 'phone', 1);
    $_SESSION['acc_passran'] = read_TagName($show_reponse, 'passran', 1);
    $_SESSION['IPBonusPoint'] = read_TagName($show_reponse, 'IPBonusPoint', 1);
    $ipbonus_info = read_TagName($show_reponse, 'ipbonus_info', 1);

    $nv_slg = 0;
    for($i=1;$i<=5;$i++)
    {
    if(strlen(read_TagName($show_reponse, 'char'.$i, 1))>=4)
    {
    $nv_slg++;
    $_SESSION['char'.$nv_slg] = read_TagName($show_reponse, 'char'.$i, 1);
    }
    }
    $_SESSION[nv_slg] = $nv_slg;
    if(strlen($ipbonus_info) > 10) $notice = $ipbonus_info . "<br />Do IP Quán NET hay bị thay đổi mỗi khi nhảy mạng, vì vậy các bạn thường xuyên đăng nhập lại để kiểm tra. Nếu thấy thông báo không chơi ở Quán NET đăng ký IP Bonus, vui lòng liên hệ chủ quán để cập nhập IP mới.";
    else $notice = '<strong>Bạn hiện không chơi ở Quán NET đăng ký IP Bonus.<br />Hãy chơi ở quán NET đăng ký IP Bonus để nhận được nhiều ưu đãi trong quá trình chơi.<br /><a href="#ipbonus_list" onclick="$(\'index2.php?mod=ipbonus_list\',\'hient hi\');">Danh sách quán NET đăng ký IP Bonus xem tại đây</a></strong>';
    }
    else {
    $error = "<font size='4' color='red'>$show_reponse</font>";
    }
    }
    }
    }


    // Logout
    if (isset($_POST['logout'])) {
    session_destroy();
    setcookie("last_sendsv", "", time()-3600);
    jum('index.php');
    }


    // Chon Nhan Vat
    if (isset($_POST['ChonNV'])) {
    $nhanvat = $_POST['nhanvat'];
    if( $sendsv === false) { $error = "Tốc độ xử lý của bạn quá nhanh, vui lòng chờ vài giây rồi tiếp tục thực hiện."; }
    elseif(empty($nhanvat)) { $error = "Chưa chọn Nhân vật"; }
    elseif (eregi("[^a-zA-Z0-9_$]", $nhanvat))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Nhân vật chọn chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    else {

    $getcontent_url = $server_url . "/view.php";
    $getcontent_data = array(
    'action' => 'chonNV',
    'login' => $_SESSION[mu_username],
    'name' => $nhanvat,
    'ip' => $ip_client,
    'string_login' => $_SESSION[checklogin],
    'passtransfer' => $passtransfer
    );

    $reponse = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);


    if ( empty($reponse) ) { $error = "<font size='3' color='red'>Server bảo trì.</font>"; }
    elseif($reponse == "login_other") {
    $error = "<font size='3' color='red'>Tài khoản đã được đăng nhập trên trình duyệt khác hoặc máy tính khác.</font>";
    session_destroy();
    }
    else {
    if (read_TagName($reponse, 'info', 1) != 'OK') { $error = $reponse; }
    else {
    $_SESSION['mu_nvchon'] = $nhanvat;

    $_SESSION['nv_online'] = read_TagName($reponse, 'online', 1);
    $_SESSION['nv_doinv'] = read_TagName($reponse, 'doinv', 1);
    $_SESSION['nv_class'] = read_TagName($reponse, 'class', 1);
    $_SESSION['nv_level'] = read_TagName($reponse, 'level', 1);
    $_SESSION['nv_point'] = read_TagName($reponse, 'point', 1);
    $_SESSION['nv_pointdutru'] = read_TagName($reponse, 'point_dutru', 1);
    $_SESSION['nv_zen'] = read_TagName($reponse, 'zen', 1);
    $_SESSION['nv_reset'] = read_TagName($reponse, 'reset', 1);
    $_SESSION['nv_resetday'] = read_TagName($reponse, 'resetday', 1);
    $_SESSION['nv_resetmonth'] = read_TagName($reponse, 'resetmonth', 1);
    $_SESSION['nv_relife'] = read_TagName($reponse, 'relife', 1);
    $_SESSION['nv_khoado'] = read_TagName($reponse, 'khoado', 1);
    $_SESSION['nv_thuepoint'] = read_TagName($reponse, 'thuepoint', 1);
    $_SESSION['nv_pointevent'] = read_TagName($reponse, 'pointevent', 1);
    $_SESSION['nv_uythaconline'] = read_TagName($reponse, 'uythacon', 1);
    $_SESSION['nv_point_uythac'] = read_TagName($reponse, 'pointuythac', 1);
    $_SESSION['nv_point_uythac_event'] = read_TagName($reponse, 'pointuythac_event', 1);
    $_SESSION['nv_uythac_offline'] = read_TagName($reponse, 'uythacoff', 1);
    $_SESSION['nv_uythac_offline_time'] = read_TagName($reponse, 'uythacoff_time', 1);
    $_SESSION['nv_uythac_offline_daily'] = read_TagName($reponse, 'uythacoff_daily', 1);
    $_SESSION['nv_top50'] = read_TagName($reponse, 'top50', 1);
    $_SESSION['point_event'] = read_TagName($reponse, 'point_event', 1);
    $_SESSION['event1_type1'] = read_TagName($reponse, 'event1_type1', 1);
    $_SESSION['event1_type2'] = read_TagName($reponse, 'event1_type2', 1);
    $_SESSION['event1_type3'] = read_TagName($reponse, 'event1_type3', 1);

    setcookie("nweb_loaddata", time(), time()+3600);

    $notice = "Đã chọn nhân vật : <b>$nhanvat</b>";
    $remove_choisenv = 1;
    }
    }
    }
    }
    ?>
    Lần sửa cuối bởi quyen194, ngày 17-07-13 lúc 07:49 PM.
    Khách viếng thăm hãy cùng quyen194 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  2. The Following 4 Users Say Thank You to quyen194 For This Useful Post:

    alobabyday (17-07-13), BoyGau (18-08-13), DieuNinh (18-07-13), vuthanhbh (18-07-13)

  3. #12
    Thành Viên Tâm Huyết babykute's Avatar
    Ngày tham gia
    Jul 2009
    Đang ở
    Địa Ngục Việt Nam
    Bài viết
    872
    Thanks
    182
    Thanked 327 Times in 118 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi heroviet2301 [Only registered and activated users can see links. ]
    6 Mã số đó nó cả số lẫn chữ , giờ mình muốn thay cho nó chỉ có số thôi thì cụ thể ở các file nào hả các bạn.
    Bạn dùng Notepad++ hoặc tools tương tự mở vImage.php... sau đó tìm dòng màu đỏ như sau

    <?php
    /**
    * @author NetBanBe
    * @copyright 2005 - 2012
    * @website [Only registered and activated users can see links. ]
    * @Email [Only registered and activated users can see links. ]
    * @HotLine 094 92 92 290
    * @Version v5.12.0722
    * @Release 22/07/2012

    * WebSite hoan toan duoc thiet ke boi NetBanBe.
    * Vi vay, hay ton trong ban quyen tri tue cua NetBanBe
    * Hay ton trong cong suc, tri oc NetBanBe da bo ra de thiet ke nen NWebMU
    * Hay su dung ban quyen duoc cung cap boi NetBanBe de gop 1 phan nho chi phi phat trien NWebMU
    * Khong nen su dung NWebMU ban crack hoac tu nguoi khac dua cho. Nhung hanh dong nhu vay se lam kim ham su phat trien cua NWebMU do khong co kinh phi phat trien cung nhu san pham tri tue bi danh cap.
    * Cac ban hay su dung NWebMU duoc cung cap boi NetBanBe de NetBanBe co dieu kien phat trien them nhieu tinh nang hay hon, tot hon.
    * Cam on nhieu!
    */

    ## 18/09/2003
    class vImage{


    var $numChars = 6; # Size String: default 3;
    var $w; # Image Width
    var $h = 30; # Image Height: default 15;
    var $colBG = "188 220 231";
    var $colTxt = "0 0 0";
    var $colBorder = "0 128 192";
    var $charx = 20; # Space side of each char
    var $numCirculos = 20; #Picking random numbers of circles


    function vImage(){
    session_start();
    }

    function gerText($num){
    # get string length
    if (($num != '')&&($num > $this->numChars)) $this->numChars = $num;
    # generate string randmica
    $this->texto = $this->gerString();

    $_SESSION['vImageCodS'] = $this->texto;
    }

    function loadCodes(){
    $this->postCode = strtoupper($_POST['vImageCodP']);
    $this->sessionCode = $_SESSION['vImageCodS'];
    }

    function checkCode(){
    if (isset($this->postCode)) $this->loadCodes();
    if ($this->postCode == $this->sessionCode)
    return true;
    else
    return false;
    }

    function showCodBox($mode=0,$extra=''){
    $str = "<input type=\"text\" name=\"vImageCodP\" id=\"vImageCodP\" onfocus=\"focus_codeverify(this.value,'msg_'+this. name);\" ".$extra." > ";

    if ($mode)
    echo $str;
    else
    return $str;
    }

    function showImage(){


    $this->gerImage();

    header("Content-type: image/png");
    ImagePng($this->im);

    }

    function gerImage(){
    # Calculate size to fit text
    $this->w = ($this->numChars*$this->charx) + 40; #5px de cada lado, 4px por char
    # Create img
    $this->im = imagecreatetruecolor($this->w, $this->h);
    #draw border and background
    imagefill($this->im, 0, 0, $this->getColor($this->colBorder));
    imagefilledrectangle ( $this->im, 1, 1, ($this->w-2), ($this->h-2), $this->getColor($this->colBG) );


    #draw circles
    for ($i=1;$i<=$this->numCirculos;$i++) {
    $randomcolor = imagecolorallocate ($this->im , rand(100,255), rand(100,255),rand(100,255));
    imageellipse($this->im,rand(0,$this->w-10),rand(0,$this->h-3), rand(20,60),rand(20,60),$randomcolor);
    }
    #write text
    $ident = 20;
    for ($i=0;$i<$this->numChars;$i++){
    $char = substr($this->texto, $i, 1);
    $font = rand(4,5);
    $y = round(($this->h-15)/2);
    $col = $this->getColor($this->colTxt);
    imagechar ( $this->im, $font, $ident, $y, $char, $col );
    $ident = $ident+$this->charx;
    }


    }

    function getColor($var){
    $rgb = explode(" ",$var);
    $col = imagecolorallocate ($this->im, $rgb[0], $rgb[1], $rgb[2]);
    return $col;
    }

    function gerString(){
    rand(0,time());
    $possible="AGHacefhjkrStVxY124579";
    while(strlen($str)<$this->numChars)
    {
    $str.=substr($possible,(rand()%(strlen($possible)) ),1);
    }


    $txt = strtoupper($str);

    return $txt;
    }
    }


    ?>
    $possible="AGHacefhjkrStVxY124579";

    Sử dòng màu đỏ thành :

    $possible="0123456789";

    Lưu lại và kiểm tra thành quả nhé...
    Lần sửa cuối bởi babykute, ngày 18-07-13 lúc 08:00 AM.
    Ải tình này ai có thế vượt qua
    Vọng Minh Nguyệt,tâm thật thê lương

  4. The Following 4 Users Say Thank You to babykute For This Useful Post:

    BoyGau (18-08-13), DieuNinh (18-07-13), vuthanhbh (18-07-13), YouTobe (18-07-13)

  5. #13
    Thành Viên vuthanhbh's Avatar
    Ngày tham gia
    Mar 2007
    Bài viết
    75
    Thanks
    5
    Thanked 1 Time in 1 Post

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi quyen194 [Only registered and activated users can see links. ]
    Thích bỏ thì đơn giản thôi!
    Đây:
    Sửa 2 tệp:

    Bỏ cái đoạn tô màu đỏ đi
    1. Hosting\taikhoan\templates\box_login.tpl




    2. Hosting\taikhoan\includes\login.class.php
    File Box Login không giống của bạn, bạn chỉ dùm bỏ đoạn nào trong dãy này:

    <!-- Box Login -->
    <div class="top">Đăng nhập</div>
    <div class="middle">
    <form name="login" id="login" action="" method="post">
    <img style="margin-left: -20px;" src="images/logintop.png">
    <div class="loginpanel">
    <table style="color: rgb(255, 255, 255);" align="center" width="220">
    <input name="login" value="login" type="hidden">
    <tr><td>Tài khoản</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input id="username" name="username" maxlength="10" value="Tài khoản" onfocus="if (this.value == 'Tài khoản'){this.value='';}" onblur="if (this.value == '') {this.value='Tài khoản';}" style="color: Gray; width: 190px; height: 22px; border: 0pt none; background: none repeat scroll 0% 0% transparent;" type="text"></td></tr>
    <tr><td>Mật khẩu</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input name="password" id="password" style="color: Gray; width: 190px; height: 22px; border: 0pt none; background: none repeat scroll 0% 0% transparent;" type="password"></td></tr>
    <tr><td style="padding-top: 10px; padding-left: 20px;"><img src="img.php?size=6" /></td></tr>
    <tr><td>Nhập 6 mã kiểm tra bên trên</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input name="vImageCodP" id="vImageCodP" onfocus="focus_codeverify(this.value,'msg_'+this.n ame);" type="text"> </td></tr>
    <tr><td>&nbsp;</td></tr>
    </table>
    </div>
    <img style="margin-left: -20px;" src="images/loginbottom.png">
    <input src="images/dangnhap.gif" style="margin-left: 90px; margin-top: 10px;" type="image">
    </form>
    <table style="color: rgb(96, 96, 96); font-size: 13px; font-weight: bold;" border="0" cellpadding="0" cellspacing="5" width="100%">
    <tr>
    <td class="loginbottomlinks" style="background: url(&quot;images/dot.gif&quot no-repeat scroll left center transparent; padding-left: 15px;"><a href="#receive_pass1" rel="ajax" >
    Quên mật khẩu?</a></td>
    <td class="loginbottomlinks" style="background: url(&quot;images/dot.gif&quot no-repeat scroll left center transparent; padding-left: 15px;"><a href="#register" rel="ajax" >
    Đăng ký mới</a></td>
    </tr>
    </table>
    </div>
    <div class="bottom">

    </div>
    <div class="padtop clear">
    </div>
    <!-- End Box Login -->
    Khách viếng thăm hãy cùng vuthanhbh xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  6. #14
    Thành Viên
    Ngày tham gia
    Jul 2012
    Đang ở
    Hà Nội - Việt Nam
    Bài viết
    435
    Thanks
    163
    Thanked 446 Times in 166 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi vuthanhbh [Only registered and activated users can see links. ]
    File Box Login không giống của bạn, bạn chỉ dùm bỏ đoạn nào trong dãy này:

    <!-- Box Login -->
    <div class="top">Đăng nhập</div>
    <div class="middle">
    <form name="login" id="login" action="" method="post">
    <img style="margin-left: -20px;" src="images/logintop.png">
    <div class="loginpanel">
    <table style="color: rgb(255, 255, 255);" align="center" width="220">
    <input name="login" value="login" type="hidden">
    <tr><td>Tài khoản</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input id="username" name="username" maxlength="10" value="Tài khoản" onfocus="if (this.value == 'Tài khoản'){this.value='';}" onblur="if (this.value == '') {this.value='Tài khoản';}" style="color: Gray; width: 190px; height: 22px; border: 0pt none; background: none repeat scroll 0% 0% transparent;" type="text"></td></tr>
    <tr><td>Mật khẩu</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input name="password" id="password" style="color: Gray; width: 190px; height: 22px; border: 0pt none; background: none repeat scroll 0% 0% transparent;" type="password"></td></tr>
    <tr><td style="padding-top: 10px; padding-left: 20px;"><img src="img.php?size=6" /></td></tr>
    <tr><td>Nhập 6 mã kiểm tra bên trên</td></tr>
    <tr><td style="background: url(&quot;images/inputbg.png&quot no-repeat scroll left center transparent; height: 32px; width: 20px;"><input name="vImageCodP" id="vImageCodP" onfocus="focus_codeverify(this.value,'msg_'+this.n ame);" type="text"> </td></tr>

    <tr><td>&nbsp;</td></tr>
    </table>
    </div>
    <img style="margin-left: -20px;" src="images/loginbottom.png">
    <input src="images/dangnhap.gif" style="margin-left: 90px; margin-top: 10px;" type="image">
    </form>
    <table style="color: rgb(96, 96, 96); font-size: 13px; font-weight: bold;" border="0" cellpadding="0" cellspacing="5" width="100%">
    <tr>
    <td class="loginbottomlinks" style="background: url(&quot;images/dot.gif&quot no-repeat scroll left center transparent; padding-left: 15px;"><a href="#receive_pass1" rel="ajax" >
    Quên mật khẩu?</a></td>
    <td class="loginbottomlinks" style="background: url(&quot;images/dot.gif&quot no-repeat scroll left center transparent; padding-left: 15px;"><a href="#register" rel="ajax" >
    Đăng ký mới</a></td>
    </tr>
    </table>
    </div>
    <div class="bottom">

    </div>
    <div class="padtop clear">
    </div>
    <!-- End Box Login -->
    Nếu t ko nhầm thì là chỗ đỏ đỏ bên trên đó ^_^
    Khách viếng thăm hãy cùng quyen194 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  7. Các thành viên gởi lời cảm ơn đến quyen194 vì bài viết này !

    vuthanhbh (18-07-13)

  8. #15
    Thành Viên vuthanhbh's Avatar
    Ngày tham gia
    Mar 2007
    Bài viết
    75
    Thanks
    5
    Thanked 1 Time in 1 Post

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi quyen194 [Only registered and activated users can see links. ]
    Nếu t ko nhầm thì là chỗ đỏ đỏ bên trên đó ^_^
    Còn file login.class này xóa chỗ nào zậy bạn.

    <?php
    /**
    * @author NetBanBe
    * @copyright 2005 - 2012
    * @website [Only registered and activated users can see links. ]
    * @Email [Only registered and activated users can see links. ]
    * @HotLine 094 92 92 290
    * @Version v5.12.0722
    * @Release 22/07/2012

    * WebSite hoan toan duoc thiet ke boi NetBanBe.
    * Vi vay, hay ton trong ban quyen tri tue cua NetBanBe
    * Hay ton trong cong suc, tri oc NetBanBe da bo ra de thiet ke nen NWebMU
    * Hay su dung ban quyen duoc cung cap boi NetBanBe de gop 1 phan nho chi phi phat trien NWebMU
    * Khong nen su dung NWebMU ban crack hoac tu nguoi khac dua cho. Nhung hanh dong nhu vay se lam kim ham su phat trien cua NWebMU do khong co kinh phi phat trien cung nhu san pham tri tue bi danh cap.
    * Cac ban hay su dung NWebMU duoc cung cap boi NetBanBe de NetBanBe co dieu kien phat trien them nhieu tinh nang hay hon, tot hon.
    * Cam on nhieu!
    */

    if (!defined('NetNWEB')) die("Ban khong co quyen truy cap he thong");
    // Dang nhap
    $ip_client = get_ip();

    if (isset($_POST["login"]))
    {
    include_once("config/config.php");
    include_once("config/config_sms.php");

    $accountid = $_POST['username'];
    $passwordid = $_POST['password'];

    include_once("vimage.php");
    $vImage = new vImage();
    $vImage->loadCodes();
    if(!($vImage->checkCode())) {
    $error = "Sai mã kiểm tra";
    }
    elseif (($accountid == NULL) || ($passwordid == NULL)) {$error = "<font size='4' color='red'>Hãy điền tên đăng nhập và mật khẩu.</font>";}
    elseif (eregi("[^a-zA-Z0-9_$]", $accountid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Tài khoản chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif (eregi("[^a-zA-Z0-9_$]", $passwordid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Mật khẩu chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif ( $accountid == 'demo' && $passwordid == 'demo')
    {
    $_SESSION['mu_username'] = $accountid;
    $_SESSION['mu_nvchon'] = 'Demo';
    $_SESSION['mu_Ranking'] = 'Rankingok';

    jum('index.php#acc_manager');
    }
    else {
    $getcontent_url = $server_url . "/view.php";
    $getcontent_data = array(
    'action' => 'login',
    'login' => $accountid,
    'pass' => md5($passwordid),
    'ip' => $ip_client,
    'passtransfer' => $passtransfer
    );

    $show_reponse = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);

    if( empty($show_reponse) )
    {
    $error = "<font size='3' color='red'>Server đang bảo trì</font>";
    }
    else if($show_reponse == 'PASSRAN_KGCO') {
    $error = "<font color='red'><b>Danh sách Mật khẩu ngẫu nhiên chưa khởi tạo hoặc đã sử dụng hết</b></font>.<br>Tài khoản của bạn đang ở chế độ <b>sử dụng mật khẩu ngẫu nhiên để tăng độ bảo mật</b>.<br>Vui lòng <b>dùng SĐT của tài khoản <font color='red'>$accountid</font></b> nhắn tin với cú pháp bên dưới để lấy danh sách mật khẩu ngẫu nhiên mới.<br><font color='red'><b>VNU &nbsp;&nbsp;&nbsp; $cuphap &nbsp;&nbsp;&nbsp; PR &nbsp;&nbsp;&nbsp; $accountid</b></font> &nbsp;&nbsp;&nbsp; gửi &nbsp;&nbsp;&nbsp; <font color='blue'> <b>8185</b> </font> <font color='gray'><i>(Phí nhắn tin : 1.000 VNĐ)</i></font>";
    }
    else if($show_reponse == 'PASSRAN_SAI') {
    $error = "<font color='red'><b>Mật khẩu không đúng</b></font>.<br>Tài khoản của bạn đang ở chế độ <b>sử dụng mật khẩu ngẫu nhiên để tăng độ bảo mật</b>.<br>Nếu bạn quên danh sách mật khẩu ngẫu nhiên đã nhận, vui lòng <b>dùng SĐT của tài khoản <font color='red'>$accountid</font></b> nhắn tin với cú pháp bên dưới để lấy danh sách mật khẩu ngẫu nhiên mới.<br><font color='red'><b>VNU &nbsp;&nbsp;&nbsp; $cuphap &nbsp;&nbsp;&nbsp; PR &nbsp;&nbsp;&nbsp; $accountid</b></font> &nbsp;&nbsp;&nbsp; gửi &nbsp;&nbsp;&nbsp; <font color='blue'> <b>8185</b> </font> <font color='gray'><i>(Phí nhắn tin : 1.000 VNĐ)</i></font><br>
    Các Mật khẩu cũ chưa sử dụng thì sẽ bị xóa hết để bảo mật.";
    }
    else {
    $info = read_TagName($show_reponse, 'info', 1);
    if ($info == 'OK') {
    $_SESSION['mu_username'] = $accountid;
    $_SESSION['checklogin'] = read_TagName($show_reponse, 'stringlogin', 1);

    $accthehe = abs(intval(read_TagName($show_reponse, 'thehe', 1)));
    if ($accthehe == 0) $accthehe = 1;
    $_SESSION['acc_thehe'] = $accthehe;
    $_SESSION['thehe'] = $accthehe;

    $_SESSION['acc_gcoin'] = read_TagName($show_reponse, 'gcoin', 1);
    $_SESSION['acc_gcoin_km'] = read_TagName($show_reponse, 'gcoinkm', 1);
    $_SESSION['acc_vpoint'] = read_TagName($show_reponse, 'vpoint', 1);
    $_SESSION['acc_zen'] = read_TagName($show_reponse, 'zen', 1);
    $_SESSION['acc_chao'] = read_TagName($show_reponse, 'chao', 1);
    $_SESSION['acc_cre'] = read_TagName($show_reponse, 'create', 1);
    $_SESSION['acc_blue'] = read_TagName($show_reponse, 'blue', 1);
    $_SESSION['acc_phone'] = read_TagName($show_reponse, 'phone', 1);
    $_SESSION['acc_passran'] = read_TagName($show_reponse, 'passran', 1);
    $_SESSION['IPBonusPoint'] = read_TagName($show_reponse, 'IPBonusPoint', 1);
    $ipbonus_info = read_TagName($show_reponse, 'ipbonus_info', 1);

    $nv_slg = 0;
    for($i=1;$i<=5;$i++)
    {
    if(strlen(read_TagName($show_reponse, 'char'.$i, 1))>=4)
    {
    $nv_slg++;
    $_SESSION['char'.$nv_slg] = read_TagName($show_reponse, 'char'.$i, 1);
    }
    }
    $_SESSION['nv_slg'] = $nv_slg;
    if(strlen($ipbonus_info) > 10) $notice = $ipbonus_info . "<br />Do IP Quán NET hay bị thay đổi mỗi khi nhảy mạng, vì vậy các bạn thường xuyên đăng nhập lại để kiểm tra. Nếu thấy thông báo không chơi ở Quán NET đăng ký IP Bonus, vui lòng liên hệ chủ quán để cập nhập IP mới.";
    else $notice = '<strong>Bạn hiện không chơi ở Quán NET đăng ký IP Bonus.<br />Hãy chơi ở quán NET đăng ký IP Bonus để nhận được nhiều ưu đãi trong quá trình chơi.<br /><a href="#ipbonus_list" onclick="$(\'index2.php?mod=ipbonus_list\',\'hient hi\');">Danh sách quán NET đăng ký IP Bonus xem tại đây</a></strong>';
    }
    else {
    $error = "<font size='4' color='red'>$show_reponse</font>";
    }
    }
    }
    }

    // Logout
    if (isset($_POST['logout'])) {
    session_destroy();
    setcookie("last_sendsv", "", time()-3600);
    jum('index.php');
    }

    // Chon Nhan Vat
    if (isset($_POST['ChonNV'])) {
    $nhanvat = $_POST['nhanvat'];
    if( $sendsv === false) { $error = "Tốc độ xử lý của bạn quá nhanh, vui lòng chờ vài giây rồi tiếp tục thực hiện."; }
    elseif(empty($nhanvat)) { $error = "Chưa chọn Nhân vật"; }
    elseif (eregi("[^a-zA-Z0-9_$]", $nhanvat))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Nhân vật chọn chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    else {

    $getcontent_url = $server_url . "/view.php";
    $getcontent_data = array(
    'action' => 'chonNV',
    'login' => $_SESSION['mu_username'],
    'name' => $nhanvat,
    'ip' => $ip_client,
    'string_login' => $_SESSION['checklogin'],
    'passtransfer' => $passtransfer
    );

    $reponse = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);

    if ( empty($reponse) ) { $error = "<font size='3' color='red'>Server bảo trì.</font>"; }
    elseif($reponse == "login_other") {
    $error = "<font size='3' color='red'>Tài khoản đã được đăng nhập trên trình duyệt khác hoặc máy tính khác.</font>";
    session_destroy();
    }
    else {
    if (read_TagName($reponse, 'info', 1) != 'OK') { $error = $reponse; }
    else {
    $_SESSION['mu_nvchon'] = $nhanvat;

    $_SESSION['nv_online'] = read_TagName($reponse, 'online', 1);
    $_SESSION['nv_doinv'] = read_TagName($reponse, 'doinv', 1);
    $_SESSION['nv_class'] = read_TagName($reponse, 'class', 1);
    $_SESSION['nv_level'] = read_TagName($reponse, 'level', 1);
    $_SESSION['nv_point'] = read_TagName($reponse, 'point', 1);
    $_SESSION['nv_pointdutru'] = read_TagName($reponse, 'point_dutru', 1);
    $_SESSION['nv_zen'] = read_TagName($reponse, 'zen', 1);
    $_SESSION['nv_reset'] = read_TagName($reponse, 'reset', 1);
    $_SESSION['nv_resetday'] = read_TagName($reponse, 'resetday', 1);
    $_SESSION['nv_resetmonth'] = read_TagName($reponse, 'resetmonth', 1);
    $_SESSION['nv_relife'] = read_TagName($reponse, 'relife', 1);
    $_SESSION['nv_khoado'] = read_TagName($reponse, 'khoado', 1);
    $_SESSION['nv_thuepoint'] = read_TagName($reponse, 'thuepoint', 1);
    $_SESSION['nv_pointevent'] = read_TagName($reponse, 'pointevent', 1);
    $_SESSION['nv_uythaconline'] = read_TagName($reponse, 'uythacon', 1);
    $_SESSION['nv_point_uythac'] = read_TagName($reponse, 'pointuythac', 1);
    $_SESSION['nv_point_uythac_event'] = read_TagName($reponse, 'pointuythac_event', 1);
    $_SESSION['nv_uythac_offline'] = read_TagName($reponse, 'uythacoff', 1);
    $_SESSION['nv_uythac_offline_time'] = read_TagName($reponse, 'uythacoff_time', 1);
    $_SESSION['nv_uythac_offline_daily'] = read_TagName($reponse, 'uythacoff_daily', 1);
    $_SESSION['nv_top50'] = read_TagName($reponse, 'top50', 1);
    $_SESSION['point_event'] = read_TagName($reponse, 'point_event', 1);
    $_SESSION['event1_type1'] = read_TagName($reponse, 'event1_type1', 1);
    $_SESSION['event1_type2'] = read_TagName($reponse, 'event1_type2', 1);
    $_SESSION['event1_type3'] = read_TagName($reponse, 'event1_type3', 1);
    $_SESSION['event1_type1_daily'] = read_TagName($reponse, 'event1_type1_daily', 1);
    $_SESSION['event1_type2_daily'] = read_TagName($reponse, 'event1_type2_daily', 1);
    $_SESSION['event1_type3_daily'] = read_TagName($reponse, 'event1_type3_daily', 1);

    setcookie("nweb_loaddata", time(), time()+3600);

    $notice = "Đã chọn nhân vật : <b>$nhanvat</b>";
    $remove_choisenv = 1;
    }
    }
    }
    }
    ?>
    Khách viếng thăm hãy cùng vuthanhbh xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  9. #16
    Thành Viên
    Ngày tham gia
    Jul 2012
    Đang ở
    Hà Nội - Việt Nam
    Bài viết
    435
    Thanks
    163
    Thanked 446 Times in 166 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi vuthanhbh [Only registered and activated users can see links. ]
    Còn file login.class này xóa chỗ nào zậy bạn.

    <?php
    /**
    * @author NetBanBe
    * @copyright 2005 - 2012
    * @website [Only registered and activated users can see links. ]
    * @Email [Only registered and activated users can see links. ]
    * @HotLine 094 92 92 290
    * @Version v5.12.0722
    * @Release 22/07/2012

    * WebSite hoan toan duoc thiet ke boi NetBanBe.
    * Vi vay, hay ton trong ban quyen tri tue cua NetBanBe
    * Hay ton trong cong suc, tri oc NetBanBe da bo ra de thiet ke nen NWebMU
    * Hay su dung ban quyen duoc cung cap boi NetBanBe de gop 1 phan nho chi phi phat trien NWebMU
    * Khong nen su dung NWebMU ban crack hoac tu nguoi khac dua cho. Nhung hanh dong nhu vay se lam kim ham su phat trien cua NWebMU do khong co kinh phi phat trien cung nhu san pham tri tue bi danh cap.
    * Cac ban hay su dung NWebMU duoc cung cap boi NetBanBe de NetBanBe co dieu kien phat trien them nhieu tinh nang hay hon, tot hon.
    * Cam on nhieu!
    */

    if (!defined('NetNWEB')) die("Ban khong co quyen truy cap he thong");
    // Dang nhap
    $ip_client = get_ip();

    if (isset($_POST["login"]))
    {
    include_once("config/config.php");
    include_once("config/config_sms.php");

    $accountid = $_POST['username'];
    $passwordid = $_POST['password'];

    include_once("vimage.php");
    $vImage = new vImage();
    $vImage->loadCodes();
    if(!($vImage->checkCode())) {
    $error = "Sai mã kiểm tra";
    }
    else
    if (($accountid == NULL) || ($passwordid == NULL)) {$error = "<font size='4' color='red'>Hãy điền tên đăng nhập và mật khẩu.</font>";}
    elseif (eregi("[^a-zA-Z0-9_$]", $accountid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Tài khoản chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif (eregi("[^a-zA-Z0-9_$]", $passwordid))
    {
    $error = "<font size='4' color='red'>Dữ liệu lỗi - Mật khẩu chỉ được sử dụng kí tự a-z, A-Z, số (1-9) và dấu _.</font>";
    }
    elseif ( $accountid == 'demo' && $passwordid == 'demo')
    {
    $_SESSION['mu_username'] = $accountid;
    $_SESSION['mu_nvchon'] = 'Demo';
    $_SESSION['mu_Ranking'] = 'Rankingok';

    jum('index.php#acc_manager');
    }
    else {
    $getcontent_url = $server_url . "/view.php";
    $getcontent_data = array(
    'action' => 'login',
    'login' => $accountid,
    'pass' => md5($passwordid),
    'ip' => $ip_client,
    'passtransfer' => $passtransfer
    );

    $show_reponse = _getContent($getcontent_url, $getcontent_data, $getcontent_method, $getcontent_curl);
    ...................................
    Cái này giống hệt cái kia còn gì @@
    Lười thế
    Khách viếng thăm hãy cùng quyen194 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  10. #17
    Thành Viên vuthanhbh's Avatar
    Ngày tham gia
    Mar 2007
    Bài viết
    75
    Thanks
    5
    Thanked 1 Time in 1 Post

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi quyen194 [Only registered and activated users can see links. ]
    Cái này giống hệt cái kia còn gì @@
    Lười thế
    Lười gì đâu, bạn nói nghe oan quá, tại xóa rồi nó báo lỗi còn nhìu hơn nên mới đưa lên hỏi mà .

    Notice: Use of undefined constant antiinject_query - assumed 'antiinject_query' in D:\www\Server\function.php on line 28

    Notice: Use of undefined constant check_queryerror - assumed 'check_queryerror' in D:\www\Server\function.php on line 37

    Notice: Use of undefined constant kiemtra_cardnumber - assumed 'kiemtra_cardnumber' in D:\www\Server\function.php on line 46

    Notice: Use of undefined constant kiemtra_kituso - assumed 'kiemtra_kituso' in D:\www\Server\function.php on line 55

    Notice: Use of undefined constant kiemtra_kitudacbiet - assumed 'kiemtra_kitudacbiet' in D:\www\Server\function.php on line 64

    Notice: Use of undefined constant kiemtra_email - assumed 'kiemtra_email' in D:\www\Server\function.php on line 73

    Notice: Use of undefined constant check_phone - assumed 'check_phone' in D:\www\Server\function.php on line 85

    Notice: Use of undefined constant check_taikhoan - assumed 'check_taikhoan' in D:\www\Server\function.php on line 97

    Notice: Use of undefined constant check_nv - assumed 'check_nv' in D:\www\Server\function.php on line 107

    Notice: Use of undefined constant check_tk_nv - assumed 'check_tk_nv' in D:\www\Server\function.php on line 118

    Notice: Use of undefined constant check_online - assumed 'check_online' in D:\www\Server\function.php on line 128

    Notice: Use of undefined constant check_doinv - assumed 'check_doinv' in D:\www\Server\function.php on line 137

    Notice: Use of undefined constant checklogin - assumed 'checklogin' in D:\www\Server\function.php on line 147

    Notice: Use of undefined constant kiemtra_acc - assumed 'kiemtra_acc' in D:\www\Server\function.php on line 162

    Notice: Use of undefined constant kiemtra_loggame - assumed 'kiemtra_loggame' in D:\www\Server\function.php on line 175

    Notice: Use of undefined constant kiemtra_block_acc - assumed 'kiemtra_block_acc' in D:\www\Server\function.php on line 190

    Notice: Use of undefined constant kiemtra_pass - assumed 'kiemtra_pass' in D:\www\Server\function.php on line 211

    Notice: Use of undefined constant kiemtra_pass2 - assumed 'kiemtra_pass2' in D:\www\Server\function.php on line 250

    Notice: Use of undefined constant kiemtra_char - assumed 'kiemtra_char' in D:\www\Server\function.php on line 261

    Notice: Use of undefined constant kiemtra_block_char - assumed 'kiemtra_block_char' in D:\www\Server\function.php on line 272

    Notice: Use of undefined constant kiemtra_online - assumed 'kiemtra_online' in D:\www\Server\function.php on line 283

    Notice: Use of undefined constant kiemtra_timeout - assumed 'kiemtra_timeout' in D:\www\Server\function.php on line 294

    Notice: Use of undefined constant kiemtra_doinv - assumed 'kiemtra_doinv' in D:\www\Server\function.php on line 310

    Notice: Use of undefined constant _getSerial - assumed '_getSerial' in D:\www\Server\function.php on line 321

    Notice: Use of undefined constant _sno_numb - assumed '_sno_numb' in D:\www\Server\function.php on line 334

    Notice: Use of undefined constant kiemtra_GM - assumed 'kiemtra_GM' in D:\www\Server\function.php on line 359

    Notice: Use of undefined constant kiemtra_topmonth - assumed 'kiemtra_topmonth' in D:\www\Server\function.php on line 373

    Notice: Use of undefined constant _get_reset_day - assumed '_get_reset_day' in D:\www\Server\function.php on line 445

    Notice: Use of undefined constant _get_resetscore_day - assumed '_get_resetscore_day' in D:\www\Server\function.php on line 465

    Notice: Use of undefined constant _get_reset_month - assumed '_get_reset_month' in D:\www\Server\function.php on line 485

    Notice: Use of undefined constant _get_resetscore_month - assumed '_get_resetscore_month' in D:\www\Server\function.php on line 505

    Notice: Use of undefined constant _topreset - assumed '_topreset' in D:\www\Server\function.php on line 525

    Notice: Use of undefined constant _topreset_score - assumed '_topreset_score' in D:\www\Server\function.php on line 547

    Notice: Use of undefined constant _topreset_erase_month - assumed '_topreset_erase_month' in D:\www\Server\function.php on line 569

    Notice: Use of undefined constant _topreset_sub - assumed '_topreset_sub' in D:\www\Server\function.php on line 583

    Notice: Use of undefined constant _top50 - assumed '_top50' in D:\www\Server\function.php on line 635

    Notice: Use of undefined constant _castleown - assumed '_castleown' in D:\www\Server\function.php on line 685

    Notice: Use of undefined constant event1_type1_slg - assumed 'event1_type1_slg' in D:\www\Server\function.php on line 739

    Notice: Use of undefined constant event1_type2_slg - assumed 'event1_type2_slg' in D:\www\Server\function.php on line 754

    Notice: Use of undefined constant event1_type3_slg - assumed 'event1_type3_slg' in D:\www\Server\function.php on line 769

    Notice: Use of undefined constant event1_type1_daily_slg - assumed 'event1_type1_daily_slg' in D:\www\Server\function.php on line 784

    Notice: Use of undefined constant event1_type2_daily_slg - assumed 'event1_type2_daily_slg' in D:\www\Server\function.php on line 804

    Notice: Use of undefined constant event1_type3_daily_slg - assumed 'event1_type3_daily_slg' in D:\www\Server\function.php on line 825

    Notice: Use of undefined constant fixrs - assumed 'fixrs' in D:\www\Server\function.php on line 846

    Notice: Use of undefined constant nbb_encode - assumed 'nbb_encode' in D:\www\Server\function.php on line 880

    Notice: Use of undefined constant nbb_encode_extra - assumed 'nbb_encode_extra' in D:\www\Server\function.php on line 911

    Notice: Use of undefined constant nbb_decode - assumed 'nbb_decode' in D:\www\Server\function.php on line 933

    Notice: Use of undefined constant get_ip - assumed 'get_ip' in D:\www\Server\function.php on line 968

    Notice: Use of undefined constant read_TagName - assumed 'read_TagName' in D:\www\Server\function.php on line 1015

    Notice: Use of undefined constant writelog - assumed 'writelog' in D:\www\Server\function.php on line 1044

    Notice: Undefined index: HTTP_X_FORWARDED_FOR in D:\www\Server\function.php on line 977

    Notice: Undefined index: HTTP_CLIENT_IP in D:\www\Server\function.php on line 986
    Lần sửa cuối bởi vuthanhbh, ngày 19-07-13 lúc 10:06 AM.
    Khách viếng thăm hãy cùng vuthanhbh xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  11. #18
    Thành Viên
    Ngày tham gia
    Jul 2012
    Đang ở
    Hà Nội - Việt Nam
    Bài viết
    435
    Thanks
    163
    Thanked 446 Times in 166 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Chốt là ổn chưa?
    ................................................
    Khách viếng thăm hãy cùng quyen194 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  12. #19
    Thành Viên vuthanhbh's Avatar
    Ngày tham gia
    Mar 2007
    Bài viết
    75
    Thanks
    5
    Thanked 1 Time in 1 Post

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi quyen194 [Only registered and activated users can see links. ]
    Chốt là ổn chưa?
    ................................................
    hic hic có ổn đâu bạn, 1 dây lỗi kìa
    Khách viếng thăm hãy cùng vuthanhbh xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  13. #20
    Thành Viên
    Ngày tham gia
    Jul 2012
    Đang ở
    Hà Nội - Việt Nam
    Bài viết
    435
    Thanks
    163
    Thanked 446 Times in 166 Posts

    Ðề: Xin hỏi về 6 mã số xác minh khi đăng nhập tài khoản web netbanbe

    Trích dẫn Gửi bởi vuthanhbh [Only registered and activated users can see links. ]
    hic hic có ổn đâu bạn, 1 dây lỗi kìa

    T test thử chả làm sao cả!
    Pm yahoo đê, t qua teamviewer phát xem sao, máu hơi bị nóng r đấy
    Khách viếng thăm hãy cùng quyen194 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!

  14. Các thành viên gởi lời cảm ơn đến quyen194 vì bài viết này !

    vuthanhbh (19-07-13)

 

 
Trang 2 của 3 Đầu tiênĐầu tiên 1 2 3 CuốiCuối

Các Chủ đề tương tự

  1. [KT] kiếm thế sai tên đăng nhập và tài khoản
    Bởi mrusa trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 1
    Bài viết cuối: 28-06-12, 11:28 AM
  2. [KT] kiếm thế sai tên đăng nhập và tài khoản
    Bởi mrusa trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 0
    Bài viết cuối: 19-06-12, 12:55 PM
  3. [MU] Bị lỗi khi đăng ký tài khoản web NBB
    Bởi lasker trong diễn đàn Hỏi Đáp/ Yêu Cầu
    Trả lời: 3
    Bài viết cuối: 30-03-12, 02:12 AM
  4. [Help] Fix lỗi 1 tài khoản đăng nhập được 2 máy
    Bởi gia_muvn trong diễn đàn Gunbound Server
    Trả lời: 1
    Bài viết cuối: 07-11-10, 02:16 PM

Quyền viết bài

  • Bạn Không thể gửi Chủ đề mới
  • Bạn Không thể Gửi trả lời
  • Bạn Không thể Gửi file đính kèm
  • Bạn Không thể Sửa bài viết của mình
  •  
Múi giờ GMT +7. Bây giờ là 02:34 AM.
vBulletin®, Copyright ©2000-2011, Jelsoft Enterprises Ltd.
CLBGamesVN không chịu trách nhiệm về Luật Bản Quyền của các tài liệu, bài viết v.v...được đăng tải trên diễn đàn này.
Diễn đàn phát triển dưới sự đóng góp của tất cả thành viên. BQT chỉ là những người thành lập ra sân chơi, quản lý và duy trì về mặt kỹ thuật, nội dung khi hợp lệ.