CodeIgniter 2 is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you're a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you're tired of ...
9
votes
2answers
950 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, ...
7
votes
2answers
371 views
CodeIgniter: Validate form with multidimensional POST data
So the framework is CodeIgniter 2.0.2. I have a form that has groups of fields that correspond to rows in a database. The names of the fields are in the format:
opt[0][foo]
opt[0][bar]
opt[1][foo]
...
7
votes
2answers
2k views
Has CodeIgniter 2.0 / PHPUnit happened yet?
So i've just had a pretty disappointing morning/weekend. It came in the form of setting up PHPUnit, Integrating Eclipse etc
Now i've just discovered that there's no straightforward way to test ...
7
votes
6answers
1k views
Cannot redefine class on 'require_once'
UPDATE:
I've abandoned CodeIgniter, and the desire to build a web interface around my database application from PHP, as there was no way of getting rid of this bug...
The Exception
I get this ...
7
votes
5answers
1k views
Experience with CodeIgniter 2 vs Kohana?
Derek Allard recently announced that new projects should use CodeIgniter 2.0 whose code is well baked and it is fully PHP5.
What concerns me though is the process seems ad-hoc, there was no beta ...
5
votes
2answers
60 views
Is there a better (lightweight) solution for autocomplete with php and codeigniter without jquery ui?
I was searching a lightweight and crossbrowser compatible solution for my web site. Here is the solution i have successfully implemented:
Codes:
...
5
votes
1answer
88 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?
5
votes
3answers
206 views
Share CI models between different applications
I'm still trying to figure out a way to get a mobile site running. I have a web app in CodeIgniter and I would like to create a mobile version of it. However, I don't want to rewrite too much of my ...
4
votes
2answers
141 views
codeigniter sess_destroy() not working properly,what m i doing wrong?
I am a newbie in codeigniter. I am using an an login form to login as an admin. When the admin logs in with the correct user name and password s/he is directed to the home page with a session ...
4
votes
3answers
195 views
Count rows in DB where
I'm following a tutorial on Pagination with CI/jQuery. In the tutorial they get the total number of rows by doing:
$config['total_rows'] = $this->db->count_all('tblUsers');
They get ...
3
votes
2answers
48 views
image uploading issue in codeigniter 2.1.0
i am using CI 2.1.0 and mysql database for one of my projects. i am facing a problem with my image uploading method. the image i am uploading should be saved in uploads directory and create a ...
3
votes
1answer
37 views
Form Validation - Modify Second Parameter in codeigniter
Is it possible to modify the second parameter for a custom callback?
<pre>
<code>
$something = 14
$this->form_validation->set_rules('name', 'Name', ...
3
votes
1answer
46 views
how to use a rich textarea input instead of normal textarea input?
i want to use a rich textarea input field instead of the normal textarea input field in one of my projects with codeigniter. how can i do this? can anyone help? i am using codeigniter 2.1.0.
i m ...
2
votes
1answer
36 views
+50
CodeIgniter Autocomplete for Eclipse causing problems
Followed this tutorial on getting autocomplete for CI to work with Eclipse http://taggedzi.com/articles/display/autocomplete-eclipse-codeigniter-2 - Worked fine.
Then tried to do this tutorial ...
2
votes
1answer
24 views
passing a large string through url in codeigniter
how do i pass a large string as a variable in codeigniter? i am trying show the user an article, if the article has more than 800 characters and less than 3044 characters i am showing it in a jquery ...
2
votes
4answers
64 views
renaming file name by id
i am trying to rename an image file and save the file location in database. i am having problem problem with it, as i want to name the file as the id of the table row i am inserting in.
after ...
2
votes
2answers
73 views
no access token or session initiated when passing user through $facebook->getLoginUrl();
I have run the php sdk example from Facebook and it runs fine on my server but when I droped the code into a method of codeigniters controller it doesn't return a session at all - has anyone ...
2
votes
2answers
72 views
How to display image from database in CodeIgniter?
I am using CodeIgniter 2.1.0 and MySQL database. I have uploaded an image through a form and successfully stored it in a uploads directory and I have also successfully stored the full path of the ...
2
votes
3answers
75 views
How to join two tables and then display the sum value of each data of a table gathering from the other table
First of all Sorry if my question title sounds stupid.... I have the following tables. The first table contains the name of my expenses type and the second table contains the information of amount and ...
2
votes
2answers
99 views
Extending The Controller Class in CodeIgniter
I have class MY_Controller extends CI_Controller and common logic for big profile section, so I'va tried to create class Profile extends MY_Controller with common logic for profile section and all ...
2
votes
1answer
71 views
view all links after pagination
is it possible to add a view All results link after or before the << First 1 2 3 Last >> links of the pagination?
I tried some thing like :
// in controller (search) :
...
2
votes
1answer
99 views
HTML 5 application cache and codeigniter php framework
I am creating a php codeigniter based administration backend which will be accessed only in google chrome browser. So, I thought of using HTML 5 application cache to reduce the loading time of images ...
2
votes
3answers
1k views
Authentication in jQuery Mobile and PhoneGap
I have a web application built with jQuery Mobile and PHP (CodeIgniter framework). Now I'm trying to make a PhoneGap version of it as well, to make it distributable as a standalone app. However, the ...
2
votes
1answer
161 views
Is there a codeigniter login library using MongoDb?
I need a Codeigniter login library for user authentication. I use MongoDB as my database.
I have gone through some of the recommended libraries like Ion Auth, Tank Auth, DX Auth etc. but all use ...
2
votes
2answers
559 views
Calling stored procedure in codeigniter
I am using latest codeigniter and trying to call stored procedure from my model. Also I am using mysqli as database driver. Now I am having an error when I call two stored procedures. Following is the ...
2
votes
2answers
54 views
Comparable means to mimic use of exit in CodeIgniter
I'm new to CodeIgniter. Previously I had developed a login script that would make it so that the login page appeared to be the same page the user was viewing by having lines similar to the following:
...
2
votes
1answer
132 views
jQuery select(live, change) and .ajax only firing once
I have a page that has 52 drop-down menus with the class of regionalSelect.
I have bound the change event to trigger an ajax run to the controller to save to the database and the success callback ...
2
votes
3answers
203 views
Codeigniter: Paypal IPN and csrf_protection
I'm working with codeigniter-paypal-ipn and have csrf_protection enabled.
This seems to block the access from Paypal to my IPN controller. If i disable csrf_protection it works just fine, with ...
2
votes
1answer
315 views
Codeigniter 2.x - Authentication + ACL library
I need a Codeigniter 2.x ACL + Authentication library.
I need to give have 3 different admin users and 2 different front end users and want to set everything dynamically through database.
Please ...
2
votes
3answers
232 views
Accessing value of public variable in codeigniter controller
Does anyone knows how to access the value of the public controller variable which has been updated by another function?
code example
Controller
class MyController extends CI_Controller {
public ...
2
votes
1answer
349 views
Codeigniter not loading CI super object
Hey guys I'm trying to write a hook for my Codeigniter application.
I'm trying to catch a session in my hook.
Here is my code to load the hook:
$hook['pre_controller'] = array(
'function' => ...
2
votes
1answer
73 views
codeigniter - is there a workaround for using flashdata with php sessions?
codeigniter - is there a workaround for using flashdata with php sessions ?
2
votes
2answers
235 views
CodeIgniter - Code repetition and passing variables to functions
I have the following code in a controller:
<?php
class Student extends CI_Controller
{
function index()
{
$data = $this->init->set();
$this->parser->parse('include/header', ...
2
votes
4answers
677 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 ...
2
votes
3answers
676 views
class name collision when using codeigniter 2.0 with Datamapper?
I am using CI2.0 with PHP 5.3
I just started to use “Datamapper ORM” and it is excellent!! however their is a one big problem regarding the classes’ names
I have a database table called “users” so ...
2
votes
1answer
490 views
Codeigniter Database Based Configuration Settings
I am building an application using the latest copy of Codeigniter 2.0. My application is dynamic and is kind of like a custom CMS I guess you could say. I have a database table called 'settings' with ...
2
votes
1answer
4k views
codeigniter 2 htaccess routing differences
Codeigniter v2.0 that was released on the 28th. I just setup a fresh installation and tried to remove the index.php from the url. I am using the same apache site-available configuration, htaccess, and ...
2
votes
3answers
696 views
Git environment for CodeIgniter project
I'm starting of with a new CI project based on the CI 2.0 Reactor repository. Because the CI2 code is still changing, I would like to keep that code fresh, the question is how (using Git).
For the ...
2
votes
1answer
200 views
How do get my ajax form to inject captcha verification into the browser after successful form validation?
Currently after my form has passed validation it forwards to an html page.
I would like to have one last step that pulls reCaptcha and when reCaptcha has been passed only then is the registration ...
1
vote
1answer
30 views
Getting info from many tables
I have 4 tables: question_tags, tags, questions and users.
Question structure is: q_id, q_title, q_content, q_date, q_author (id
from users table).
Tags structure is: tag_id, tag_name, ...
1
vote
3answers
21 views
In which function/class is the dbprefix added to the table name in Codeigniter Active Record requests?
In which function/class is the dbprefix added to the table name in Codeigniter Active Record requests?
I need to dynamically change the prefix based on the table name but cannot find the function ...
1
vote
1answer
119 views
Facebook Login confusion
I am planning to integrate a Facebook Login button into my website. Right now I have a Facebook Login button that when pressed, popups a new window asking for permission to access the user's basic ...
1
vote
1answer
34 views
CodeIgniter: Upload Video to YouTube
I'm using CodeIgniter + Zend libraries. I want to let users upload videos to my site, which I will then upload to my YouTube channel. This is my first exposure to the YouTube API. Can someone point me ...
1
vote
1answer
15 views
file operations on local sever using codeigniter
in my project i have a table named portfolio, which has an attribute called images. in that attribute i am saving the image location like 'uploads/1.jpg'. i don't have any problem with file uploading ...
1
vote
1answer
35 views
Loading Google Analytics Chart Returns Bad Request
In my application i displayed google analytics in charts.This is the link where i downloaded the analytics api:
http://mikhailkozlov.com/how-to-show-analytics-data-with-google-chart-tools/
This is ...
1
vote
2answers
44 views
codeigniter print form specific validation error
I have 2 forms on a page eg: 'create_user' and 'update_user' i want to show validation errors specific to each form just above the form. i mean, i want to show validation errors for 'create_user' ...
1
vote
1answer
18 views
Run a function before a model is saved to the database in DataMapper ORM and CodeIgniter
Is there a way to run a function/callback before a model is saved using Datamapper ORM in CodeIgniter?
I know this is possible in most ORMs where you can hook into certain points such as ...
1
vote
1answer
31 views
Does Codeigniter's validation class support multiple forms on the same page?
Can anyone confirm that Codeigniter's validation class doesn't support multiple forms on the same page, especially when the forms share 'name' fields?
That seems to be the case from the posts I've ...
1
vote
2answers
47 views
Loading View Page In Library In Codeigniter
In my codeigniter i created a library in library folder.I want to load view pages in that library.How can i do this?
This is my code:
$this->load->view('view_page');
But when iam using this ...
1
vote
2answers
177 views
pagination not working properly in codeigniter 2.1.0 with url_suffix
i am using codeigniter 2.1.0 and mysql database. in my admin panel i have a page where i want to show all users with a paginating view. but it is not working. after trying a lot of thingshere is my ...