RevCMS not loading anything really

Calicrook

New Member
Jul 20, 2014
5
1
Hey guys I've been running into this issue of images, and other things not loading on my CMS
I've tried multiple CMS's and I still get the same problem, Idk wtf is going on with it anymore.
You must be registered for see images attach
 

Ecko1223

Member
Feb 28, 2013
344
43
The issue is there, "table r64b.cms_news doesn't exist" since the php can't find the table on your database, it brings the page up as an error. A normal phoenix database has this normally, but if you're using a different emulator, here's what to add into your database.
P.S, You're on my hotel, it's Joe from habcast

Code:
/*
MySQL Backup
Source Server Version: 5.6.19
Source Database: poppy123
Date: 7/17/2014 15:56:58
*/

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(11) NOT NULL,
  `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 DEFAULT '',
  `author` text COLLATE latin1_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=252 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
 

Users who are viewing this thread

Top