Error cms 76%

Results 1 to 12 of 12
  1. #1
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Error cms 76%

    I am using a butterfly emulator and a cms buttlerfly and I get the following error: When the client reaches 76% it drops and the following error appears in the emulator

    https://i.imgur.com/3kobO37.png
    Client: https://pastebin.com/e7Q6KhTX

    I think the error is in auth_ticket


  2. #2
    Account Upgraded | Title Enabled! streamhotel is offline
    MemberRank
    Apr 2012 Join Date
    EarthLocation
    511Posts

    Re: Error cms 76%

    These are no "errors". They are just incoming packets from client en nothing to be afraid of. Check the last line, it's giving a good indication of what's probably wrong -> SSO ticket. If the handler wouldn't send the "OK composer" then the client will stuck and after some time disconnect because there isn't any response from server.

  3. #3
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Re: Error cms 76%

    I did not understand, can you help me?
    mysql_query("UPDATE users SET auth_ticket = '', auth_ticket = '".GenerateTicket()."', ip_last = '', ip_last = '".$remote_ip."' WHERE id = '".$my_id."'") or die(mysql_error());

  4. #4
    o/ Konquer is offline
    MemberRank
    Apr 2014 Join Date
    464Posts

    Re: Error cms 76%

    That emulator looks for the sso/auth_ticket in the user_tickets table, not users table.

  5. #5
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Re: Error cms 76%

    Yes, I have the table user_tickets.But I am not getting the code to fetch this table.
    mysql_query("UPDATE users SET rank_vip = '1', auth_ticket = '".GenerateTicket()."', ip_last = '".$remote_ip."' WHERE id = '".$my_id."'") or die(mysql_error()); $ticketsql = mysql_query("SELECT * FROM users WHERE id = '".$my_id."'") or die(mysql_error());$ticketrow = mysql_fetch_assoc($ticketsql);
    "sso.ticket" : "<?php echo $ticketrow['auth_ticket']; ?>",
    Can anyone help me create the code?

  6. #6

    Re: Error cms 76%

    what are you using cms I'm wanting to make it work and I'm not lucky ...

  7. #7
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Re: Error cms 76%

    CoreDev, I'm adapting it

  8. #8
    Valued Member Oliveri is offline
    MemberRank
    Sep 2013 Join Date
    146Posts

    Re: Error cms 76%

    I haven't personally used Bfly in years, but this seems like a reasonable statement. Makes sure your tickets are set in user_tickets instead of users.

    Quote Originally Posted by Konquer View Post
    That emulator looks for the sso/auth_ticket in the user_tickets table, not users table.

  9. #9
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Re: Error cms 76%

    Now the tickets are generating on the user_ticket table, but an error is appearing in the emulator, missing the column 'new_bot'Can anyone help me with this?

  10. #10
    o/ Konquer is offline
    MemberRank
    Apr 2014 Join Date
    464Posts

    Re: Error cms 76%

    Quote Originally Posted by thevlogs View Post
    Now the tickets are generating on the user_ticket table, but an error is appearing in the emulator, missing the column 'new_bot'Can anyone help me with this?
    Add the column new_bot to the users table. If you stumble upon further issues, take a look at the release thread. I posted all the steps I had to go through to get it working there.

  11. #11
    Apprentice thevlogs is offline
    MemberRank
    Jan 2018 Join Date
    8Posts

    Re: Error cms 76%

    I do not have the new_bot column, can anyone send me?

  12. #12
    o/ Konquer is offline
    MemberRank
    Apr 2014 Join Date
    464Posts

    Re: Error cms 76%

    Quote Originally Posted by thevlogs View Post
    I do not have the new_bot column, can anyone send me?
    alter table users add column new_bot int(1)



Advertisement