RevCMS Habbo Theme Edit

Clink

hmu
Aug 10, 2018
63
13
You must be registered for see images attach

You must be registered for see images attach


Can someone help, why's this doing this?
 

Harold

New Member
Nov 27, 2011
18
2
Hey, I was trying to upload a news article through the HK and got "Table 'habbo.cms_news' doesn't exist"

Anyone know how to fix this?


You must be registered for see images attach
 

Hypothesis

Programmer
Jan 6, 2019
524
361
Hey, I was trying to upload a news article through the HK and got "Table 'habbo.cms_news' doesn't exist"

Anyone know how to fix this?


You must be registered for see images attach
Code:
CREATE TABLE `cms_news`  (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT NULL,
  `shortstory` text CHARACTER SET latin1 COLLATE latin1_general_ci NULL,
  `longstory` text CHARACTER SET latin1 COLLATE latin1_general_ci NULL,
  `published` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `image` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT '/Public/Images/news/TS_Web60.png',
  `campaign` int(1) NOT NULL DEFAULT 0,
  `author` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `campaignimg` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_general_ci ROW_FORMAT = Dynamic;
Run this query via Navicat/PHPMyAdmin
 

Harold

New Member
Nov 27, 2011
18
2
Code:
CREATE TABLE `cms_news`  (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT NULL,
  `shortstory` text CHARACTER SET latin1 COLLATE latin1_general_ci NULL,
  `longstory` text CHARACTER SET latin1 COLLATE latin1_general_ci NULL,
  `published` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `image` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT '/Public/Images/news/TS_Web60.png',
  `campaign` int(1) NOT NULL DEFAULT 0,
  `author` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '',
  `campaignimg` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_general_ci ROW_FORMAT = Dynamic;
Run this query via Navicat/PHPMyAdmin

Worked perfect, thanks!
 

DVerse

Member
Oct 8, 2016
53
6
how can i edit the footer of index.php
i need to change the facebook link..
Post automatically merged:

edit: nevermind my last post was just blind :eek:

i have 3 problems i have pictures, someone know how to fix that? where i must link it ?
 

Attachments

  • screen11111111.JPG
    screen11111111.JPG
    22.8 KB · Views: 16
  • screen111111111.JPG
    screen111111111.JPG
    104.8 KB · Views: 16
  • screen1111111111.JPG
    screen1111111111.JPG
    85.8 KB · Views: 16
Last edited:

Hypothesis

Programmer
Jan 6, 2019
524
361
First and second screenshots, you need to add those to your class.template.php, as for editing the bottom, go to includes/footer.php
 

Users who are viewing this thread

Top