[SOLVED] Phoenix error.

Status
Not open for further replies.

colby1515O

New Member
Jun 13, 2011
23
0
Why do i keep getting an error when i open phoenix saying column external_chatlinks or something does not belong to table...
 

Kanebrah

Member
May 23, 2011
465
98
Please run this query below.
DROP TABLE IF EXISTS `server_settings`;
CREATE TABLE `server_settings` (
`motd` text NOT NULL,
`timer` int(11) NOT NULL DEFAULT '15',
`pixels` int(11) NOT NULL DEFAULT '15',
`credits` int(11) NOT NULL DEFAULT '75',
`enable_chatlogs` enum('0','1') NOT NULL DEFAULT '1',
`enable_roomlogs` enum('0','1') NOT NULL DEFAULT '1',
`vipclothesforhcusers` enum('1','0') NOT NULL DEFAULT '1',
`MaxRoomsPerUser` int(4) NOT NULL DEFAULT '50',
`enable_externalchatlinks` enum('disabled','blacklist','whitelist') NOT NULL DEFAULT 'disabled',
`enable_securesessions` enum('1','0') NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of server_settings
-- ----------------------------
INSERT INTO server_settings VALUES ('Please change your motd \\nYou can find this message in your server_settings table :)', '15', '15', '75', '1', '1', '1', '50', 'disabled');
 

colby1515O

New Member
Jun 13, 2011
23
0
Thank you. But when I do that and go to localhost/ I get something like this above the login screen.: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\online.php on line 2

Also when I register it says everyname is invalid blah blah blah.... ?

-------------------------- Post merged 8 Hours 42 minutes after original post. ---------------------------

Why does it do this?
 

Awer

- 23K Carot Facials
Dec 29, 2010
113
3
Show us a screenshot; Click PrntScreen Paste it in mspaint then upload it in Tinypic.com/RadioShack, Otherwise your on your own.
 

colby1515O

New Member
Jun 13, 2011
23
0
Big as i can get it....

-------------------------- Post merged 38 minutes after original post. ---------------------------

I got it working guys.
 

Kieren

The OGz
Aug 4, 2010
2,957
751
[mod] Thread closed problem solved, to re-open the thread if you are still having trouble please private message a section moderator. [/mod]
 
Status
Not open for further replies.

Users who are viewing this thread

Top