
Originally Posted by
PGTibs
Feel like an absolute noob, but i can't figure this out at all. I've installed it all correctly, and it's working with the database. But for some reason the header isn't appearing properly. I'm running it on IIS 7 and i've checked over the CSS and files completely and they're identical to the release. Any ideas?

Run these SQLs
Code:
/*
Navicat MySQL Data Transfer
Source Server : RolePlay
Source Server Version : 50616
Source Host : 91.121.203.6:3306
Source Database : roleplay_hotel
Target Server Type : MYSQL
Target Server Version : 50616
File Encoding : 65001
Date: 2014-04-20 01:26:13
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `cms_news`
-- ----------------------------
DROP TABLE IF EXISTS `cms_news`;
CREATE TABLE `cms_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 'Arctic_Race_TopStory.png',
`campaign` int(1) NOT NULL DEFAULT '0',
`campaignimg` varchar(255) COLLATE latin1_general_ci NOT NULL DEFAULT 'Arctic_Race_TopStory.png',
`author` int(6) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Records of cms_news
-- ----------------------------
INSERT INTO `cms_news` VALUES ('1', 'Welcome to {hotelname}!', 'This RP is powered by AstroRP V2.', 'RevCMS rp theme by Lewis.', '0', 'Arctic_Race_TopStory.png', '0', 'Arctic_Race_TopStory.png', '1');
-- ----------------------------
-- Table structure for `site_facts`
-- ----------------------------
DROP TABLE IF EXISTS `site_facts`;
CREATE TABLE `site_facts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`fact` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of site_facts
-- ----------------------------
INSERT INTO `site_facts` VALUES ('1', 'Enter in site_facts');
INSERT INTO `site_facts` VALUES ('2', 'Enter in site_facts');
INSERT INTO `site_facts` VALUES ('3', 'Enter in site_facts');
INSERT INTO `site_facts` VALUES ('4', 'Enter in site_facts');
INSERT INTO `site_facts` VALUES ('5', 'Enter in site_facts');
-- ----------------------------
-- Table structure for `site_header`
-- ----------------------------
DROP TABLE IF EXISTS `site_header`;
CREATE TABLE `site_header` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`color` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
INSERT INTO `site_header` VALUES ('1', 'lightblue');