[Help] A few errors when trying to update to rev 4337 menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Help] A few errors when trying to update to rev 4337

    I am updating from rev 3850 to rev 4337 (using http://www.mmowned.com/forums/emulat...blizzlike.html)

    by referring to thread: http://www.mmowned.com/forums/emulat...ev-4329-a.html I think I got the required SQL files - but if not can someone give to me.

    These are the errors I am getting:

    When I try to execute 4156_logon_accounts

    When I try to execute 4300_character_social

    When I try to execute 4300_world_dbcchanges

    When I try to execute 3084_logon_accounts.sql


    and when I tried running ascent-logonserver.exe


    Cannot log in game says information invalid.

    Can someone please help me

    [Help] A few errors when trying to update to rev 4337
  2. #2
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MisterEMU View Post
    I am updating from rev 3850 to rev 4337 (using http://www.mmowned.com/forums/emulat...blizzlike.html)

    by referring to thread: http://www.mmowned.com/forums/emulat...ev-4329-a.html I think I got the required SQL files - but if not can someone give to me.

    These are the errors I am getting:

    When I try to execute 4156_logon_accounts

    When I try to execute 4300_character_social

    When I try to execute 4300_world_dbcchanges

    When I try to execute 3084_logon_accounts.sql


    and when I tried running ascent-logonserver.exe


    Cannot log in game says information invalid.

    Can someone please help me
    All these updates seem to be applied already....

  3. #3
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by latruwski View Post
    All these updates seem to be applied already....
    then what is the problem? it doesn't seem to load the character or account database...

  4. #4
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone please help?

  5. #5
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here one second, it's because of your accounts table. Put this into a notepad and save as an sql.
    Code:
    CREATE TABLE `accounts` (
      `acct` bigint(20) unsigned NOT NULL auto_increment,
      `login` varchar(255) collate utf8_unicode_ci NOT NULL default '',
      `password` varchar(28) collate utf8_unicode_ci NOT NULL default '',
      `encrypted_password` varchar(40) collate utf8_unicode_ci NOT NULL default '',
      `gm` varchar(27) collate utf8_unicode_ci NOT NULL default '',
      `banned` int(1) unsigned NOT NULL default '0',
      `lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00',
      `lastip` varchar(15) collate utf8_unicode_ci NOT NULL default '',
      `email` varchar(50) collate utf8_unicode_ci NOT NULL default '',
      `flags` int(11) unsigned NOT NULL default '0',
      `forceLanguage` varchar(5) collate utf8_unicode_ci NOT NULL default 'enUS',
      `muted` int(30) NOT NULL default '0',
      PRIMARY KEY  (`acct`,`login`),
      UNIQUE KEY `acct` (`acct`)
    ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    Get rid of your old accounts table and put this one in. It should fix it

  6. #6
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheBetrayer View Post
    Here one second, it's because of your accounts table. Put this into a notepad and save as an sql.
    Code:
    CREATE TABLE `accounts` (
      `acct` bigint(20) unsigned NOT NULL auto_increment,
      `login` varchar(255) collate utf8_unicode_ci NOT NULL default '',
      `password` varchar(28) collate utf8_unicode_ci NOT NULL default '',
      `encrypted_password` varchar(40) collate utf8_unicode_ci NOT NULL default '',
      `gm` varchar(27) collate utf8_unicode_ci NOT NULL default '',
      `banned` int(1) unsigned NOT NULL default '0',
      `lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00',
      `lastip` varchar(15) collate utf8_unicode_ci NOT NULL default '',
      `email` varchar(50) collate utf8_unicode_ci NOT NULL default '',
      `flags` int(11) unsigned NOT NULL default '0',
      `forceLanguage` varchar(5) collate utf8_unicode_ci NOT NULL default 'enUS',
      `muted` int(30) NOT NULL default '0',
      PRIMARY KEY  (`acct`,`login`),
      UNIQUE KEY `acct` (`acct`)
    ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    Get rid of your old accounts table and put this one in. It should fix it
    Nope doesn't work says account already exists

  7. #7
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Delete your old accounts table, and use that to make a new one

  8. #8
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheBetrayer View Post
    Delete your old accounts table, and use that to make a new one
    did that and put in the code and still same error...

  9. #9
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you deleted the table, how can it still exist?

  10. #10
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheBetrayer View Post
    If you deleted the table, how can it still exist?
    sorry that part works but the error in the last picture... SQL Query failed due to unknown column encrypted passwrd

  11. #11
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sigh no one can solve this problem?...

  12. #12
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    update accounts set encrypted_password = SHA(CONCAT(UPPER(login),":",UPPER(password)));
    Try that

  13. #13
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheBetrayer View Post
    Code:
    update accounts set encrypted_password = SHA(CONCAT(UPPER(login),":",UPPER(password)));
    Try that
    tried still same error = / - I think I found the problem - when I replaced all the files in C:\AC Web Ultimate Repack\Server\mysql\data\logon whose name starts with "accounts" I don't get that error anymore - but I lose all my player's accounts... is there anyway to do it so I can save the accounts? I tried to do the code you gave me but it still doesn't work.

  14. #14
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Backup accounts, and then re-enter them in after you run that

  15. #15
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheBetrayer View Post
    Backup accounts, and then re-enter them in after you run that
    doesn't work. But latruwski helped me fixed the problem. +Rep to both of you

Page 1 of 2 12 LastLast

Similar Threads

  1. [HELP] ERROR WHEN TRYING TO Start patch with wotlk
    By Anthonyrox8 in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 09-25-2008, 09:21 PM
  2. Error when trying to cast "Scroll of ressurection" on a banned account!
    By SpikeeeN in forum World of Warcraft General
    Replies: 1
    Last Post: 05-21-2008, 06:10 PM
  3. Error when trying to start private server play.
    By abaraikenshi in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 05-18-2008, 02:28 PM
  4. Unable to Connect error when trying to logon my server
    By Rizzano in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 09-27-2007, 01:12 PM
  5. getting error when trying to change size
    By kanezfan in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 07-31-2007, 08:57 PM
All times are GMT -5. The time now is 04:54 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search