Ep8 Web Site ??????

Results 1 to 10 of 10
  1. #1
    Apprentice racing is offline
    MemberRank
    Nov 2010 Join Date
    8Posts

    Ep8 Web Site ??????

    Cabal Bagiuo Network :: Home

    buraya bir bakın
    Cabal Tools V4
    adamlar nasıl oluyorda bunu çalıştırabiliyor
    biz çalıştıramıyoruz.

    Quote Originally Posted by bsitmark View Post
    Google translator :

    Take a look here
    Cabal Tools V4
    how come you guys are able to run it
    we çalıştıramıyoruz.
    Last edited by SpeedDevil; 01-04-13 at 12:58 AM.


  2. #2
    Account Upgraded | Title Enabled! xender16 is offline
    MemberRank
    May 2010 Join Date
    Constanta, RomaLocation
    414Posts

    Re: Ep8 Web Site ??????

    well I don t understand can you speak EN ?

  3. #3
    Proficient Member bsitmark is offline
    MemberRank
    Sep 2012 Join Date
    166Posts

    Re: Ep8 Web Site ??????

    google translator :
    Take a look here
    Cabal Tools V4
    how come you guys are able to run it
    we çalıştıramıyoruz.
    well i dont use the cabal tools v4 but you just need to reconfig it and use 1.7.7 xampp

  4. #4
    Apprentice racing is offline
    MemberRank
    Nov 2010 Join Date
    8Posts

    Re: Ep8 Web Site ??????

    Quote Originally Posted by bsitmark View Post
    google translator :

    well i dont use the cabal tools v4 but you just need to reconfig it and use 1.7.7 xampp
    re doing config
    Introduction to the panels, but does not

    input does not cause ?

    sorry for bad english
    login_error.jpg

    help please

  5. #5
    ┌П┐(•_•)┌П┐ allocen is offline
    MemberRank
    Dec 2009 Join Date
    Deep AbyssLocation
    1,003Posts

    Re: Ep8 Web Site ??????

    How many times should i repeat? THE PASSWORD ITS NOT MD5, its pwdcompare. The panel checks md5 password. If you want to login, you need to rewrite the function and use a procedure from database called if i remember good, check_password_by_id. Its simple as pie!

  6. #6
    Apprentice racing is offline
    MemberRank
    Nov 2010 Join Date
    8Posts

    Re: Ep8 Web Site ??????

    Quote Originally Posted by allocen View Post
    How many times should i repeat? THE PASSWORD ITS NOT MD5, its pwdcompare. The panel checks md5 password. If you want to login, you need to rewrite the function and use a procedure from database called if i remember good, check_password_by_id. Its simple as pie!
    Thanks Allocen
    I could not
    detailed share a video? Please
    my head doesn't work anymore

  7. #7
    ┌П┐(•_•)┌П┐ allocen is offline
    MemberRank
    Dec 2009 Join Date
    Deep AbyssLocation
    1,003Posts

    Re: Ep8 Web Site ??????

    Why would you need a video for codding? All you need its to know sql and php. Then the rest is easy.Ok here is an example of mine:

    PHP Code:
    function login($username$password) {
    $login mssql_query(sprintf("SELECT * from ".DB_LOGIN.".[dbo].[cabal_auth_table] where ID = '%s'",str_replace("'""''"$username)));
    $result mssql_fetch_row($login);
    $login_result_valid_encrypt_password mssql_query('exec '.DB_LOGIN.'.dbo.cabal_sp_IsValidPassword_by_ID "'.$result[1].'" , "'.$password.'"');
    $login_resultmssql_fetch_array($login_result_valid_encrypt_password); 
    return 
    $login_result;

    Now based on that hope you got the ideea.

  8. #8
    UtakAso Drav3n is offline
    MemberRank
    Aug 2011 Join Date
    PHLocation
    919Posts

    Re: Ep8 Web Site ??????

    to fix CT4 login, you need a stored procedure like this

    USE [ACCOUNT]
    GO
    SET ANSI_NULLS OFF
    GO
    SET QUOTED_IDENTIFIER ON
    GO


    CREATE PROCEDURE [dbo].[web_logins] (@id varchar(32), @password varchar(32))
    AS
    begin
    SET NOCOUNT ON
    select usernum from cabal_auth_table with (nolock)
    where ID = @id and pwdcompare(@password, password) = 1
    SET NOCOUNT OFF
    end
    EP2 Account database use this:
    where ID = @id and [password] = dbo.fn_md5(@password)

  9. #9
    Apprentice racing is offline
    MemberRank
    Nov 2010 Join Date
    8Posts

    Re: Ep8 Web Site ??????

    Please makes connect?

    TeamViewer 8

    ID = 542 831 980

    PASS = 5968

    someone please analyze

  10. #10
    Account Upgraded | Title Enabled! SpeedDevil is offline
    MemberRank
    Jul 2009 Join Date
    BelgiumLocation
    484Posts

    Re: Ep8 Web Site ??????

    Thread Moved.



Advertisement