[Official BrainCMS] 1.4.0

Status
Not open for further replies.

Scope9674

New Member
Jan 19, 2013
13
1
I did it now thanks, but i still got 76% when it is loading..
I changed the Habbo.swf ( Put Habbo.swf from PlusEMU into SWF Pack )
And i also used the cleandatabase.sql ...
Need help pls
 
Dude, can you pls help me now with the Client ??
 

BrainCMS

Brain is live, Live is Brain
Feb 17, 2014
86
32
I did it now thanks, but i still got 76% when it is loading..
I changed the Habbo.swf ( Put Habbo.swf from PlusEMU into SWF Pack )
And i also used the cleandatabase.sql ...
Need help pls
I think your version of the habbo.swf and the emu do not match
 

Scope9674

New Member
Jan 19, 2013
13
1
I think your version of the habbo.swf and the emu do not match

Dude im using the ( Habbo.swf ) from the PlusEmulator Folder and the SWF Pack of the site.
I matched everything. I checked up the Version, so i why is this still on 76% ...
 

BrainCMS

Brain is live, Live is Brain
Feb 17, 2014
86
32
Dude im using the ( Habbo.swf ) from the PlusEmulator Folder and the SWF Pack of the site.
I matched everything. I checked up the Version, so i why is this still on 76% ...
Screen of the config of your BrainCMS and Config of your EMU
 

Scope9674

New Member
Jan 19, 2013
13
1
You must be registered for see images attach

 
You must be registered for see images attach
 

Alezo

Member
Dec 18, 2016
90
10
Hello, can someone send me the cms_news Table. Because I try to send the news to the server, but does not work.

Thank you.
 

Xuxu

Member
Nov 21, 2016
295
59
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;
Hello, can someone send me the cms_news Table. Because I try to send the news to the server, but does not work.

Thank you.
sigh
 

Alezo

Member
Dec 18, 2016
90
10
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;

sigh
When I try to send Word to the cms, right. But it appears not, unfortunately.

Thanks for the help:)
 

Alezo

Member
Dec 18, 2016
90
10
Guy. When I go to the Administrative Panel to write a story, it appears that the newswas sent correctly. However, she does not appear on the home page of the cms.


NOTICE: UNDEFINED INDEX: DATE IN C:\XAMPP\HTDOCS\ADMINPAN\NEWS.PHP ON LINE 116
 

MayoMayn

BestDev
Oct 18, 2016
1,423
683
Guy. When I go to the Administrative Panel to write a story, it appears that the newswas sent correctly. However, she does not appear on the home page of the cms.


NOTICE: UNDEFINED INDEX: DATE IN C:\XAMPP\HTDOCS\ADMINPAN\NEWS.PHP ON LINE 116
Learn some PHP before setting up a retro. Who would even play on a hotel where the owner cant even figure out how to make minimal fixes to some code? Just do some research bro, search for the error ..

Sent from my SM-G928F using Tapatalk
 

Alezo

Member
Dec 18, 2016
90
10
Learn some PHP before setting up a retro. Who would even play on a hotel where the owner cant even figure out how to make minimal fixes to some code? Just do some research bro, search for the error ..

Sent from my SM-G928F using Tapatalk

All right. I managed to resolve the error, I changed table and worked normally.

Below, the table that was changed by 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(100) NOT NULL,
  `image` varchar(100) NOT NULL DEFAULT '0',
  `shortstory` text NOT NULL,
  `longstory` text NOT NULL,
  `author` varchar(100) NOT NULL DEFAULT 'Tom',
  `date` int(11) NOT NULL DEFAULT '0',
  `type` varchar(100) NOT NULL DEFAULT '1',
  `roomid` varchar(100) NOT NULL DEFAULT '1',
  `updated` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=latin1;

Code:
-- ----------------------------
-- Records of cms_news
-- ----------------------------
INSERT INTO `cms_news` VALUES ('33', 'Welkom!', '../images/ts/accessories_general.gif', 'Welkom in RangoHotel!', '<p>Hallo Rango\'s!</p>\r\n<p>Welkom in een nieuw hotel!</p>\r\n<p>We zijn vanaf vandaag open (4-11-2015)</p>\r\n<p> </p>\r\n<p>Er komen snel events en sollicitaties aan.</p>\r\n<p> </p>\r\n<p>Mvg Tom</p>', 'Tom', '1449229241', '1', '1', '1');
 
Status
Not open for further replies.

Users who are viewing this thread

Top