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.

learn more… | top users | synonyms

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, ...
14
votes
1answer
4k views

Advantages / Disadvantages of pconnect option in CodeIgniter

One of the parameters in the CodeIgniter database config is the following ['pconnect'] TRUE/FALSE - Whether to use a persistent connection What do you recommend I set this to? Is there a ...
14
votes
1answer
7k views

CodeIgniter and throwing exceptions

I recently handed in a project for school which I built in CodeIgniter. I had to present it to my teacher and when asked how I handled certain errors, he told me to throw exceptions to intercept ...
14
votes
1answer
838 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 ...
13
votes
3answers
10k views

Querying MySQL with CodeIgniter, selecting rows where field is NULL

I'm using CodeIgniter's Active Record class to query the MySQL database. I need to select the rows in a table where a field is not set to NULL: $this->db->where('archived !=', 'NULL'); $q = ...
13
votes
4answers
26k views

codeigniter 2.0 Fatal error: Class 'Controller' not found in

i have download the new codeigniter 2.0 and put my controller,model and view files in the new codeigniter 2.0 installation. but i got this error Fatal error: Class 'Controller' not found in ...
13
votes
5answers
3k 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 ...
13
votes
4answers
3k 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 ...
13
votes
2answers
2k views

How do I run CodeIgniter migrations?

I know how to create them via http://codeigniter.com/user_guide/libraries/migration.html But once I've created my migration files, how do I run them?
13
votes
2answers
8k views

Is CodeIgniter a wise choice for large applications?

I keep on reading how great codeigniter is from a development standpoint. And I am sure that using the framework will make the development process quicker. But the question I ask myself is, will there ...
13
votes
7answers
9k views

Codeigniter: Best way to structure partial views

How would you structure the below page in Codeigniter? I thought about creating seperate controllers for each section Left nav Content nav Login name Leaderboard Excluding the content section ...
13
votes
5answers
3k 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 ...
13
votes
4answers
10k views

Inserting NOW() into Database with CodeIgniter's Active Record

I want to insert current time in database using mySQL function NOW() in Codeigniter's active record. The following query won't work: $data = array( 'name' => $name , 'email' => ...
13
votes
6answers
2k 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 ...
13
votes
3answers
868 views

AJAX and jQuery with MVC

How do you organize your controllers, methods, views when you use a MVC model with jQuery with lots of AJAX bits? Question 1 Do you have a separate controller just for AJAX calls, or do you mix the ...
12
votes
6answers
1k views

PHP Framework Overhead [closed]

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 ...
12
votes
4answers
14k views

Add a clause to a MySQL statement without quotes using CodeIgniter's Active Record functions

I wanted to update a row using active records in codeigniter, and I only want to increment a field value (received_qty = received_qty +1) , I realized that I can do that in usual sql, but I cant in ...
12
votes
6answers
11k views

How to run a CodeIgniter file through CRON?

I've tried the following method in the past: <?php set_time_limit(0); $_SERVER['PATH_INFO'] = 'cron/controller/index'; $_SERVER['REQUEST_URI'] = 'cron/controller/index'; require_once('index.php'); ...
12
votes
6answers
31k views

CodeIgniter - Loading CSS

I am developing an custom API for a web solution and I am using the MVC design pattern. I have a modules folder so that I can swap in and out modules and also work on sections without disrupting ...
12
votes
5answers
10k views

Codeigniter & PHP - forcing a 404?

In codeigniter, as you know, a page of the form: /class/function/ID, where class is the controller name, function is the method within the controller, and ID is the parameter to pass to that method. ...
12
votes
2answers
6k views

Codeigniter - CI_Controller vs Controller

I am trying to follow some tutorials regarding CodeIgniter, in particular ones about extending the controller, the tutorial I am following says that in the MY_Controller file I should put the ...
12
votes
3answers
20k views

Remove index.php From URL - Codeigniter 2

I am having trouble removing index.php from my URLs in Codeigniter. I've made a few websites with Codeigniter 1.7 and the .htaccess code I used doesn't work in 2. I have tried using <IfModule ...
12
votes
3answers
13k views

Can you access a model from inside another model in CodeIgniter?

I am writing a webapp using CodeIgniter that requires authentication. I created a model which handles all my authentication. However, I can't find a way to access this authentication model from inside ...
12
votes
2answers
16k views

In order to use the Session class you are required to set an encryption key in your config file

I am in the process of upgrading codeigniter from 1.7.2 to 2.0.1. Everything seems to have gone ok except I get In order to use the Session class you are required to set an encryption key in your ...
12
votes
1answer
12k views

In Code Igniter, where should I declare my global variables?

I'm new to code igniter. I want to declare some global variables and global constants. Normally, I would put them in the includes/global.php of my own custom framework. Where should I define ...
12
votes
2answers
2k views

Codeigniter: when to use a model vs library?

I've starting using Codeigniter for a project recently (few months ago) but its getting a little out of hand with a bunch of models that need to interact with each other and I was wondering if I ...
12
votes
5answers
2k views

How to stop GD2 from washing away the colors upon resizing images?

I have developed a photo sharing community site using CodeIgniter 1.7. Photos that are uploaded by members are automatically resized in a number of formats, for which I use the CodeIgniter Image ...
12
votes
2answers
479 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 ...
12
votes
2answers
1k views

Installing secure CodeIgniter with Sparks

Installing Sparks assumes that you are abiding by the default CodeIgniter installation pattern; extracting the application, system, and user guide folders, along with with a index.php and a license ...
12
votes
2answers
852 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 ...
12
votes
5answers
5k 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 ...
12
votes
3answers
556 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). ...
12
votes
1answer
1k views

Can I pass data to the Codeigniter output class without displaying it?

I'm working on a way for users to be able to generate PDF copies of invoices and other tabular data. To do this, I've wrapped dompdf into a library that I can use with CI and created a method that ...
12
votes
2answers
2k views

Intended use of the Unit Testing built in to CodeIgniter

In most framework unit testing implementations, you have a set of a tests and you execute those tests from a single [console] command. The tests run and a result is given. That result varies but ...
11
votes
5answers
16k views

CodeIgniter: Load controller within controller

I have a home controller with an index action that displays a set of featured products. However, the products are managed through a product controller including a proprietary model and views. How do ...
11
votes
4answers
7k views

Getting raw SQL Queries in CodeIgniter 1.7

I'm trying to debug some code in my first serious CodeIgniter app and I can't seem to find where I can simply get the raw SQL that my ActiveRecord code just generated. $where = ...
11
votes
1answer
7k views

Codeigniter: How to show all session data at once

I have tried following but it is giving me errors: print_r($this->session->userdata()); But it gives error. How can I show all session data in codeigniter. Thanks in advance
11
votes
6answers
9k views

Uploading in Codeigniter - The filetype you are attempting to upload is not allowed

I am getting the error: The filetype you are attempting to upload is not allowed when I try to uplaod any file. if(!empty($_FILES['proof_of_purchase']['name'])) { $config['upload_path'] = ...
11
votes
4answers
12k views

CodeIgniter and Javascript/Jquery Library

As title said, I'm trying to figure out how to use javascript and jquery libraries on CI. Following instruction in the docs, I load the library in my controller: ...
11
votes
5answers
18k views

User authentication with CodeIgniter

I am writing a web application using PHP. I want to use the MVC pattern for this, and decided to go with CodeIgniter. My application will have some pages which will require authentication, and some ...
11
votes
6answers
3k views

CodeIgniter: “The filetype you are attempting to upload is not allowed.”

I'm experiencing a very odd upload problem. Here's the relevant view file: <form action="http://localhost/index.php/temp/upload/" method="post" enctype="multipart/form-data"> ...
11
votes
1answer
10k views

LIKE and % Wildcard in Doctrine's findBy*()

How do I write the following MySQL query using Doctrine's findBy*() method?: SELECT column_name1, column_name2 FROM table_name WHERE column_name3 LIKE '%search_key%'; For Example, to fetch multiple ...
11
votes
9answers
2k 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 ...
11
votes
4answers
4k views

Codeigniter - Disable XSS filtering on a post basis

I'm trying to set up a CMS on the back of a site but whenever post data has a <a href=... in it the post data gets scrapped. I've got $config['global_xss_filtering'] = TRUE; in config My question ...
11
votes
4answers
828 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. ...
11
votes
2answers
4k views

Creating a mobile version for my web app in CodeIgniter

I'm using CodeIgniter to develop a new web app, and I'd like to create a mobile version that users get redirect to when they visit it from their phones. The mobile version of the app should have a ...
10
votes
4answers
20k views

How to set date.timezone for code igniter to work with php5.3

When date.timezone in php.ini is commented out, it gives me: A PHP Error was encountered Severity: Warning Message: main(): It is not safe to rely on the system's timezone settings. ...
10
votes
5answers
7k views

Header and footer in CodeIgniter

I really don't enjoy writing in every controller: $this->load->view('templates/header'); $this->load->view('body'); $this->load->view('templates/footer'); Is it ...
10
votes
3answers
10k views

codeigniter check for user session in every controller

I have this private session in one of my controllers that checks if a user is logged in: function _is_logged_in() { $user = $this->session->userdata('user_data'); if (!isset($user)) { ...
10
votes
2answers
7k views

Getting CodeIgniter Active Record's current SQL code

for example, i want to convert this; $this->db->get('table'); to this; 'SELECT * FROM table' is there any function for this? i searched on the user guide of CI but didnt find any solution. ...

1 2 3 4 5 388