2 Problems menu

User Tag List

Thread: 2 Problems

Results 1 to 9 of 9
  1. #1
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    2 Problems

    I am using the latest ascent rev and using NCDB 2.4 DB and here are some pic's




    +Rep if you are correct
    ahhhh

    2 Problems
  2. #2
    Dragonscale's Avatar Member
    Reputation
    26
    Join Date
    Dec 2007
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your Database's Arent Correct...or just press OK
    Don't advertise in your signature.

  3. #3
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok thanks any way.
    ahhhh

  4. #4
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Run this query to fix the first problem:

    Code:
    -- MySQL dump 10.11
    --
    -- Host: localhost    Database: character
    -- ------------------------------------------------------
    -- Server version 5.0.45-community-nt
    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;
    /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
    /*!40103 SET TIME_ZONE='+00:00' */;
    /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
    /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
    /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
    /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
    --
    -- Table structure for table `playeritems_insert_queue`
    --
    DROP TABLE IF EXISTS `playeritems_insert_queue`;
    CREATE TABLE `playeritems_insert_queue` (
      `ownerguid` int(10) unsigned NOT NULL default '0',
      `entry` int(10) unsigned NOT NULL default '0',
      `wrapped_item_id` int(30) NOT NULL default '0',
      `wrapped_creator` int(30) NOT NULL default '0',
      `creator` int(10) unsigned NOT NULL default '0',
      `count` int(10) unsigned NOT NULL default '0',
      `charges` int(10) unsigned NOT NULL default '0',
      `flags` int(10) unsigned NOT NULL default '0',
      `randomprop` int(10) unsigned NOT NULL default '0',
      `randomsuffix` int(30) NOT NULL,
      `itemtext` int(10) unsigned NOT NULL default '0',
      `durability` int(10) unsigned NOT NULL default '0',
      `containerslot` int(11) NOT NULL default '-1' COMMENT 'couldnt find this being used in source',
      `slot` tinyint(4) NOT NULL default '0',
      `enchantments` longtext collate utf8_unicode_ci NOT NULL,
      KEY `ownerguid` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    --
    -- Dumping data for table `playeritems_insert_queue`
    --
    LOCK TABLES `playeritems_insert_queue` WRITE;
    /*!40000 ALTER TABLE `playeritems_insert_queue` DISABLE KEYS */;
    /*!40000 ALTER TABLE `playeritems_insert_queue` ENABLE KEYS */;
    UNLOCK TABLES;
    /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
    /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
    /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
    /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
    -- Dump completed on 2007-11-12 14:45:21
    And for the second one, you could either delete to DLL or get a new core as the DLL's are broken on that one.
    Last edited by Gastricpenguin; 12-17-2007 at 10:40 PM.
    Life Puzzler WoW - Website | Forums

  5. #5
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its really easy to solve both problems first you are missing a table in your database that is player_insert_queue that table can be inseted with a querry just copy and paste this in a notepad new info and execute the batch file in navicat and that should work
    Code:
    -- MySQL dump 10.11
    --
    -- Host: localhost    Database: character
    -- ------------------------------------------------------
    -- Server version    5.0.45-community-nt
    
    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;
    /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
    /*!40103 SET TIME_ZONE='+00:00' */;
    /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
    /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
    /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
    /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
    
    --
    -- Table structure for table `playeritems_insert_queue`
    --
    
    DROP TABLE IF EXISTS `playeritems_insert_queue`;
    CREATE TABLE `playeritems_insert_queue` (
      `ownerguid` int(10) unsigned NOT NULL default '0',
      `entry` int(10) unsigned NOT NULL default '0',
      `wrapped_item_id` int(30) NOT NULL default '0',
      `wrapped_creator` int(30) NOT NULL default '0',
      `creator` int(10) unsigned NOT NULL default '0',
      `count` int(10) unsigned NOT NULL default '0',
      `charges` int(10) unsigned NOT NULL default '0',
      `flags` int(10) unsigned NOT NULL default '0',
      `randomprop` int(10) unsigned NOT NULL default '0',
      `randomsuffix` int(30) NOT NULL,
      `itemtext` int(10) unsigned NOT NULL default '0',
      `durability` int(10) unsigned NOT NULL default '0',
      `containerslot` int(11) NOT NULL default '-1' COMMENT 'couldnt find this being used in source',
      `slot` tinyint(4) NOT NULL default '0',
      `enchantments` longtext collate utf8_unicode_ci NOT NULL,
      KEY `ownerguid` (`ownerguid`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    
    --
    -- Dumping data for table `playeritems_insert_queue`
    --
    
    LOCK TABLES `playeritems_insert_queue` WRITE;
    /*!40000 ALTER TABLE `playeritems_insert_queue` DISABLE KEYS */;
    /*!40000 ALTER TABLE `playeritems_insert_queue` ENABLE KEYS */;
    UNLOCK TABLES;
    /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
    
    /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
    /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
    /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
    /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
    /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
    /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
    
    -- Dump completed on 2007-11-12 14:45:21
    now for the other error just go into your scripts_bin folder and delete the .dll thats wrong i think in your case is serverstatuspluggin.dll but not sure just check wich .dll is not loading correct and delete it from your scripts_bin folder or recompile the ascent

  6. #6
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol thanks for copying what i just said O.o
    Life Puzzler WoW - Website | Forums

  7. #7
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i didnt know you posted that check the minutes of diference you posted yours 1 minute before me i was endindg typing when you already posted yours so dont blame me for not typing as fast as you

  8. #8
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    3 minute difference :P
    Life Puzzler WoW - Website | Forums

  9. #9
    Spartansp's Avatar Member
    Reputation
    644
    Join Date
    Sep 2007
    Posts
    1,803
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it was just an expression i mean that i didnt planned to copy what you put and you can easily check that i didnt copy that but whatever you want the fact is that we both helpo that guy out so why getting mad about that nonsence we must help others and be happy

Similar Threads

  1. Problem with CE.
    By Eldretch in forum World of Warcraft General
    Replies: 1
    Last Post: 08-08-2006, 06:49 PM
  2. realm list problem
    By robtuner in forum World of Warcraft General
    Replies: 2
    Last Post: 07-21-2006, 09:08 AM
  3. I have problem with BHW 3.0
    By sunrize1 in forum World of Warcraft General
    Replies: 1
    Last Post: 07-17-2006, 08:49 AM
  4. wow emu problem
    By bezike in forum World of Warcraft General
    Replies: 0
    Last Post: 07-09-2006, 04:45 PM
  5. Site problems
    By Shanaar in forum Community Chat
    Replies: 10
    Last Post: 05-14-2006, 01:15 AM
All times are GMT -5. The time now is 02:18 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search