[HELP] CMS Styles messed up

Status
Not open for further replies.

daanvanderuit

Member
Jan 23, 2014
100
10
Hi all,

I've decided to spend my summer holiday on playing around with a little retro project for personal use, and I just downloaded RevCMS with LolNo (former Wicked)'s edit of it (3.0 for the ones interested).

Now all I did was place the "raw" RevCMS in htdocs, imported the database included in "PlusEMU Haboon edit" and replaced the files in htdocs with the files in Wicked's (or LolNo's) pack.

The problem is, the index works fine, shows like it is supposed to, but the me page looks like this
TESSOCnHQ5qzhHdPVoiRkg.png

What did I do wrong? It seems like it is not loading the CSS file, but I checked the link and it is not broken.

Thanks in advance,

Dan
 

Ajax

Social Reject
Aug 22, 2015
101
53
-- ----------------------------
-- Table structure for site_news
-- ----------------------------
DROP TABLE IF EXISTS `site_news`;
CREATE TABLE `site_news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE latin1_general_ci DEFAULT NULL,
`shortstory` text COLLATE latin1_general_ci,
`longstory` text COLLATE latin1_general_ci,
`published` int(10) NOT NULL DEFAULT '0',
`image` varchar(255) COLLATE latin1_general_ci DEFAULT '/Public/Images/news/TS_Web60.png',
`campaign` int(1) NOT NULL DEFAULT '0',
`campaignimg` varchar(255) COLLATE latin1_general_ci NOT NULL,
`author` int(6) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

-- ----------------------------
-- Records of site_news
-- ----------------------------
INSERT INTO `cms_news` VALUES ('1', 'News Filler', 'Space here.', 'You can delete this when you have two or more articles', '1388886077', 'DE_Promo0508.png', '0', '', '1');
INSERT INTO `cms_news` VALUES ('2', 'RevCMS Habbo Theme Edit', 'This revcms theme was modified by Lewis/Lewislol.', 'This revcms theme was released by Lewis on devbest.', '1388886077', 'DE_Promo0508.png', '0', '', '1');
This should work :)
 

daanvanderuit

Member
Jan 23, 2014
100
10
-- ----------------------------
-- Table structure for site_news
-- ----------------------------
DROP TABLE IF EXISTS `site_news`;
CREATE TABLE `site_news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE latin1_general_ci DEFAULT NULL,
`shortstory` text COLLATE latin1_general_ci,
`longstory` text COLLATE latin1_general_ci,
`published` int(10) NOT NULL DEFAULT '0',
`image` varchar(255) COLLATE latin1_general_ci DEFAULT '/Public/Images/news/TS_Web60.png',
`campaign` int(1) NOT NULL DEFAULT '0',
`campaignimg` varchar(255) COLLATE latin1_general_ci NOT NULL,
`author` int(6) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

-- ----------------------------
-- Records of site_news
-- ----------------------------
INSERT INTO `cms_news` VALUES ('1', 'News Filler', 'Space here.', 'You can delete this when you have two or more articles', '1388886077', 'DE_Promo0508.png', '0', '', '1');
INSERT INTO `cms_news` VALUES ('2', 'RevCMS Habbo Theme Edit', 'This revcms theme was modified by Lewis/Lewislol.', 'This revcms theme was released by Lewis on devbest.', '1388886077', 'DE_Promo0508.png', '0', '', '1');
This should work :)
Awesome mate! Thanks! It is partly fixed now. This is the result
 
Status
Not open for further replies.

Users who are viewing this thread

Top