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

9
votes
4answers
299 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 ...
9
votes
2answers
3k views

Where should someone put the static files such as CS, JS and images in the Codeigniter folder structure?

Basically in the html file, I would like to include static files as follows: <link href='css/my.css' type="text/css"/> <link href='js/my.js' type="text/javascript"/> ... ...
9
votes
1answer
115 views

Pagination in Codeingiter

I was trying for pagination in my PHP project, codeigniter has its own class called 'pagination' and i have used it.Now I have got a links for pages in my view page.But all data printed in a single ...
9
votes
1answer
261 views

can't abe to use session variable in routes.php file in codeigniter?

i am use following code to retrieve the session variable in routes.php if($this->db_session->userdata('request_url')!="") { $route['user/(:any)'] = ...
8
votes
3answers
13k views

Codeigniter - no input file specified

Hi I am a beginner in Codeigniter and I saw a CI tutorial and was just trying to do a simple thing. I downloaded the CI and added this file to controller directory, but it won't work. <?php class ...
8
votes
4answers
19k views

How to get base url in CodeIgniter 2.0.2

In config.php $config['base_url'] = 'http://localhost/codeigniter/'; In View <link rel="stylesheet" href="<?php base_url(); ?>css/default.css" type="text/css" /> => Error: Call ...
8
votes
12answers
8k views

codeigniter pagination url with get parameters

I am having trouble setting up pagination on codeigniter when I pass parameters in the URL if my url is like this : search/?type=groups what should be my $config['base_url'] for pagination to work? ...
8
votes
3answers
243 views

What is the most efficient way to remove all the elements of one array from another array?

I have two arrays, array A contains a long list with some elements I want to remove. Array B is the full list of those elements that I wish to remove from array A. What is the most efficient way to ...
8
votes
7answers
12k views

UNION query with codeigniter's active record pattern

How to do UNION query with codeigniter framework's active record query format?
8
votes
2answers
19k views

Fatal error: Cannot use object of type stdClass as array in

I'm getting the error "Fatal error: Cannot use object of type stdClass as array in" on line 183 which happens to be $getvidids = $ci->db->query("SELECT * FROM videogroupids WHERE ...
8
votes
5answers
10k views

TTF MIME type?

I can't find correct MIME type for TrueType fonts. I need it because I'm using File Uploading Class (CodeIgniter) to upload files, and I want to allow only TTF to be uploaded. Tried this: 'ttf' ...
8
votes
2answers
3k views

How would I call a helper from a helper in Codeigniter?

I'm writing some custom helpers in Codeigniter and I want to call some functions from other helper files like date, etc, in my helper. I keep getting "call to undefined function" errors. How can I ...
8
votes
3answers
5k views

Uploading a csv into Codeigniter

Has anyone else had trouble uploading a csv file into Codeigniter? I'm getting a pretty annoying "The filetype you are attempting to upload is not allowed." error, even though I've quite explicitly ...
8
votes
5answers
13k views

How to process a form with CodeIgniter

I am new to CodeIgniter. I need to process a form. I have a form.html page in view <html> <head> <title>Search</title> </head> <body> <form ...
8
votes
3answers
7k views

CodeIgniter Pagination Problem

I am using codeigniter and its pagination class. It works perfectly and it looks something like this: « First < 1 2 3 4 5 > Last » Here is my code: ...
8
votes
2answers
25k views

Sending XML data using HTTP POST with PHP

I need to send this XML <?xml version="1.0" ...
8
votes
4answers
3k views

Processing large amounts of data in PHP without a browser timeout

I have array of mobile numbers, around 50,000. I'm trying to process and send bulk SMS to these numbers using third-party API, but the browser will freeze for some minutes. I'm looking for a better ...
8
votes
3answers
2k views

CodeIgniter: global variables in a controller

I'm a very newbie on CodeIgniter, and while I go on I run into problems that, in the procedural coding, were easy to fix The current issue is: I have this controller class Basic extends Controller { ...
8
votes
4answers
783 views

CodeIgniter: Is it safe to delete index.html from all folders?

I'm new to CodeIgniter. I notice that all CodeIgniter folders (cache, config, controllers, core, errors, etc...) contains an index.html file that basically says "Directory access is forbidden". ...
8
votes
8answers
9k views

CodeIgniter CMS: which to use? [closed]

I'm looking into CodeIgniter CMS and have found the following: EE Fuel CMS Concrete5 PyroCMS Ionize Any thoughts about these CMS? Thanks.
8
votes
4answers
7k views

CodeIgniter Active Record not equal

In CodeIgniter using active record, how do I perform a not equal too. For instance: $this->db->where('emailsToCampaigns.campaignId', $campaignId); Will do equal too, but I need not equal ...
8
votes
3answers
12k views

PHP & Codeigniter - how to pass parameters to a model?

I am using the following code to initialize a model from within my controller: $this->load->model('model_name'); Is it possible to modify the above line somehow so that the model constructor ...
8
votes
3answers
19k views

Directory index forbidden by Options directive - PHP / Codeigniter

I'm using the dompdf plugin for codeigniter: http://codeigniter.com/wiki/PDF_generation_using_dompdf/ to generate pdfs from a form. This works on localhost, but on the live server I get this in the ...
8
votes
7answers
4k views

PHPDoc for variable-length arrays of arguments

Is there a syntax for documenting functions which take a single configuration array, rather than individual parameters? I'm thinking specifically of CodeIgniter-style libraries, which use a mechanism ...
8
votes
4answers
3k views

Node.js + codeigniter

Recently been reading up on Node.js and how it is a great webserver and supports sockets even. I was thinking of using it on a project of mine, but i still haven't been able to figure out to to ...
8
votes
4answers
4k views

How to track user time on site

Hey, I'm looking to track users average time on a website (in the same way that Google analytics does) for internal administration. What's the easiest way to do this?
8
votes
1answer
4k views

Codeigniter: How to build an edit form that uses form validation and re-population?

I have a simple form in codeigniter that I wish to use for the editing or records. I am at the stage where my form is displayed and the values entered into the corresponding input boxes. This is done ...
8
votes
2answers
8k views

Css/images/javascript in codeigniter

Concerning this post, I'd like to add css,images and js to my codeigniter application. My question is after you add path to your header file href="<?php echo base_url();?>css/moorainbow.css" , ...
8
votes
3answers
305 views

Should a model class represent an entity or return it

I'm designing a web application with CodeIgniter (but I think the question applies generally to the MVC pattern in web applications). When I design the model class for some database entity (say, a ...
8
votes
6answers
6k views

Codeigniter : calling a method of one controller from other

I have two controllers 'a' and 'b' I would like to call a method of controller 'a' from a method of controller ''b' could anyone guide me how can I achieve this all efforts appreciated thanks
8
votes
5answers
924 views

Special characters in REST request

I am developing an API using CodeIgniter, and Phils RESTserver. I am trying to send a POST request containing special characters, but the string is not added to the database. CodeIgniter also says ...
8
votes
4answers
2k views

Blog in CodeIgniter : Where Does the Model start, and the Controller End?

I'm testing CodeIgniter, and trying to create a simple blog. The video tutorial on the CodeIgniter site is nice, but very incomplete. I'm not too familiar with the MVC structure, and I am wondering ...
8
votes
7answers
2k views

Weird backticks behaviour in Active Record in Code Igniter 2.0.3

Previously my all queries were running fine in CI version 2.0 but when I upgraded to 2.0.3 some of my SELECT queries were broken. CI is adding backticks (``) automatically, but in older version its ...
8
votes
2answers
4k views

Using HTML5 Boilerplate Build script with a PHP framework

I’m a big fan of the popular HTML5 Boilerplate. I’d love to use the build script to minifiy etc, but I can’t figure out how to get everything working together. To add further fun, I deploy using Git – ...
8
votes
1answer
1k views

CodeIgniter PHP framework in commercial project

Is it possible to use CodeIgniter framework in commercial project and distribute it ?
8
votes
3answers
3k views

How does Codeigniter handle escaping output?

I am using CodeIgniter. Recently, I read a PHP book and saw some functions to escape output to server to database using *_escape_string() and from server to browser using: htmlentities() ...
8
votes
3answers
8k views

CodeIgniter authentication + user privileges

I'm trying to build an authentication system in my application, but I'm having some problems in deciding which is the best way I could acomplish what I want in CodeIgniter. The website allows ...
8
votes
4answers
3k views

Should I use CodeIgniter's Unit Testing Class or PHPUnit/TOAST?

I'm looking for a good unit testing for my web development. I'm using CodeIgniter for PHP, and I found this class on CodeIgniter's documentation, so here is my doubt: Should I use 'Unit Testing ...
8
votes
5answers
3k views

Is there a CodeIgniter API reference?

Whenever using a framework it's so good with a API reference so you could lookup the classes' methods and properties, which class they extend from and so on. Is there a API reference for CodeIgniter ...
8
votes
4answers
5k views

Codeigniter best practice in accessing $this->input->post()

I've been coding with CodeIgniter for a while now, and when I'm programming or reading up other programmer's code, I usually encounter two ways of obtaining data from input. One would be getting the ...
8
votes
5answers
2k views

Difference between Controller and Model in MVC

I'm little confused about controller and model in MVC framework (codeIgniter). Its clear to me that controller methods calls the views and Model methods interact with database. However, I'm little ...
8
votes
3answers
6k views

Django or CodeIgniter for Turn-Key Web Application

I'm going to build a turn-key solution for a vertical market, and would like to offer both options: software as a service, and give them the opportunity to host the application on their own. In other ...
8
votes
4answers
2k views

Codeigniter: One view for adding and editing a post

I'm working on a CMS in Codeigniter and one main part is a form for creating and editing posts. I've been planning on using the same view file for both since all of the elements are shared. The only ...
8
votes
2answers
347 views

CodeIgniter Authentication System that allows 3rd party auth?

My question is rather simple. Is there a system for CodeIgniter that allows both local and 3rd party login? (Such as FB/Twitter/Google etc.) I've tried A3M but it's hard to use and requires ...
8
votes
6answers
13k views

Which ORM for codeigniter? [closed]

The quote below has convinced to finally go ORM. In the past I havn't really liked ORM and wrote it off as a stupid way of doing sql. Dealing with hierarchical data in sql is a pain I don't want to ...
8
votes
4answers
254 views

Limiting Membership By Bandwidth

I've just deployed a Codeigniter application to Amazon EC2 (using S3 for media and RDS for MySQL). I need to restrict user account access based on the amount of bandwidth used - accounts will be ...
8
votes
3answers
2k views

Can I compress data in JavaScript?

I'm using some pretty heavy AJAX with lots of data going from client to server. How can I compress the data (mostly plain text) before sending to the server? And how can I uncompress the data on the ...
8
votes
6answers
1k views

Permanently write variables to a php file with php

I need to be able to permanently change variables in a php file using php. I am creating a multilanguage site using codeigniter and using the language helper which stores the text in php files in ...
8
votes
4answers
3k views

JSONP in CodeIgniter

I have a problem with using the jQuery JSONP method $.getJSON in CodeIgniter. The URL from which the JSON is grabbed from is the following: http://spinly.000space.com/index.php/admin/isloggedin ...
8
votes
1answer
520 views

Codeigniter sessions class w/ database storage option not optimized?

I use codeigniter's session class with the option to store session data in a database. This is an example of the select query that runs for every user request to retrieve a session: SELECT * FROM ...

1 2 3 4 5 402