CodeIgniter is an open-source PHP web development framework created by EllisLab Inc. The framework implements the Model-View-Controller design pattern. It is praised for its performance and the quality of its documentation.
108
votes
18answers
72k views
What CodeIgniter authentication library is best? [closed]
I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?
65
votes
15answers
19k views
Kohana or CodeIgniter?
I'm looking for a PHP framework. I've done some research, and found CodeIgniter, which is attractive. I then discovered that there is Kohana; that is based on CodeIgniter. I'm annoyed, because since ...
40
votes
15answers
18k views
Have You Switched from CodeIgniter to Kohana?
I usually just work with straight PHP, but now I want to try MVC, and see if a framework will really speed up development. After much waffling, analysis paralysis, and many dumb SO questions; I ...
31
votes
18answers
10k views
Which PHP framework is closest to Ruby on Rails? CakePHP? CodeIgniter?
I'm going to be switching back and forth between Ruby on Rails projects, and some as-of-yet undecided PHP MVC framework projects. Which of the PHP MVC frameworks out there (CakePHP, CodeIgniter?, ...
26
votes
3answers
15k views
CodeIgniter: Create new helper?
I need to loop lot of arrays in different ways and display it in a page. The arrays are generated by a module class. I know that its better not to include functions on 'views' and I want to know where ...
25
votes
5answers
2k views
Going from a framework to no-framework
I've been developing in PHP for about 8 years as a hobby. In 2009, I picked up codeigniter and since then I've not managed to get a single project developed.
I find it slows me down trying to work ...
19
votes
5answers
7k views
MongoDB and CodeIgniter
Can anyone assist in pointing me to a tutorial, library, etc. that will allow me to work with MongoDB from CodeIgniter?
Any help is really appreciated.
19
votes
22answers
31k views
Best editor for CodeIgniter?
I'm learning CodeIgniter and I come from Microsoft Visual Studio so I'm used to the auto complete feature. I've been using notepad++ so far but I wonder if anyone knows an editor that works better ...
19
votes
18answers
4k views
Lightest possible PHP MVC
I currently use CodeIgniter for an MVC framework in PHP because it's a very bare framework, is there anything even more bare than CodeIgniter?
18
votes
5answers
4k views
Kohana vs CodeIgniter, year 2011
I found this post but it dates back to 2008.
Is it still the case that Kohana is much better than CodeIgniter?
It seems like the main argument for Kohana was that it supported PHP5, but since nowadays ...
17
votes
11answers
22k views
cakephp VS codeigniter VS zend framework [closed]
Very possibly very related:
What PHP framework would you choose for a new application and why?
Zend or CakePHP?
Which one is better?
Some people say CakePHP is better for php 4, what do you ...
17
votes
10answers
4k views
To Use a PHP Framework or Not?
I've started writing a few applications in PHP, and I'm becoming more familiar with the language. Someone told me about CakePHP, and CodeIgniter. I wanted to get a better understanding of how these ...
15
votes
7answers
7k views
CodeIgniter, models, and ORM, how to deal with this?
I'm starting with CodeIgniter and after several hours diving in Google I'm a bit confused.
Let's try to explain my question with a easy example: I have a table 'car' with the fields 'name' and ...
15
votes
4answers
2k views
MVC done right - Examples
I am new to both the MVC pattern and PHP frameworks. I picked up a copy of CodeIgniter for Rapid PHP Application Development, but the author does not use the M part of MVC and I can't seem to get his ...
14
votes
4answers
5k views
What CodeIgniter template library is best?
As I see, there's a few Codeigniter template engines scattered all over the web, but unfortunately I can't recognize which is better in regard to: performance, features, maintenance ..etc
Some of ...
14
votes
5answers
7k views
PHP_SELF vs PATH_INFO vs SCRIPT_NAME vs REQUEST_URI
I am building a PHP application in CodeIgniter. CodeIgniter sends all requests to the main controller: index.php. However, I don't like to see index.php in the URI. For example, ...
13
votes
6answers
15k views
PHP Frameworks: Codeigniter vs. Yii vs. Custom?
I have used codeigniter for a some years now. Why I chosed to work with codeigniter back then? Pretty much for the extensive documentation that were available and the big user community. It made me as ...
13
votes
13answers
14k views
CMS based on CodeIgniter
I’m looking for a CMS based on CodeIgniter. Can you suggest what CMS I could use?
I want to learn how to build a CodeIgniter application based using a CMS as a reference.
12
votes
4answers
824 views
get_instance() in Codeigniter: Why assign it to a variable?
In Codeigniter, get_instance() is a globally available function that returns the Controller super-object which contains all the currently loaded classes (it returns the Controller class instance). ...
12
votes
1answer
379 views
RedBean ORM and Codeigniter, how to make Fuse recognize models loaded from CI default models path?
Codeigniter has its own Models path, where models extend from CI_Model. I'm using RedBean has a library in Codeigniter, loading it on a controller. After loading Rb, I try to use CI Loader to load a ...
12
votes
8answers
11k views
Role Based Access Control
Are there any open source, PHP based, role based access control system that can be used for CodeIgniter?
11
votes
5answers
3k views
FUEL, CodeIgniter or Kohana 3
I recently started developing an application with CodeIgniter, but shortly after I started, I began seeing more and more complaints about CI and its support for PHP4.
I began looking for ...
11
votes
2answers
370 views
Most effective way working with multiple natural languages
I am currently working with a codeigniter PHP based application and have come to the point where it's about to go off with multiple languages.
Is codeigniters own language class the most effective ...
11
votes
11answers
9k views
CodeIgniter PHP Framework - Need to get query string
I'm creating an e-commerce site using CodeIgniter.
How should I get the query string?
I am using a Saferpay payment gateway. The gateway response will be like this:
...
11
votes
7answers
23k views
the best way to make codeigniter website multi-language. calling from lang arrays depends on lang session?
I'm researching hours and hours, but I could not find any clear, efficient way to make it :/
I have a codeigniter base website in English and I have to add a Polish language now. What is the best way ...
11
votes
3answers
5k views
How to integrate Wordpress template with CodeIgniter
How can CodeIgniter and Wordpress be integrated such that the look and feel/template of
the Wordpress blog is carried over to the CodeIgniter-created pages?
11
votes
4answers
2k views
Best Practices: What's the Best Way for Constructing Headers and Footers?
What's the best way for constructing headers, and footers? Should you call it all from the controller, or include from the view file? I'm using CodeIgniter, and I'm wanting to know what's the best ...
10
votes
3answers
261 views
Methods for scheduling
Good afternoon,
I am working on a PHP application for an at home care company. They have x amount of carers that are scheduled every week to attend the houses of x amount of service users (clients). ...
10
votes
4answers
1k views
MVC in PHP - fat model or fat controller? [closed]
From my understanding there are two ways this pattern is applied. The main difference is the the amount of business logic you write in the model or controller.
Type 1 is a fat controller like in ...
10
votes
6answers
771 views
PHP Framework Overhead
There are tons of PHP frameworks out there; some are pretty decent, others seem bloated and unnecessary. After watching Rasmus Lerdorf's presentation on PHP performance at Digg, I'm somewhat more ...
10
votes
3answers
8k views
How to get Controller, Action, URL informations with CodeIgniter
I have these urls:
http://backend.domain.com/system/setting/edit/12
http://backend.domain.com/product/edit/1
How to get controller name, action name from these urls. I'm codeigniter newbie. Are ...
10
votes
2answers
678 views
How to Move Already Written CodeIgniter Code to Kohana?
I've been using CodeIgniter for some time, and I liked it a lot. It looks like I need to move to Kohana though, because my other team member needs our code to fully use PHP5 features to their fullest ...
10
votes
8answers
3k views
Unit Testing a Website
I'm curious to see how other developers go about testing their web sites. PHP specifically in my case, but this probably spans multiple languages. I've been working on a site for over a year now, and ...
10
votes
10answers
24k views
GET parameters in the URL with CodeIgniter
I know that codeIgniter turns off GET parameters by default.
But by having everything done in POST, don't you get annoyed by the re-send data requests if ever you press back after a form ...
9
votes
5answers
241 views
Lots of platforms, same core codebase, best strategy?
I am developing a small web app. There isn't any advanced functionality, just basic queries from a database.
The website itself allows log ins via usual means and Facebook Connect, it then has some ...
9
votes
6answers
839 views
Client-side or server-side processing?
So, I'm new to dynamic web design (my sites have been mostly static with some PHP), and I'm trying to learn the latest technologies in web development (which seems to be AJAX), and I was wondering, if ...
9
votes
4answers
5k views
Sessions, Cookies & Codeigniter
Sorry, if this question is naive (I'm a newbie):
In codeigniter session data are saved in a cookie by default. But there must be also a file on my server (named as the session id) to verify that the ...
9
votes
7answers
7k views
Accessing CodeIgniter Models in Other Models
It used to be that within a CodeIgniter model you couldn't access another model.
$this->load->model('bar');
$this->bar->something();
Is this still valid, or have they changed it?
9
votes
5answers
39k views
insert multiple rows via a php array into mysql
I'm passing a large dataset into a mysql table via php using insert commands and I'm wondering if its possible to insert approximately 1000 rows at a time via a query other than appending each value ...
9
votes
6answers
6k views
Smarty integration into the Code Igniter framework
A Little Background Information:
I've been looking at a few PHP framework recently, and it came down to two. The Zend Framework or CodeIgniter.
I prefer CodeIgniter, because of its simple design. ...
8
votes
4answers
184 views
How can I have my CMS upgrade itself?
I've built a CMS (using the Codeigniter PHP framework) that we use for all our clients. I'm constantly tweaking it, and it gets hard to keep track of which clients have which version. We really want ...
8
votes
3answers
249 views
AJAX and jQuery with MVC
How do you organise your controllers, methods, views when you use a MVC model with jQuery with lots of AJAX bits?
Question 1
Do you have a seperate controller just for AJAX calls, or do you mix the ...
8
votes
2answers
900 views
How is Kohana different from CodeIgniter?
I've been using CodeIgniter for a long time, however lately I've been feeling the need to move to a more advanced/more OOP framework. Kohana seems to be an often recommended option, my question is, ...
8
votes
4answers
639 views
MVC Question: Should I put form validation rules in the controller or model?
On one hand form validation could be seen as part of the application logic and therefore belonging in the model.
On the other hand, it deals directly with the input coming from view and handles ...
8
votes
3answers
341 views
Web app - slider showing days of the months feature
For a school project we have to build a web app. I'll be creating something where people can keep track of their classes, their homework, and their free time. A planner/calendar. (I'm making it sound ...
8
votes
3answers
189 views
'created at' and 'updated at' fields
This seems like a really simple one but I'm struggling to figure it out. I want a column in my database that lists when a record was first created and another column that says when it was updated. ...
8
votes
5answers
876 views
CodeIgniter book [closed]
Can you recommend me some book about CodeIgniter? I have knowledge about oop but not about mvc or other frameworks.
8
votes
10answers
1k views
PHP framework of intermediate complexity, in between CodeIgniter and Yii?
Something easy like CI (this means mandatory good, easy, up to date documentation). But also with some more features than CI.
Yii has lots of features, but it is also more complex (and it kind of ...
8
votes
5answers
1k views
Adding Facebook Connect to a CodeIgniter website
I'm having problems trying to connect my website to Facebook. What I would like it to do is allow users to augment their accounts by connecting them to Facebook (I do not need people to be able to ...
8
votes
5answers
2k views
How to scale a PHP application (servers, mysql, memcache)
I'm currently creating a website for a social project in switzerland.
And before there is an overflow of user, I want to prepare the application to scale.
I answered by myself many questions but ...