[Help] Emulator Error.

xXLesterXx

Member
Apr 27, 2012
103
2
Hi DevBest.

I'm using Phoenix 3.11.0 and when I run the emulator, it shows this error.

4qo7ee.png


Here is my config.conf
Code:
## Phoenix 3.0 System Configuration File

## Licence Information
Otaku-Studios.username=FudgeZ
Otaku-Studios.password=nope

## Licence Server Information
LicenceServer.URL=http://localhost/phx/

## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=*********
db.name=rev_cms

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=30

## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=5000

## Client configuration
client.ping.enabled=1
client.ping.interval=30000

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=127.0.0.1

## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
 

Hindi

System.out.println(" ");
Dec 30, 2012
989
192
Hi DevBest.

I'm using Phoenix 3.11.0 and when I run the emulator, it shows this error.

4qo7ee.png


Here is my config.conf
Code:
## Phoenix 3.0 System Configuration File

## Licence Information
*****.username=FudgeZ
*****.password=nope

## Licence Server Information
LicenceServer.URL=http://localhost/phx/

## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=*********
db.name=rev_cms

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=30

## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=5000

## Client configuration
client.ping.enabled=1
client.ping.interval=30000

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=127.0.0.1

## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
Code:
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');

Run them SQL's in your database and it will work.

If you had brains and good eyes, You would have checked this in your SQL's in the phoenix folder with CAPS saying "Fix.fuckingSQL"
 

xXLesterXx

Member
Apr 27, 2012
103
2
I
Code:
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');

Run them SQL's in your database and it will work.

If you had brains and good eyes, You would have checked this in your SQL's in the phoenix folder with CAPS saying "Fix.fuckingSQL"
I already figured it out, My problem is my f*cking client wont load.
 

Users who are viewing this thread

Top