CodeIgniter is an open-source PHP web development framework created by EllisLab Inc. The framework implements a modified version of the Model-View-Controller design pattern.
207
votes
11answers
105k views
How should I choose an authentication library for CodeIgniter?
I see there are a few. Which ones are maintained and easy to use? What are their pros and cons?
54
votes
9answers
122k views
PHP: Fatal Error: Allowed Memory Size of 134217728 Bytes Exhausted (CodeIgniter + XML-RPC)
I have a bunch of client point of sale (POS) systems that periodically send new sales data to one centralized database, which stores the data into one big database for report generation.
The client ...
53
votes
4answers
34k 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 ...
45
votes
19answers
14k views
Which PHP framework is closest to Ruby on Rails? CakePHP? CodeIgniter? [closed]
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?, ...
43
votes
7answers
3k 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 ...
37
votes
13answers
29k views
How to remove “index.php” in codeigniter's path
How do I remove the "index.php" sticking out in every path in codeigniter somewhere in the center?
I want clean non index.php-fied URLs?
35
votes
6answers
69k 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 ...
34
votes
6answers
18k 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, ...
32
votes
4answers
20k views
Handling PUT/DELETE arguments in PHP
I am working on my REST client library for CodeIgniter and I am struggling to work out how to send PUT and DELETE arguments in PHP.
In a few places I have seen people using the options:
...
30
votes
6answers
45k 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 ...
30
votes
8answers
788 views
SQL Infinite Calendar Pattern
I'm going to make a Mysql based calendar system where you can have repeating pattern for lets say every monday forever and ever. It must also cover static/once-only events. What I'm wondering about, ...
29
votes
1answer
23k views
CodeIgniter activerecord, retrieve last insert id?
Are there any options to get the last insert id of a new record in CodeIgniter?
$last_id = $this->db->insert('tablename',
array('firstcolumn' => 'value',
...
28
votes
6answers
15k 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.
28
votes
16answers
25k 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.
28
votes
4answers
20k views
CodeIgniter sessions vs PHP sessions
I'm relatively new to CodeIgniter and am making my first CI project in which there are user-accounts, etc. In the past, I have always used PHP's $_SESSION variable to this end. However, CI seems to ...
28
votes
9answers
13k 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 ...
26
votes
4answers
24k 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 ...
26
votes
4answers
20k views
What CodeIgniter template library is best? [closed]
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 ...
25
votes
12answers
8k 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 ...
25
votes
4answers
6k 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 ...
24
votes
12answers
13k views
Yii or Codeigniter? for a large web application
Ok, I plan on designing a very large scale web application(me and my 2 friends), with alot of user interaction, constant status updates, etc... Basically picture me creating an a web application like ...
24
votes
5answers
9k 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). ...
23
votes
2answers
10k views
Which version of CodeIgniter am I currently using?
Quick question. Is there something similar to a phpinfo() that I could spit out for CodeIgniter?
Thanks.
23
votes
2answers
4k views
How do I use PHPUnit with CodeIgniter?
I have read and read article on PHPUnit, SimpleTest and other Unit Testing frameworks. They all sound so great. I finally got PHPUnit working with Codeigniter thanks to ...
22
votes
12answers
45k 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 ...
22
votes
4answers
8k 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?
21
votes
7answers
18k views
CodeIgniter - accessing $config variable in view
Pretty often I need to access $config variables in views.
I know I can pass them from controller to load->view().
But it seems excessive to do it explicitly.
Is there some way or trick to access ...
21
votes
9answers
20k views
Does Code Igniter automatically prevent SQL injection?
I just inherited a project because the last developer left. The project is built off of Code Igniter. I've never worked with Code Igniter before.
I took a quick look at the code and I see database ...
21
votes
2answers
9k views
explain $CI =& get_instance();
looking through code igniters source code,
in its helper functions I keep seeing
$CI =& get_instance();
can anyone please explain to me how this works?
I get that it is returning a reference to ...
21
votes
2answers
10k views
Codeigniter - handling errors when using active record
I am putting together a few models for my codeigniter site and can't seem to find any word in the documentation of how to handle errors that could occur when using the Active Record system.
The ...
20
votes
6answers
10k views
where do i put image files, css, etc in code igniter
Where is it acceptable to put css folders and image file folders? I was thinking inside the view folder? However the controller always reroutes the path to the base url so I have to specify the path ...
20
votes
7answers
6k 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 ...
20
votes
3answers
7k views
To swap or not to swap, from CodeIgniter to Laravel?
So after working for a while with CI, I can say that it's a great framework that always helped me get the job done.
Now, as I read https://www.pyrocms.com/blog/2012/11/foundations-for-our-future and ...
19
votes
7answers
14k 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?
19
votes
5answers
5k views
CodeIgniter: Decision making for creating of library & helper in CodeIgniter
After developing in CodeIgniter for awhile, I find it difficult to make decisions when to create a custom library and when to create a custom helper.
I do understand that both allow having business ...
18
votes
9answers
24k views
How to Deal With Codeigniter Templates?
I'm fairly new to MVC, and I've found CodeIgniter recently. I'm still learning everyday, but one problem is its template engine. What is the best way to create templates in CodeIgniter?
CakePHP comes ...
17
votes
12answers
19k 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:
...
17
votes
5answers
7k views
What's a good PHP Active Record library? [closed]
I've been using CodeIgniter for some quite time, and I've been extremely happy with its Active Record stuff. It's great to query the database with it.
Recently I've started a new project and I can't ...
17
votes
6answers
25k views
codeigniter multiple file upload
I am trying to get a multiple upload library working for my codeigniter based website, I have it working almost but I have a slight problem if I upload more than one image, the file extentions get ...
17
votes
10answers
17k views
Role Based Access Control
Are there any open source, PHP based, role based access control system that can be used for CodeIgniter?
16
votes
6answers
35k views
CodeIgniter Active Record - Get number of returned rows
I'm very new to CodeIgniter and Active Record in particular, I know how to do this well in normal SQL but I'm trying to learn.
How can I select some data from one of my tables, and then count how ...
16
votes
5answers
9k views
How does CodeIgniter know a cookie holds valid session data?
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 data (in the cookie) is valid, or am I wrong?
...
15
votes
5answers
5k views
CodeIgniter book [closed]
Can you recommend me some book about CodeIgniter? I have knowledge about oop but not about mvc or other frameworks.
15
votes
1answer
5k views
How can I use PDO in CodeIgniter 2?
I would like to use PDO instead of the built-in database-classes. But how can I do it? I tried to do the modifications suggested in a blog post. I commented out a part of system\database\DB.php and ...
15
votes
4answers
4k views
Best library for PHP Sessions
I have been using the CodeIgniter system for a while now - but it has it's short comings. I am grateful for what it taught me, but now I need a library for a new non-codeigniter project and so I am ...
15
votes
5answers
7k 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. ...
14
votes
7answers
14k views
Codeigniter vs Ruby on Rails
I'm new to development, and I'm getting into it as a hobby. (currently a student).
I'm wondering what you guys and girls advise.
There's greater support for PHP, I realize. But Ruby looks like it ...
14
votes
4answers
42k views
sending email with gmail smtp with codeigniter email library
<?php
class Email extends Controller {
function Email()
{
parent::Controller();
$this->load->library('email');
}
function index()
{
...
14
votes
7answers
5k views
Codeigniter Routes regex - using dashes in controller/method names
I'm looking for a one line route to route dashed controller and method names to the actual underscored controller and method names.
For example the URL
/controller-name/method-name-which-is-long/
...
14
votes
2answers
2k views
How is Kohana different from CodeIgniter? [closed]
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, ...
