-
Notifications
You must be signed in to change notification settings - Fork 20
10.1 Blog
Taufik Firmansyah edited this page Aug 27, 2015
·
1 revision
Installation Step
- Open your application . point to -> Control Panel-> Code Generator then install
- Upload your downloaded blog zip source code and press install
- edit all new modules permisson and make sure superadmin have permission to all access
Troubleshoot.
If table fail created while installation process . just create table manyaly .Put this SQL statment into your phpmyadmin
CREATE TABLE IF NOT EXISTS `tb_blogcategories` (
`CatID` int(6) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`alias` varchar(100) DEFAULT NULL,
`enable` enum('0','1') DEFAULT NULL,
PRIMARY KEY (`CatID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
CREATE TABLE IF NOT EXISTS `tb_blogcomments` (
`commentID` int(11) NOT NULL AUTO_INCREMENT,
`parentID` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`blogID` int(11) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`email` varchar(100) DEFAULT NULL,
`comment` text,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`commentID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ;
CREATE TABLE IF NOT EXISTS `tb_blogs` (
`blogID` int(11) NOT NULL AUTO_INCREMENT,
`CatID` int(6) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`slug` varchar(255) DEFAULT NULL,
`content` text,
`created` datetime DEFAULT NULL,
`tags` varchar(255) DEFAULT NULL,
`status` enum('publish','unpublish','draft') DEFAULT 'draft',
`image` varchar(100) DEFAULT NULL,
`entryby` int(11) DEFAULT NULL,
PRIMARY KEY (`blogID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
####Getting Started
####Setting Application
- Manage Translation
- Manage Social Network
- Manage Basic Info
- Manage Users and Groups
- Blast Emails
- Audit Trails / Log Activities
- Create New Page
- Working with PHP and MySQL on static page
- Create your own theme
- Embed form on your page
- Multilanguage Page content
- Shotcode
- How to disable your input form
- Nested select Dropdown
- [Change Date format] (https://github.com/mangopik/sximo5/wiki/5.3-Changing-Date-format)
- [Select with advance filder] (https://github.com/mangopik/sximo5/wiki/5.4-Select-with-advance-filter)
- Structure
- [Module Configuration Info] (https://github.com/mangopik/sximo5/wiki/6.7-Module-Configuration-Info)
- Formating Post Value before insert to database
- Default Sort and Order
- Entry By table field
- Add default filter Search
- Change view layout template to frontend
- Registering Helpers/Library
- [Notification System] (https://github.com/mangopik/sximo5/wiki/9.2-Notification-Function)