Brain cms cant make any news

SupahCookie

Member
Feb 18, 2015
79
0
Hey!
I installed brain cms, and plus emulator (PRODUCTION-201701242205-837386173)
When iam trying to make news for on the cms, he isnt sending it to the database, (everything is working.. execpt that..) is that a bug in brain cms? Or is it my fault...

Greets
 

Xuxu

Member
Nov 21, 2016
295
59
try running this in your database as a query

-- ----------------------------
-- 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;
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Today that up a bit:
Code:
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;
 

SupahCookie

Member
Feb 18, 2015
79
0
This kinda works, now i can create news with the database.. but not with the cms it self.. i need to place test every where, than i can edit it in the cms.. but i cant make any new one
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Maybe it's something wrong with the adminpanel itself, if you downloaded that adminpan some guy released as a english version, try reuploading it
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Zaka in all fairness wouldn't it bring up an error if something was missing in the table?



Translated Adminpan for BrainCMS
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Try the adminpan I sent you.

I was talking to Zaka as he said make sure all the tables are right in the cms_neas table and I just said wouldn't there be an error when you click create or something
 

Users who are viewing this thread

Top