A good CMS

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
If you're using Cloudflare purge the pages and then clear your cache. If you're still getting the white screen try adding this table.

Code:
-- ----------------------------
-- 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 '/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;
 

Kak

Posting Freak
Apr 21, 2017
951
165
but really cant you look in the release section? there are a ton of cms. no ones gonna recommend you a cms because its their opinion on if the cms is good or not. you need to find a cms that you like yourself and possibly edit it up to make it better.
 

Users who are viewing this thread

Top