Open Source Phoenix 3.11.0 Roles Error

Results 1 to 6 of 6
  1. #1
    Member Spitty is offline
    MemberRank
    Oct 2014 Join Date
    SwedenLocation
    52Posts

    Open Source Phoenix 3.11.0 Roles Error

    "Loading Roles..Failed to boot, key not found"

    I get this error when using a clean (before and after running fix.sql), tried 3 times. No luck. Any help?

    Using this: http://forum.ragezone.com/f353/sourc...11-0-a-943733/


  2. #2
    www.Epic Hosts.co.uk Terrum is offline
    MemberRank
    Jun 2008 Join Date
    EpicHosts,co.ukLocation
    1,322Posts

    Re: Open Source Phoenix 3.11.0 Roles Error

    Did the import show any errors? What software did you use to import it? This seems to be strangely common with some people on this forum but with no fixes. However when I last used it, it worked fine.

  3. #3
    Member Spitty is offline
    MemberRank
    Oct 2014 Join Date
    SwedenLocation
    52Posts

    Re: Open Source Phoenix 3.11.0 Roles Error

    No errors at all. I tried it 3 times and it seems to have the same error still. Add me on Skype please!

    - - - Updated - - -

    Aha you changed your avatar from lucario to your own pony, nice! /brohoof

  4. #4
    www.Epic Hosts.co.uk Terrum is offline
    MemberRank
    Jun 2008 Join Date
    EpicHosts,co.ukLocation
    1,322Posts

    Re: Open Source Phoenix 3.11.0 Roles Error

    Quote Originally Posted by Spitty View Post
    No errors at all. I tried it 3 times and it seems to have the same error still. Add me on Skype please!
    Added on Skype. I'm curious to see what the issue is. I will update the thread further when I can, or if you could update it, Spitty, that would be better

    Quote Originally Posted by Spitty View Post
    Aha you changed your avatar from lucario to your own pony, nice! /brohoof
    /brohoof

  5. #5
    Member Spitty is offline
    MemberRank
    Oct 2014 Join Date
    SwedenLocation
    52Posts

    Re: Open Source Phoenix 3.11.0 Roles Error

    OK so Terrum helped me on Skype and TV and gave me a working DB which solved it! Thanks a lot!

  6. #6
    www.Epic Hosts.co.uk Terrum is offline
    MemberRank
    Jun 2008 Join Date
    EpicHosts,co.ukLocation
    1,322Posts

    Re: Open Source Phoenix 3.11.0 Roles Error

    You're welcome. If anyone needs the database, I replaced the 'ranks' table and used this one here:

    Code:
    -- ----------------------------
    -- Table structure for `ranks`
    -- ----------------------------
    DROP TABLE IF EXISTS `ranks`;
    CREATE TABLE `ranks` (
      `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
      `name` varchar(50) NOT NULL,
      `badgeid` varchar(5) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
    
    -- ----------------------------
    -- Records of ranks
    -- ----------------------------
    INSERT INTO `ranks` VALUES ('1', 'User', 'DU1');
    INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP');
    INSERT INTO `ranks` VALUES ('3', 'Trial Events Staff', 'NWB');
    INSERT INTO `ranks` VALUES ('4', 'Events Staff', 'HBA');
    INSERT INTO `ranks` VALUES ('5', 'Event Co-ordinator', 'HBA');
    INSERT INTO `ranks` VALUES ('6', 'Trial Moderator', 'NWB');
    INSERT INTO `ranks` VALUES ('7', 'Moderator', 'MOD');
    INSERT INTO `ranks` VALUES ('8', 'Senior Moderator', 'ADM');
    INSERT INTO `ranks` VALUES ('9', 'Support Team', 'ADM');
    INSERT INTO `ranks` VALUES ('10', 'Administrator', 'ADM');
    INSERT INTO `ranks` VALUES ('11', 'Hotel Manager', 'ADM');
    INSERT INTO `ranks` VALUES ('12', 'Owner', 'ADM');



Advertisement