I cant log into my server. When I put my name and password in, it just gives me the wrong info message. So I can't log in.
I can't find the answer this one. So i'm sure its something I missed on my part. I checked in navicat and sure enough, my info is there (i.e. admin pw:1234) but when entering it, it says its wrong. I'm not sure WHAT id its looking for.
Any suggestions I can try? Any and ALL that help, will get +Rep
ps:
I noticed when trying to find a solution to my prob - people have been asking about the mailbox_insert_queue error:
Try the following: (worked for me)
Code:-- -- Table structure for table `mailbox_insert_queue` -- DROP TABLE IF EXISTS `mailbox_insert_queue`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `mailbox_insert_queue` ( `sender_guid` int(30) NOT NULL, `receiver_guid` int(30) NOT NULL, `subject` varchar(200) NOT NULL, `body` varchar(500) NOT NULL, `stationary` int(30) NOT NULL, `money` int(30) NOT NULL, `item_id` int(30) NOT NULL, `item_stack` int(30) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `mailbox_insert_queue` -- LOCK TABLES `mailbox_insert_queue` WRITE; /*!40000 ALTER TABLE `mailbox_insert_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `mailbox_insert_queue` ENABLE KEYS */; UNLOCK TABLES;