This will be the final article of Customer Support Time Tracking app. And we are going to create Customersupport module for customers.
Redirecting members from home
Firstly we are going change customer login.
After logging in it leads to dashboard. But we need to redirect members to customersupport/admin.
Open system/application/controllers/admin/home.php and add the following at the line 34.
Continue reading Creating Customer Support Time Tracking Application with Codeigniter Part 5
In this article we are going to create Support Template for customers.
Creating Support Template
This template is used for customers. It has different sub-menus from admin. The reason to create this template is to make the navigation simple for customers when they log in. It could be done without this template but there will be unnecessary menus on the left column.
The following codes should be placed in system/application/views/support folder.

Continue reading Creating Customer Support Time Tracking Application with Codeigniter Part 4
In this article we are going to create Support Module for Admin.
Firstly we are going to create menu for admin then proceed to creating support files.

Continue reading Creating Customer Support Time Tracking Application ‘Daikon’ with Codeigniter Part 2
We have added Ajax To Do Demo today. It will be reset every 30 minutes.
You can add, move and delete ‘To Do List’.
Download page
One of our popular article is about ‘Event Calendar’ articles. This and this.
Today we added the demo. The demo database will be reset every 30 minutes.
This time we are going to develop a customer time tracking application with Codeigniter. This allows admin to enter tickets purchased by customers and work done for customers. Customer can see the details of support including tickets purchase, work done and its time, total remaining tickets in minutes.
Note: Demo is available for Customer Pages Only.
Login details
email 1: cus7(a)gmail.com and pw: anneanne
email 2: cus2(a)gmail.com and pw: tonjetonje
Continue reading Creating Customer Support Time Tracking Application ‘Daikon’ with Codeigniter Part 1

Daikon is a simple customer support time tracking application created on Codeigniter and BackendPro.
Admin can create and manage customers. After entering credit purchased and time-spent. It will show the time remaining. Customer can login and see the summary and email a request of additional support tickets to admin.
Note: Demo is available for Customer Pages Only.
Login details
email 1: cus7(a)gmail.com and pw: anneanne
email 2: cus2(a)gmail.com and pw: tonjetonje
Continue reading How to install Customer Support Time Manager: Daikon
I have made minor updates for Portfolio CMS with Codeigniter. v0.1.2alpha.
–UPATE 2 July 10– If you don’t have any problems using v0.1.1alpha, you don’t need to change it. But some of users have problem with URL. So I added index.php in URL again. ———————- If you have a problem with v0.1.1alpha, you [...]

This will be the final article of this series and we will cover a category page, product page and contact page in this article.
Please follow us on Twitter or subscribe our RSS feed.
Continue reading Creating a Portofolio CMS with Codeigniter Part 4

View container
We create a folder under application/views/portfolio. Files, container.php, header.php and footer.php will go under this folder.
In our contaner.php, we load all the css and javascripts in the head section. Then we load header.php, error display, content if exists, page and footer.php. All the variables $content, $module, $page etc will be set in our controller later.
Continue reading Creating a Portofolio CMS with Codeigniter Part 3