Tarichi, Sebuah CMS berbasis CI
CodeIgniter adalah salah satu framework pemograman PHP yang saat ini sedang lezat dan populer dinikmati oleh banyak developer web. CI menjadi semacam jembatan dan solusi cerdik dan murah daripada memanfaatkan framework Zend yang terlalu raksasa (walaupun 100% kompatibel dengan PHP).
Hmm, pada post kali ini saya hanya membagikan source dari Tarichi, sebuah CMS (manajemen konten) yang dibuat berbasis CI. Tarichi memang tak sepopuler dan tak seramah arinta, atau jika dibandingkan dengan CMS non-CI lainnya. Namun, seperti kata darkstar_cc, seorang senior developer saya, Belajar Tarichi hanya ingin mencari pandangan alur pemrogramannya yang cantik.
Tarichi 0.3 final, datang dengan ukuran badan yang besar, hampir 5 MB. Namun, didalamnya kita sudah dapat belajar banyak hal dari otentikasi, galeri gambar, manajemen file, log, dll. Jangan dibandingkan dengan CI, yang cuma 1,2 MB lebih.
Ini gan, saya bagi sourcenya (download via ziddu)
http://www.ziddu.com/download/3943543/tarichi0.3final.zip.html
Untuk Instalasinya, cukup ekstrak dan buatlah database dengan nama db_tarichi. Kemudian dump source database berikut
– phpMyAdmin SQL Dump
– version 2.11.3deb1ubuntu1
– http://www.phpmyadmin.net
–
– Host: localhost
– Generation Time: Aug 08, 2008 at 05:12 PM
– Server version: 5.0.51
– PHP Version: 5.2.4-2ubuntu5.3
SET SQL_MODE=”NO_AUTO_VALUE_ON_ZERO”;
–
– Database: `db_tarichi`
–
– ——————————————————–
–
– Table structure for table `banner`
–
CREATE TABLE IF NOT EXISTS `banner` (
`banner_id` int(11) NOT NULL auto_increment,
`banner_source` varchar(150) NOT NULL,
`alt_text` varchar(250) NOT NULL,
`link_to` varchar(250) NOT NULL,
`new_window` int(11) NOT NULL,
`active` int(11) NOT NULL,
PRIMARY KEY (`banner_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
–
– Dumping data for table `banner`
–
INSERT INTO `banner` (`banner_id`, `banner_source`, `alt_text`, `link_to`, `new_window`, `active`) VALUES
(2, ‘ci_logo2.gif’, ‘CodeIgniter’, ‘http://www.codeigniter.com’, 1, 1);
– ——————————————————–
–
– Table structure for table `captcha`
–
CREATE TABLE IF NOT EXISTS `captcha` (
`captcha_id` bigint(13) unsigned NOT NULL auto_increment,
`captcha_time` int(10) unsigned NOT NULL,
`ip_address` varchar(16) NOT NULL default ’0′,
`word` varchar(20) NOT NULL,
PRIMARY KEY (`captcha_id`),
KEY `word` (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=62 ;
–
– Dumping data for table `captcha`
–
INSERT INTO `captcha` (`captcha_id`, `captcha_time`, `ip_address`, `word`) VALUES
(61, 1218189880, ’127.0.0.1′, ‘hLOzqJaE’),
(60, 1218026130, ’127.0.0.1′, ‘gguBBSvu’),
(56, 1218026004, ’127.0.0.1′, ‘zQiBPvMb’),
(57, 1218026035, ’127.0.0.1′, ‘FGW7vUGb’),
(58, 1218026051, ’127.0.0.1′, ‘yAhzh1DJ’),
(59, 1218026110, ’127.0.0.1′, ‘BXjenLGx’);
– ——————————————————–
–
– Table structure for table `category`
–
CREATE TABLE IF NOT EXISTS `category` (
`category_id` int(11) NOT NULL auto_increment,
`category_name` varchar(150) NOT NULL,
`cat_slug` varchar(150) NOT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
–
– Dumping data for table `category`
–
INSERT INTO `category` (`category_id`, `category_name`, `cat_slug`) VALUES
(15, ‘Blog’, ‘blog’),
(11, ‘Release Record’, ‘release-record’),
(12, ‘Video Tutorial’, ‘video-tutorial’),
(13, ‘Tarichi Template’, ‘tarichi-template’),
(14, ‘Bug Tracker’, ‘bug-tracker’);
– ——————————————————–
–
– Table structure for table `comment`
–
CREATE TABLE IF NOT EXISTS `comment` (
`comment_id` int(11) NOT NULL auto_increment,
`dynamic_id` int(11) NOT NULL,
`sender` varchar(150) NOT NULL,
`email` varchar(150) NOT NULL,
`url` varchar(150) NOT NULL,
`date_created` int(11) NOT NULL,
`message` longtext NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`comment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
–
– Dumping data for table `comment`
–
INSERT INTO `comment` (`comment_id`, `dynamic_id`, `sender`, `email`, `url`, `date_created`, `message`, `status`) VALUES
(13, 17, ‘test’, ‘test’, ‘test’, 2008, ‘test’, 1),
(14, 18, ‘abc’, ‘abc’, ‘acb’, 2008, ‘adsf’, 1),
(12, 17, ‘aaa’, ‘aaa@aaa.com’, ‘aaa’, 2008, ‘adsfasfd’, 1),
(21, 28, ‘test’, ‘test@yahoo.com’, ‘http://yahoo.com’, 2008, ‘Test’, 0);
– ——————————————————–
–
– Table structure for table `dynamic`
–
CREATE TABLE IF NOT EXISTS `dynamic` (
`dynamic_id` int(11) NOT NULL auto_increment,
`dynamic_title` longtext NOT NULL,
`slug` longtext NOT NULL,
`content` longtext NOT NULL,
`date_created` int(11) NOT NULL,
`def_images` varchar(150) NOT NULL,
`attachment` varchar(150) NOT NULL,
`keywords` longtext NOT NULL,
`description` longtext NOT NULL,
`publish` int(11) NOT NULL,
`author` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`allow_comment` int(11) NOT NULL,
PRIMARY KEY (`dynamic_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=30 ;
–
– Dumping data for table `dynamic`
–
INSERT INTO `dynamic` (`dynamic_id`, `dynamic_title`, `slug`, `content`, `date_created`, `def_images`, `attachment`, `keywords`, `description`, `publish`, `author`, `category_id`, `allow_comment`) VALUES
(22, ‘Tarichi V.0.3′, ‘tarichi-v03′, ‘
Finally, Version 0.3 released to public. These are mayor changes in Tarichi V.0.3
\n
\n
Added :
\n
- \n
- Framework update, using CodeIgniter 1.6.3.
- Dynamic Template Chooser has been activated.
- On / Off Switcher for Static HomePage, (if you want home page in blog style).
- Multiple Selection for deleting Pages and Dynamic Items.
- Automatic unpublish when page/dynamic item edited.
- BackPanel Re-Design.
- MultiLanguage Support for BackPanel.
\n
\n
\n
\n
\n
\n
\n
\n
Bugs Repaired :
\n
- \n
- Wrong address for Image Uploader in Static HomePage setting.
- Deleting sub menu will affect to parent menu.
\n
\n
\n
Improved :
\n
- \n
- Folder structure re-position.
\n
‘, 0, ”, ”, ‘Tarichi V.0.3, Web Publishing System, Content Management System’, ‘Finally, Version 0.3 released to public. These are mayor changes in Tarichi V.0.3′, 1, 0, 11, 1),
(29, ‘The date is still moving so fast’, ‘the-date-is-still-moving-so-fast’, ‘
Few days left for launch the new version of Tarichi, it”s hard to check one by one the error and try all of thing inside Tarichi.
‘, 1218188677, ”, ”, ‘The, date, is, still, moving, so, fast’, ‘The date is still moving so fast’, 1, 1, 15, 1);
– ——————————————————–
–
– Table structure for table `extra_item`
–
CREATE TABLE IF NOT EXISTS `extra_item` (
`extra_id` int(11) NOT NULL auto_increment,
`extra_name` varchar(30) NOT NULL,
`extra_con` varchar(30) NOT NULL,
`extra_view` varchar(30) NOT NULL,
PRIMARY KEY (`extra_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
–
– Dumping data for table `extra_item`
–
INSERT INTO `extra_item` (`extra_id`, `extra_name`, `extra_con`, `extra_view`) VALUES
(2, ‘Gallery’, ‘gallery’, ‘gallery’),
(3, ‘Contact’, ‘contact’, ‘contact’);
– ——————————————————–
–
– Table structure for table `ex_cat_gallery`
–
CREATE TABLE IF NOT EXISTS `ex_cat_gallery` (
`cat_gallery_id` int(11) NOT NULL auto_increment,
`cat_gallery_name` varchar(250) NOT NULL,
`cat_gallery_slug` varchar(250) NOT NULL,
PRIMARY KEY (`cat_gallery_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
–
– Dumping data for table `ex_cat_gallery`
–
INSERT INTO `ex_cat_gallery` (`cat_gallery_id`, `cat_gallery_name`, `cat_gallery_slug`) VALUES
(5, ‘BackPanel’, ‘cat_gallery/backpanel’);
– ——————————————————–
–
– Table structure for table `ex_gallery`
–
CREATE TABLE IF NOT EXISTS `ex_gallery` (
`gallery_id` int(11) NOT NULL auto_increment,
`gallery_title` varchar(250) NOT NULL,
`gallery_caption` longtext NOT NULL,
`gallery_source` varchar(250) NOT NULL,
`gallery_thumb` varchar(250) NOT NULL,
`cat_gallery_id` int(11) NOT NULL,
PRIMARY KEY (`gallery_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;
–
– Dumping data for table `ex_gallery`
–
INSERT INTO `ex_gallery` (`gallery_id`, `gallery_title`, `gallery_caption`, `gallery_source`, `gallery_thumb`, `cat_gallery_id`) VALUES
(6, ‘Main Panel Administrator’, ‘
Dengan menu-menu yang terstruktur dan memberikan bagian-bagian yang jelas dalam pemisahan-pemisahan kelompok dari item menu.
‘, ‘mainadmin.jpg’, ‘mainadmin_thumb.jpg’, 1),
(5, ‘Login Form’, ‘
Login form dengan tidak diberikannya pilihan untuk Remember Me!.
‘, ‘loginform.jpg’, ‘loginform_thumb.jpg’, 1),
(7, ‘Site Configuration’, ‘
Sebuah konfigurasi yang mudah diatur dan memungkinkan untuk mengontrol.
‘, ‘site_config.jpg’, ‘site_config_thumb.jpg’, 1),
(8, ‘Template Structure’, ‘
Susunan dari file-file template yang dapat dimodifikasi sedemikian rupa
‘, ‘template_structure.jpg’, ‘template_structure_thumb.jpg’, 2),
(9, ‘test 1′, ‘
this is test 1
‘, ‘!1_(1).jpg’, ‘!1_(1)_thumb.jpg’, 3),
(10, ‘test 2′, ‘
test number 2
‘, ’180px-Heroes_helix_svg.png’, ’180px-Heroes_helix_svg_thumb.png’, 3),
(11, ‘test 3′, ‘
test number 3
‘, ’1317445.jpg’, ’1317445_thumb.jpg’, 3),
(12, ‘test 4′, ‘
test number 4
‘, ‘isystem.jpg’, ‘isystem_thumb.jpg’, 3),
(13, ‘bbb’, ‘
bbbbb
‘, ‘Screenshot.png’, ‘Screenshot_thumb.png’, 1),
(14, ‘asd’, ‘
addddd
‘, ‘DSC00550.JPG’, ‘DSC00550_thumb.JPG’, 4),
(15, ‘Header Management’, ‘
Show the easy way managing the Header
‘, ‘sc3.jpg’, ‘sc3_thumb.jpg’, 5),
(16, ‘Main Page’, ‘
This is the main page
‘, ‘sc2.jpg’, ‘sc2_thumb.jpg’, 5),
(17, ‘Menu’, ‘
The Menu
‘, ‘sc1.jpg’, ‘sc1_thumb.jpg’, 5);
– ——————————————————–
–
– Table structure for table `file_management`
–
CREATE TABLE IF NOT EXISTS `file_management` (
`file_id` int(11) NOT NULL auto_increment,
`file_source` varchar(150) NOT NULL,
`alt_text` varchar(150) NOT NULL,
`file_thumb` longtext NOT NULL,
PRIMARY KEY (`file_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
–
– Dumping data for table `file_management`
–
– ——————————————————–
–
– Table structure for table `header_data`
–
CREATE TABLE IF NOT EXISTS `header_data` (
`header_id` int(11) NOT NULL auto_increment,
`header_source` varchar(150) NOT NULL,
`alt_text` varchar(150) NOT NULL,
`link_to` varchar(250) NOT NULL,
`new_window` int(11) NOT NULL,
`active` int(11) NOT NULL,
PRIMARY KEY (`header_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
–
– Dumping data for table `header_data`
–
INSERT INTO `header_data` (`header_id`, `header_source`, `alt_text`, `link_to`, `new_window`, `active`) VALUES
(2, ‘header_sample.jpg’, ‘First Header’, ‘http://www.tarichi.com’, 1, 1);
– ——————————————————–
–
– Table structure for table `home_page`
–
CREATE TABLE IF NOT EXISTS `home_page` (
`home_title` longtext NOT NULL,
`home_content` longtext NOT NULL,
`home_image` varchar(150) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
–
– Dumping data for table `home_page`
–
INSERT INTO `home_page` (`home_title`, `home_content`, `home_image`, `status`) VALUES
(‘Welcome to Tarichi’, ‘
Welcome to the Tarichi.
\n
Tarichi is a Web Publisihing System or WPS, that can help you to build site become fun, easy and fast. Based on CodeIgniter framework, the best and well documented lightweight framework, Tarichi can be easily developed by everyone who understood that framework.
\n
Tarichi is free of charge, free to distribute, and free to modify using GNU-GPL3 license.
\n
What kind of site can be builded by Tarichi ?
\n
- \n
- Personal site, such as blogs.
- Company Profile site.
- Portal Site.
- Product Promotion site.
- And many more.
\n
\n
\n
\n
\n
\n
‘, ‘sample_image.png’, 1);
– ——————————————————–
–
– Table structure for table `log_access`
–
CREATE TABLE IF NOT EXISTS `log_access` (
`log_id` int(11) NOT NULL auto_increment,
`log_date` varchar(150) NOT NULL,
`log_action` longtext NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;
–
– Dumping data for table `log_access`
–
– ——————————————————–
–
– Table structure for table `page`
–
CREATE TABLE IF NOT EXISTS `page` (
`page_id` int(11) NOT NULL auto_increment,
`page_name` varchar(150) NOT NULL,
`menu_display` varchar(150) NOT NULL,
`slug` longtext NOT NULL,
`page_title` longtext NOT NULL,
`content` longtext NOT NULL,
`def_images` varchar(150) NOT NULL,
`attachment` varchar(150) NOT NULL,
`keywords` longtext NOT NULL,
`description` longtext NOT NULL,
`page_order` int(11) NOT NULL,
`top_page` int(11) NOT NULL,
`publish` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`position_id` int(11) NOT NULL,
PRIMARY KEY (`page_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=86 ;
–
– Dumping data for table `page`
–
INSERT INTO `page` (`page_id`, `page_name`, `menu_display`, `slug`, `page_title`, `content`, `def_images`, `attachment`, `keywords`, `description`, `page_order`, `top_page`, `publish`, `category_id`, `position_id`) VALUES
(61, ‘Lanuch Demo’, ‘Launch Demo’, ‘page/launch-demo’, ‘Launch Demo’, ‘
Demo site tarichi :
\n
Main site : http://demo.tarichi.com
\n
BackPanel : http://demo.tarichi.com/login username : admin, password : admin
\n
‘, ”, ”, ”, ”, 8, 59, 1, 0, 0),
(62, ‘Why Tarichi ?’, ‘Why Tarichi?’, ‘page/why-tarichi’, ‘Why Tarichi?’, ‘
You have to build your site using Tarichi if :
\n
- \n
- You are tired with complex CMS and need the simple way to build, manage, and publish your site.
- You need to use the web as your publishing system.
- You don”t want to code the site from zero.
- You need the clean Templating System.
- You are not a web developer and have to build a website in days.
- You are the CodeIgniter coder.
\n
\n
\n
\n
\n
\n
\n
‘, ”, ”, ”, ”, 3, 56, 1, 0, 0),
(63, ‘Support’, ‘Support’, ‘page/support’, ‘Support’, ‘
Support will explain about :
‘, ”, ”, ”, ”, 10, 0, 1, 0, 0),
(64, ‘Video Tutorial’, ‘Video Tutorial’, ‘category/video-tutorial’, ‘Video Tutorial’, ”, ”, ”, ”, ”, 11, 63, 1, 12, 0),
(65, ‘Documentation’, ‘Documentation’, ‘page/documentation’, ‘Documentation’, ”, ”, ”, ”, ”, 12, 63, 1, 0, 0),
(66, ‘Tarichi Template’, ‘Tarichi Template’, ‘category/tarichi-template’, ‘Tarichi Template’, ”, ”, ”, ”, ”, 9, 59, 1, 13, 0),
(67, ‘Bugs Tracker’, ‘Bugs Tracker’, ‘category/bug-tracker’, ‘Bugs Tracker’, ”, ”, ”, ”, ”, 13, 63, 1, 14, 0),
(68, ‘Tarichi Blog’, ‘Tarichi Blog’, ‘category/blog’, ‘Blog from Tarichi’, ”, ”, ”, ”, ”, 14, 0, 1, 15, 0),
(69, ‘Minimum Requirements’, ‘Minimum Requirements’, ‘page/minimum-requirements’, ‘Minimum Requirements’, ‘
To run Tarichi on your server. Minimum requirements are :
\n
- \n
- At least 10mb available space.
- PHP 4.1.x or newer
- MySQL Ver 3.x or newer (Version 4 recomended)
- PHP must support XML
- Database access like SELECT, INSERT, UPDATE, DELETE, DROP, ALTER, CREATE
- GD/ImageMagick/NetPBM support.
\n
\n
\n
\n
\n
\n
\n
‘, ”, ”, ”, ”, 4, 56, 1, 0, 0),
(70, ‘Installation’, ‘Installation’, ‘page/installation’, ‘Installation’, ”, ”, ”, ”, ”, 15, 63, 1, 0, 0),
(71, ‘Contact’, ‘Contact’, ‘page/contact’, ‘Contact’, ‘
Please contact Tarichi by fill out these fields
‘, ”, ”, ”, ”, 16, 0, 1, 902, 0),
(60, ‘Release Record’, ‘Release Record’, ‘category/release-record’, ‘Release Record’, ‘
Test
‘, ”, ”, ”, ”, 7, 59, 1, 11, 0),
(56, ‘About’, ‘About’, ‘page/about-tarichi’, ‘About Tarichi’, ‘
This section will explain :
‘, ”, ”, ‘About, Tarichi, Web Publishing System, Content Management, Web site’, ‘This section is telling about Tarichi’, 1, 0, 1, 0, 0),
(57, ‘Features’, ‘Features’, ‘page/features’, ‘Features’, ‘
Page Creation :
Common (same with other)
1. Page Leveling.
2. Reordering Page.
3. Wysiwyg integration using TinyMCE.
4. Page become menu and menu become page.
5. Side Menu, Top Menu, and Other Menu.
Different (Tarichi Specialist)
1. Page convertion into dynamic items (Like news, event, etc).
2. Page convertion into gallery.
3. Page convertion into contact page.
4. Page convertion into Sitemap.
5. Page convertion into Link to other site.
Templating :
Common (same with other)
1. Multitemplate Support.
2. Autoinstallation compressed template.
Site Configuration :
Common (same with other)
1. Site Name Set.
2. Slogan Set.
3. Default Keyword setting.
4. Default Description setting.
5. MultiLanguage Support for BackPanel.
Different :
1. Static Home Page with default image.
2. Static Home Page switcher (on/off) for blogging purpose.
3. Header Image management.
4. Banner Image management.
5. Dynamic Sidebar with simple creation.
User Administration :
1. User set in specific rule.
Site Logging :
1. Record every single user did.
2. Unique Visitor (Beta)
Bloggin System :
Common (same with other)
1. Categories.
2. Posting on fly.
3. Commenting System.
Extra Items (Extends)
1. Gallery Extra (Included)
2. Product Extra (Included)
3. Contact Extra (Beta)
File Management (Beta)
‘, ”, ”, ”, ”, 2, 56, 1, 0, 0),
(58, ‘Developers’, ‘Developers’, ‘page/tarichi-developers’, ‘Tarichi Developers’, ‘
Will be displayed soon
‘, ”, ”, ”, ”, 5, 56, 1, 0, 0),
(59, ‘Download’, ‘Download’, ‘page/download-tarichi’, ‘Download Tarichi’, ‘
Latest release is version 0.3
\n
‘, ”, ”, ”, ”, 6, 0, 1, 0, 0),
(73, ‘Screenshoot’, ‘Screenshoot’, ‘gallery’, ‘Screenshoot of Tarichi’, ”, ”, ”, ”, ”, 17, 56, 1, 901, 0),
(79, ‘Sitemap’, ‘Sitemap’, ‘page/sitemap’, ‘Sitemap’, ”, ”, ”, ”, ”, 18, 0, 1, 903, 0);
– ——————————————————–
–
– Table structure for table `sidebar_item`
–
CREATE TABLE IF NOT EXISTS `sidebar_item` (
`sidebar_id` int(11) NOT NULL auto_increment,
`sidebar_name` varchar(60) NOT NULL,
`sidebar_title` longtext NOT NULL,
`sidebar_type` varchar(13) NOT NULL,
`special_setting` varchar(150) NOT NULL,
`order_list` int(11) NOT NULL,
`publish` int(11) NOT NULL,
PRIMARY KEY (`sidebar_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ;
–
– Dumping data for table `sidebar_item`
–
INSERT INTO `sidebar_item` (`sidebar_id`, `sidebar_name`, `sidebar_title`, `sidebar_type`, `special_setting`, `order_list`, `publish`) VALUES
(19, ‘Other Site’, ‘Other Site’, ‘Banner’, ‘banner’, 2, 1),
(18, ‘Latest Release’, ‘Latest Release’, ‘dynamic_loop’, ‘,11,1,150,Get in Touch’, 1, 1);
– ——————————————————–
–
– Table structure for table `site_config`
–
CREATE TABLE IF NOT EXISTS `site_config` (
`site_name` varchar(154) NOT NULL,
`slogan` varchar(150) NOT NULL,
`fav_icon` varchar(150) NOT NULL,
`per_page` int(11) NOT NULL,
`def_keywords` longtext NOT NULL,
`def_description` longtext NOT NULL,
`footer_stamp` longtext NOT NULL,
`date_format` varchar(150) NOT NULL,
`lang` varchar(50) NOT NULL,
`main_email` varchar(80) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
–
– Dumping data for table `site_config`
–
INSERT INTO `site_config` (`site_name`, `slogan`, `fav_icon`, `per_page`, `def_keywords`, `def_description`, `footer_stamp`, `date_format`, `lang`, `main_email`) VALUES
(‘Tarichi’, ‘Web Publishing System’, ‘favicon.ico’, 10, ‘New CMS, Content, Management, System’, ‘This is the brand new CMS made by eenx’, ‘©Tarichi, All Right Reserved
Tarichi V.0.1 Beta’, ‘%d %F %Y %h:%i:%a’, ‘english’, ‘srobet@yahoo.com’);
– ——————————————————–
–
– Table structure for table `template`
–
CREATE TABLE IF NOT EXISTS `template` (
`template_id` int(11) NOT NULL auto_increment,
`template_name` varchar(30) NOT NULL,
`author` varchar(30) NOT NULL,
`preview` varchar(150) NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
–
– Dumping data for table `template`
–
INSERT INTO `template` (`template_id`, `template_name`, `author`, `preview`, `status`) VALUES
(1, ‘beez_design’, ‘New CMS’, ‘preview.jpg’, 1);
– ——————————————————–
–
– Table structure for table `user_access`
–
CREATE TABLE IF NOT EXISTS `user_access` (
`user_id` int(11) NOT NULL auto_increment,
`username` varchar(30) NOT NULL,
`password` varchar(100) NOT NULL,
`email` varchar(60) NOT NULL,
`user_name` varchar(30) NOT NULL,
`last_login` varchar(70) NOT NULL,
`page_access` varchar(100) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
–
– Dumping data for table `user_access`
–
INSERT INTO `user_access` (`user_id`, `username`, `password`, `email`, `user_name`, `last_login`, `page_access`) VALUES
(1, ‘admin’, ’21232f297a57a5a743894a0e4a801fc3′, ”, ‘Administrator’, ’08 August 2008, 04:08:36′, ‘all’);

[url=http://audiojungle.net/user/paealo]Buy Propecia Online[/url] … [url=http://forums.theplanet.com/index.php?showuser=52732]Buy Soma Online[/url]
Viagra are often the first [url=http://www.nissansilvia.com/forums/index.php?showuser=65704]Cheap Viagra[/url] treatment tried for erectile dysfunction. [url=http://forums.trumba.com/index.php?showuser=2559]Buy Xenical[/url]
What [url=http://www.shreveport.com/shrevetalk/members.php?u=111]Buy Viagra Online[/url] does is simple: When it works [url=http://www.url.com/user/ViagraSoft]viagra soft tabs[/url] as intended, causes [url=http://www.coolstreaming.us/forum/members/buy-lasix.html]Buy Lasix[/url] a man who is sexually stimulated to get an erection. [url=http://www.malwarebytes.org/forums/index.php?showuser=12400]buy cipro[/url]
Cialis [url=http://www.url.com/user/CialisSoft]cialis soft tab[/url] is taken orally and [url=http://forums.theplanet.com/index.php?showuser=52729]Buy Zithromax[/url] helps men suffering [url=http://forums.trumba.com/index.php?showuser=2561]Buy Revatio[/url] from erectile dysfunction [url=http://weight-loss.fitness.com/members/clomid-44014.html]buy clomid[/url] achieve and maintain an erection. [url=http://forums.developerone.com/member.php?u=41429]Buy Cialis Online[/url] (Tadalafil) works in much the same way as Sildenafil Citrate [url=http://www.malwarebytes.org/forums/index.php?showuser=12198]Generic Cialis[/url].
Phentermine is a weight loss medication [url=http://www.malwarebytes.org/forums/index.php?showuser=12401]diflucan side effects[/url] prescribed by doctors [url=http://forums.theplanet.com/index.php?showuser=52731]Buy Kamagra[/url] for overweight patients. [url=http://www.viddler.com/explore/Buy_Phentrimine/]Buy Phentrimine Online[/url] falls under the category of central [url=http://community.michaeljackson.com/us/users/ultram]buy ultram online[/url] nervous system stimulant, [url=http://community.michaeljackson.com/us/users/flomax]buy flomax[/url] with similar traits to amphetamines. [url=http://forums.trumba.com/index.php?showuser=2560]Buy Acomplia[/url]
sep dicoba dulu pak
I downloaded your project : tarichi0.3 . It’s great.
I want to ask you:
when link: http://localhost/tarichi0.3/page/about-tarichi
controller is page , function about-tarichi
but in controller/page.php i doen’t find any function like this.
So what is real controller and function of this url?
Thanks
Hi,
i found that content of front-end you get from tables ‘page’ . How you can redirect http://localhost/tarichi0.3/page/about-tarichi
into function page of controller/template and about-tarichi is parameter slug
thnx gan..sundul dikit ahh..up up..cendolnya gan
bang… ada file sql dumping yang download-nya gak…
btw dah dimasukkin ke codeigniter.com?