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.

learn more… | top users | synonyms

0
votes
1answer
18 views

Codeigniter multiple database, conn_id returns object even if connection fails

I have been reading several posts plus the official guides about how to connect more than one database in CI. I currently connect to the default application database using the standard database.php ...
0
votes
2answers
26 views

How to keep results filtered by selectbox even after page refresh

I'am using the CodeIgniter. I have a global category list, which is separated into the several components such as (Conten articles, E-commerce, Users, Banners, etc...). There is ...
0
votes
1answer
23 views

Adding an array to an existing array and saving with CodeIgniter

I have the following function: function saveCOA() { $labref = $this->uri->segment(3); $data = $this->input->post('compedia'); $data1 = ...
0
votes
1answer
24 views

Calculating Treversal Tree items level

I have a database that has category names. The columns are ID | CategoryName | ParentID. I'm using row_array() from the CodeIgniter model, and I want to add a level key to that row array. I have a ...
0
votes
1answer
33 views

Check if existing username from controller and redirect to view page if already exists

I have the following username lookup function that checks if the username is available. <script language="javascript"> function lookUpUsername(){ var name = ...
0
votes
0answers
17 views

Is rewriteCond doesn't work with semicolon?

I've ask this rewrite rule for Everything but certain pattern question. Well, the problem is still the same. I have the following htaccess: <IfModule mod_rewrite.c> # Options ...
0
votes
1answer
20 views

Pass a variable from one page to another in CodeIgniter

In codeigniter, on the page /categories I have a table with the rows of all category items. There is a <select> box to filter the categories by components: <form accept-charset="utf-8" ...
0
votes
2answers
31 views

Two different submit buttons in CodeIgniter form without Javascript [duplicate]

I have a form where I can add a new category item. <form method="POST" action="backend/categories/form"> <input type="text" name="title" value="" /> <button ...
0
votes
2answers
54 views

Saving multiple HTML textareas in CodeIgniter

I would like to grab the values of several textarea fields and save them to the database. For now I have four of each with different values and I want to batch save these values, the textarea fields ...
0
votes
2answers
54 views

Data not passing from Controller to View Code Igniter

I am puzzled because of CodeIgniter's strange behavior. I am fetching some data from Model and returning it to Controller and passing that data from Controller to View. Controller function index() ...
0
votes
3answers
43 views

Sounds simple but It is not working: Import CSS in CodeIgniter 2.1.3

I Just downloaded CodeIgniter 2.1.3 and Trying to import css into via header_controller, I have tried SOF: CodeIgniter - Loading CSS, CI_Help_page and codeigniter CSS problem (SitePoint Form ...
0
votes
1answer
18 views

segment based url not working codeigniter

at this site: http://www.syriadailynews.com/sdn/ I used codeigniter with segment based url and it works fine at localhost (xampp) but after uploded the site, all urls not working this is my ...
0
votes
2answers
24 views

Implementing SQL in codeignites active record

How can i convert this sql to codeigniters active record format SELECT COUNT(*) FROM( SELECT DISTINCT component FROM `multiple_sample_assay_abc` WHERE labref = 'NDQA201303001' )x I have tried this ...
0
votes
0answers
19 views

Giving permission to encrypted file on mac [duplicate]

I am setting up codeigniter project. I need to set permission to these two files but they are not present in my project. i guess its encrypted. how can i use chmod 0777 ...
1
vote
1answer
31 views

CHMOD 777 Codeigniter configuration error

I am configurating my project on codeigniter and Mamp. When i run it i got CHMOD 7777 error as shown in the image. Does someone know how to make config.php and the other page rewritable.
0
votes
1answer
44 views

Correct way to use Model's method in codeIgniter's view?

From my VIEW, let's call it 'index', on a button click I would like to perform a DATABASE QUERY without loading the page again , however I cannot think of a method to so without breaking the MVC ...
0
votes
1answer
28 views

Codeigniter 2.1 - Count all results of search before limit

How can I count all results when I am doing search before limit? Do I need to make two queries (one with limit and one without limit) or this can be done in one query? I have function like this: $i = ...
0
votes
1answer
22 views

losing session in function with codeigniter

So I am using session to hold username and then check if its there. if yes, then use it to update related to current transaction. The following is my code: public function update_edit() { ...
0
votes
0answers
17 views

Calling default view from Codeigniter Modules (HMVC)

I am having problems establishing the best way to call views in codeigniter when using modules (HMVC) All my previous php HMVC experience is in the ZendFramework .. and I feel like i'm treying to do ...
0
votes
0answers
35 views

Connecting two database in codeigniter not working

I am trying to connect two database in Codeigniter. I came accross this link Codeigniter - multiple database connections and setup the database as per my requirements. Now the problem is that only the ...
1
vote
1answer
67 views

update statement breaking the database

I am trying to figure out what's wrong here, but really not sure. I have a site with users, when a user edits details, it seems to override all other records with those details. This doesn't happen ...
1
vote
2answers
34 views

Codeigniter Active Record - Count Total Found Rows with Limit (MySQL)

I'm using a complex SQL query in a Codeigniter model with a limit applied. I'd like to count the total number of rows that would have been found if the limit and offset had not been applied. I'd like ...
-2
votes
0answers
31 views

CI Send Mail Not working [closed]

Hi I try to send mail using Codeigniter Email Library but the email is not receiving and i cannot print any errors $this->load->library('email'); $this->email->initialize(array( ...
0
votes
2answers
28 views

Change Location In tempnam

I am having some trouble providing the directory path in tempnam();. When i use tempnam('', 'xyz'); , the file is getting stored in tmp directory. But i need to store the file in a specific directory ...
1
vote
2answers
87 views

Running CodeIgniter Project

I have a Whole web site project based on CodeIgniter framework. My problem is i don't know how to run this project on my local Mamp Server. I have Successfully set up Mamp and Also run the latest ...
0
votes
0answers
29 views

losing quality after adding watermark to the picture

I'm working on a website wich i haven't create/developed Anyway users can upload image and when they do that , there's a function that create a duplicate of that image with a watermark But the ...
0
votes
1answer
9 views

Custom helper with input validation in Codeigniter

My idea: Create a custom helper which could be loaded when checking a input field for min length. Creating it as a helper so it could be re-used in different files and keeping it organized and ...
0
votes
2answers
61 views

Include all codeigniter functions to a new static page(php file) which is located in root folder. [closed]

I am developing a website which having many static pages. so i created controller only for dynamic pages(it might be wrong practice). Keeping all other static files in root folder. Now i want to use ...
-1
votes
0answers
21 views

Create symbolic link with Codeigniter so that it is satisfactory for me

I want to create symbolic link. System is implemented with codeigniter framework. But symbolik link is not working satisfactory. I am using following command: $ ln -s /var/www/html/dps.com/ ...
-4
votes
3answers
63 views

Echo mysql query [closed]

I am using the following function in a model: function login($email,$password) { $this->db->where("email",$email); $this->db->where("password",$password); ...
0
votes
2answers
37 views

CI - show database error or fail

I've developed a simple login system which works ok but fails, and I need to know why QUESTION: How to show what is causing the fail. This is not a validation error but an error either with the data ...
0
votes
3answers
54 views

CI - show me what went wrong [duplicate]

I've developed a simple login system which works OK but fails, and I need to know why. QUESTION: How to show what is causing the fail? Here's the database function: function login($email,$password) ...
0
votes
1answer
20 views

CodeIgniter news/view doesn't work, page 404's

I am currently learning my ways with CodeIgniter and I need some help with the view news part of the tutorial. It shows a 404 page. My site is Tristans.tk. Click on news and then on one of the ...
0
votes
2answers
37 views

Email library not sending the correct link

I have the following code: $link = "www.domain.com/profile/forgot_password?user=".$username . "&key=".$key; $this->email->message('You requested to reset your password. Follow the link. ...
0
votes
1answer
59 views

Codeigniter Session Class not displaying session variables set by other domain

In my site i have integrated facebook login. Site is developed using CodeIgniter framework. In facebook login, after authentication carried out by facebook, certain session variables are set by ...
0
votes
1answer
28 views

CodeIgniter cannot load database library manually or autoload; Call to Member function get() on a non object

I'm unable to load the database library correctly manually in my model or in autoload.php The line $query = $this->db->get('videos'); produces a Call to Member function get() on a non object error ...
2
votes
2answers
30 views

How to pass variable between views? Codeigniter

Codeigniter noob here: I am wanting to let users click a button inside someone's profile in order to send them a message, I need to pass the variable from the view back to the controller and into ...
0
votes
0answers
34 views

Validate webservice parameters

I'm quite new to Codeigniter so kindly help me through.. I'm writing a RESTful web service with Codeigniter - is there a way to validate the parameters I get in the 'POST' request's json? By ...
0
votes
1answer
31 views

change any rule in codeigniter to match function

I have set up my routes.php to suit the nature of my site. Unfortunately, there is a problem with my last route i.e.: $route['(:any)'] = "profile/profile_guest/$1"; If the username password ...
-2
votes
3answers
71 views

Is this a bad practice to add die() at the end of “Views” in CodeIgniter?

In order to make things right and prevent CodeIgniter from loading another views after a loaded view I needed to added die() at the end of views (footer). Is this a bad practice and Will this cause ...
0
votes
1answer
30 views

Codeigniter-HMVC get_instance() in library does not return expected result

I have the Controller: application/controllers/bob.php Then in a library I use in the controller Bob.php, I have this code: $CI =& get_instance(); echo get_class($CI); So I open the url ...
0
votes
0answers
52 views

set value for the dropdown in codeigniter

I am getting the values from the db and populating the dropdown. Below dropdown is multiselect, I am using this dropdown for the filtering purpose. Once user selects multi projects of the dropdown and ...
0
votes
0answers
26 views

Getting “Severity: Notice” while fetching value from $_SESSION

I have stored some value in $_SESSION['id'] and trying to retrieve it and in the process I am getting this error Severity: Notice --> Undefined index: id path_of_file Quite surprisingly when I ...
0
votes
1answer
63 views

codeigniter session save to database keep updating many times

I have a question. I'm using latest version of CI. I have currently enabled session to use the database, but there is only one problem with how it works since it tends to update the database every ...
0
votes
0answers
49 views

Use codeigniter Form validation lib. to validate arrays not from post

Might be a duplicate. but i couldnt find anything on google so here we Go. i have a form that submit data. this data is further process and split it into variables. example My form post <input ...
0
votes
1answer
22 views

image resize codeigniter issue not working

I've been attempting to resize images but with no luck! I have the resize inside the upload function but not sure what is happening wrong! The code below shows my upload function (and resize within ...
1
vote
1answer
59 views

Getting broken images from blob storage in Azure websites

My php code seems correct, (the part that talks to blob storage). //talk to blob storage, get links, based on file name $storageClient = ...
0
votes
1answer
41 views

codeigniter not loading application/core files

Got a problem with codeigniter with exteding the core. I build a website local and it workst perfect. Even when checking out on new machine or diferent php version ( tested on 5.3 and 5.2 ) it works ...
0
votes
2answers
36 views

Loading views in Codeigniter

Hey guys, I'm having an issue with loading multiple views in codeigiter. $this->load->view('header'); $this->load->view('body-view', $data); $this->load->view('footer'); The code ...
0
votes
0answers
33 views

No DB Error Numbers in Codeigniter

I am using Codeigniter connected to an oracle 11g db with the provided driver. I am getting a database error with my query, but Codeigniter is not showing any error numbers :/ Any ideas?

1 2 3 4 5 28