Error with PHX 3.11.0

Brought

更加努力
Jan 14, 2013
595
203
I'm currently getting this error when I run the emulator.

I'm running Phoenix 3.11.0 with UberCMS







ALSO, if you have a working Phoenix Database for UberCMS... works 100% and all I have to do is clear tables or if the tables are already cleaned I would greatly appreciate if you let me have it... lol.



THANKS.
 

zMagenta

Posting Freak
Jul 15, 2011
1,414
682
Run these queries.

PHP:
ALTER TABLE `permissions_users`
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0';
 
ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0';
 
INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number> - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_control_name', 'control');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown');
 

Brought

更加努力
Jan 14, 2013
595
203
Those queries worked, and it allowed me to run the emulator correctly. But NOW, it is accepting the connection and then dropping it right away.
 

Brought

更加努力
Jan 14, 2013
595
203
If the emulator is accepting the connections the config has nothing to do with it.
Actually found the reason for the problem and it's because of my proxy. The thread can be closed so people don't post for count.
 

Users who are viewing this thread

Top