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?
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 ...
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?
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 ...
1
vote
8answers
13k views
CodeIgniter Disallowed Key Characters
CodeIgniter is giving me a Disallowed Key Characters error. I've narrowed it down to the name attribute of a form field: name='prod[50-4121.5]' but I'm not sure what to do about it.
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 ...
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 ...
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 ...
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 ...
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 ...
53
votes
5answers
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?, ...
10
votes
7answers
24k views
How do I write a .htaccess file to make CodeIgniters URL routing work?
I'm running a LAMP environment with CodeIgniter. I want to be able to use its URL pattern, like, http://localhost/controller/function/ID, but by default it has to be ...
0
votes
1answer
2k views
Codeigniter REST CSV import to mysql
I want to post csv file on my controller using API.I'm using Codeigniter REST Library by phil sturgeon. How to implement on the client side the importing of CSV to my REST Server.I just want to ask ...
0
votes
1answer
225 views
Constructor session validation for different functions
I'm doing a validation in my constructor which checks whether the user has started a session.
I'm then throwing in some controllers for various things.
My question is - can I have some of the ...
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:
...
7
votes
7answers
8k views
Enabling $_GET in codeigniter
I've been trying to figure out how to enable $_GET in CI.
It appears the framework deliberately destroys the $_GET array, and that enabling it requires serious tinkering with the core classes. can ...
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'] = ...
0
votes
6answers
382 views
how can convert $files contain to array?
How do I solve this error?
A PHP Error was encountered
Severity: Warning
Message: Invalid argument supplied for foreach()
Filename: admin/tour.php
Line Number: 81
this is line 81:
$files = ...
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 ...
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()
{
...
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 ...
9
votes
4answers
4k views
How do I check if the request is made via AJAX with PHP?
How do I check if the request is an ajax? I am using codeigniter. I have a link that when it clicked, it'll open the pop-up dialog window this is done through ajax it requests to a controller name ...
9
votes
6answers
13k views
How to use SSL with CodeIgniter?
How can I have CodeIgniter load specific pages using SSL? I have an apache2/mode_ssl server. mod_ssl uses a different document root than non-secure pages. For example, https (port 443) would serve ...
3
votes
2answers
3k views
.htaccess Redirect non-WWW to WWW preserving URI string
I'm running the CodeIgniter platform, which uses .htaccess to accept URLs like
http://www.mysite.com/controller/function/argument
I currently use some .htaccess rewrites, namely (simplified):
...
7
votes
6answers
12k 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 ...
10
votes
4answers
9k views
subquery in codeigniter active record
SELECT * FROM certs WHERE id NOT IN(SELECT id_cer FROM revokace);
How I write this select in codeigniter active record?
2
votes
5answers
2k views
CodeIgniter: A Class/Library to help get meta tags from a web page?
I am using codeigniter. I guess it doesn't matter which php framework I am using.
But before I write my own class is there another that has already been written that allows a user to get the page ...
2
votes
4answers
2k views
Redirect *.php to clean URL
My htaccess doesn't quite work:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.php$ /blah/$1 [R=301,L]
RewriteRule ^(.*)$ ...
2
votes
1answer
2k views
What are the differences between backtick and single quote? Can I use IF statement in a query as above?
In the codeigniter manual writes the following.
$this->db->select() accepts an
optional second parameter. If you set
it to FALSE, CodeIgniter will not try
to protect your field or table ...
0
votes
3answers
382 views
How can I rewrite this SQL into CodeIgniter's Active Records?
SELECT *, SUM(tbl.relevance) AS relevance FROM
(
(
SELECT q_id,
MATCH(a_content) AGAINST ('бутон') AS relevance
FROM answers
WHERE
MATCH(a_content) AGAINST ...
0
votes
3answers
6k views
Codeigniter - I am looking to use/connect to a different database for one of my controllers and one model
I am looking to use/connect to a different database for one of my controllers and one model. I posted this hear since on the forums of CI I am getting no response.
I added this in database.php:
...
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?
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, ...
22
votes
12answers
46k 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 ...
33
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:
...
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
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?
8
votes
7answers
11k views
UNION query with codeigniter's active record pattern
How to do UNION query with codeigniter framework's active record query format?
6
votes
1answer
3k views
Minifying final HTML output using regular expressions with CodeIgniter
Google pages suggest you to minify HTML, that is, remove all the unnecessary spaces.
CodeIgniter does have the feature of giziping output or it can be done via .htaccess.
But still I also would like ...
10
votes
4answers
11k views
joomla password encryption
I need to access the joomla user table jos_users for login checking from external php script [codeignitor].
joomla storing password like this
...
7
votes
3answers
6k views
Missing amount and order summary in PayPal Express Checkout
I have integrated paypal into codeigniter with paypal_helper (didn't rememeber where I found it, but it is a slightly rewritten version of Paypals original code for express checkout. I try calling ...
6
votes
4answers
3k views
$_POST empty on utf-8 characters
I'm working on a multilingual site with CodeIgniter.There is a form that posts data to controller, but $_POST is empty when i start to use Turkish characters like öçüÜĞ etc.
I set the charset to:
...
3
votes
1answer
1k views
Codeigniter seems to break $_POST of '£' character (Pound)
When I echo $_POST of the '£' character without CI in a simple Form, the result is as expected, a '£'.
When I try the same using the CI framework using the Input class as well as the native $_POST ...
7
votes
12answers
5k views
Remove “index.php” from URL - Codeigniter
I've looked in the documentation of Codeigniter of removing the index.php from the URL when accessing different views, the code shows how to remove it with apache:
RewriteEngine on
RewriteCond $1 ...
4
votes
3answers
6k views
CodeIgniter PHP Apache 500 Internal Server Error
I have done a project in CodeIgniter its working fine on my localhost but giving 500 Internal Server Error in remote server this is my .htacces file content.
RewriteEngine On
RewriteBase /ezgov
...
4
votes
5answers
3k views
How do I remove 'index.php' from URL in CodeIgniter?
How do I remove index.php from my URL in CodeIgniter?
I removed index.php from my configuration file, and I have run my rewrite_module in Apache (2.2.11) and my .htaccess file is:
RewriteEngine on
...
3
votes
3answers
3k views
Codeigniter global_xss_filtering
In my codeigniter config I have $config['global_xss_filtering'] = TRUE;. In my admin section I have a ckeditor which generates the frontend content.
Everything that is typed and placed inside the ...
2
votes
2answers
22k views
Trying to get property of non-object - CodeIgniter
I'm trying to make update form, that is going to retrieve the data for the specific ID selected, and fill in the form, so its going to be available for updating.
When I click edit on the specific ...
1
vote
4answers
4k views
Grouping WHERE clauses in Codeigniter
I want to produce the following SQL code using Active Records in Codeigniter:
WHERE name != 'Joe' AND (age < 69 OR id > 50)
Doing the following seems to be as far as I can get, I cant figure ...
