Lewislol's Habbo RevCMS theme edit [ Template messed up ]
Hello guys, and gals..
I am using Lewislol's Habbo theme for RevCMS, the latest revision. And I've seemingly set it up correctly (from what I know :junglejane:) and to no avail, this is what it looks like:
http://prntscr.com/4ex88v
Here is a copy of my Javascript console log (click here for an image):
Quote:
- [COLOR=red !important]Uncaught TypeError: Cannot read property 'down' of null fullcontent.js:58
Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains. ping?client_id=608596552509045&domain=127.0.0.1&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebo…:1
[/COLOR]
I am using Nginx if it helps, somewhat.. All help is appreciated, thanks. :fanny:
- - - Updated - - -
$5 for anyone who can suggest a fix for this within the next hour.
Re: Lewislol's Habbo RevCMS theme edit [ Template messed up ]
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');
Re: Lewislol's Habbo RevCMS theme edit [ Template messed up ]
Quote:
Originally Posted by
Lewislol
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');
Cheers.