Secure, Simple CMS with Housekeeping?

Dec 7, 2016
65
5
I've been trying to find a secure, simple cms with housekeeping for ages! I've been download this and that, I was hoping to get a basic revcms with housekeeping because I'd want to edit it up on my own but I can't find one! Anyone got any ideas?
 

Xuxu

Member
Nov 21, 2016
295
59
Thank you so much! That's exactly what I wanted, just a template to style up y'know? Anyway Thanks!

Some parts of it aren't working, I can't delete or post news articles, do you know where I could get the sqls for this?
if u want i can teamviewer you and fix as many problems u have as i can

you don't need an sql but to post an article you need a few columns
published
campaign
campaignimg

add these columns to your cms_news table and to delete an article just delete it in the database
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
If you're using Sledmore's Plus DB it probably doesn't have this.
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;
 
Dec 7, 2016
65
5
If you're using Sledmore's Plus DB it probably doesn't have this.
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;

oh, that fixed it up, thanks! c:
 

Xuxu

Member
Nov 21, 2016
295
59
plus is missing campaign, campaignimg and published by default so i was correct as well lol but u probably went with JMG's because u dont know how to add a simple column to your database
 

Users who are viewing this thread

Top