0
votes
2answers
22 views

CodeIgniter reUse/extend controller

I have my controller class Page extends CI_Controller { public function id() { $this->load->model('content'); $page = $this->uri->segment(3, 0); if($page == ...
0
votes
3answers
26 views

Codeigniter 2 difference between index and __construct and what to put in __construct

When is __construct called and when is index called? And are there any other differences? And what to put in __construct? Whats the best practice, should I put $this->load calls... ? what else? ...
0
votes
1answer
27 views

Code Igniter doesn't recognize my function in controller under a folder

I have a folder under my main controller-folder called admin, in that controller i have a file name admin.php which has a function xyz. I want to access that function using this url ...
0
votes
2answers
42 views

Codeigniter says “Unable to load the requested file” to my controller's method

After I have uploaded last version of application to the server, I have found the following problem: After my admin controller redirects unauthorized user to admin/login page( ...
0
votes
0answers
31 views

codeigniter loads only default controller

i read the previous answers to that question but had no luck. For the website i build, i use 3 controllers: home, login and edit_page. The problem is that when i type in the address bar or press a ...
1
vote
1answer
27 views

Codeigniter custom route works but controller outputs wrong route on running code after page load

I have this route setup, $route['admin/company'] = "company"; This works nicely if you go to it, on this page I have 2 forms for adding and removing companies from a database, when this code is run ...
0
votes
1answer
31 views

Codeigniter controllers for subpages? (New to Codeigniter please help)

I am new to codeigniter so please excuse my stupidity. I am building a client portal and I have my admin / client login setup I am currently working on the admin area first so I have my controller ...
1
vote
2answers
59 views

I want to hide the controller names form the url

I want to hide the controller names from ther url. I tried using the routes.php file in config folder. the code in the file is like this $route['default_controller'] = "controller_home_body"; ...
0
votes
1answer
30 views

add post data to an array in controller and output from view with Codeigniter

I have the following syntax: Contoller function new_auto_spread_details() { $postinfo = array(); $postinfo[] = $this->input->post('customer') $postinfo[] = ...
0
votes
2answers
41 views

codeigniter post value not available to form. use post value in controller logic

I have some syntax in my controller: $data = array( 'submit' =>$this->input->post('submit'), 'period' =>$this->input->post('period'), 'buom' ...
0
votes
0answers
55 views

Undefined property error in my Controller in CodeIgniter 2 [closed]

I am currently in the process of upgrading my custom news system to CodeIgniter 2.1.3. Can someone explain why I am getting the following error when trying to visit the news section: A PHP Error was ...
0
votes
1answer
27 views

Codeigniter: using libraries in controller?

I want use my library function in controller file. Is it possible ? Thanks..
0
votes
2answers
51 views

Can CodeIgniter Helper Functions use database functions?

One of my CodeIgniter Controller functions needs to call a recursive function as part of its functionality. The function call chokes if I put it inside the controller class, and it can't access ...
1
vote
2answers
51 views

CodeIgniter: How to pass variables to a model while loading

In CI, I have a model... <?php class User_crud extends CI_Model { var $base_url; var $category; var $brand; var $filter; var $limit; var $page_number; public function __construct($category, ...
0
votes
0answers
41 views

passing parameter between controller

i have variable in json in controller A (code igniter) And I like to pass this json data to controller B. I assign json to variabel $fb_uname = $fb->username; $fb_umail = $fb->email; and ...
0
votes
2answers
34 views

using segments on default controllers in codeigniter to go to profiles after not finding the other controllers?

Does anyone know if it's possible to use segments on the default controller? For example if i want to go to a profile on my site, it would be site.com/profileName, i know you would use it to access ...
2
votes
1answer
88 views

fat model and skinny controller design confusion between the controller method and model method

i'm newbie in MVC (using codeIgniter as my example) and i have read MVC fat model and skinny controller for like 3 times, what i got : model does the hardwork while controller calls the model and ...
0
votes
2answers
43 views

codeigniter models in controller is not loading

This is my controller: class Orders extends CI_Controller { public function index() { //get model and db entries $this->load->model('order_model', 'orders', TRUE); }} When i open the ...
0
votes
2answers
47 views

Codeigniter - passing form input information to the controller and displaying it on next view

This question is possibly a duplicate but I cannot find the exact answer I am looking for. I have two forms and two controllers. I want to input data into the fist controllers view. on that page ...
0
votes
1answer
53 views

CodeIgniter loading from multiple controllers and models

HI everyone I only recently started Using CodeIgniter I have a simple question is it normal to use multiple models and controllers for the same view ? What I want to do is to have a controller and a ...
-1
votes
4answers
44 views

Codeignighter - Undefined variable in the view

I have been scratching my head for a while on this one, public function business() { $org = $this->session->userdata['logged_in']['org_id']; $query['org_details'] = ...
0
votes
2answers
44 views

sending data from controller to view codeigniter

I have controller that loads a customer details view which includes the name of the customer, email, fax,phoneNo. ...etc i want the user of the system when types in the form of the customer name to ...
0
votes
1answer
64 views

Pass additional data with Code Igniter Core Controller

I have this core controller in my code igniter app and I want to pass a view variable's to all my views. My view is loaded in my normal controllers, so I can't load the view again in my Core ...
0
votes
3answers
107 views

codeigniter pass variable from controller to model

simple issue I presume. My controller is getting the if to display from the url using $this->uri->segment(3). This will always be a single value. I am putting this in an array to pass to the ...
0
votes
1answer
135 views

loading a view after an ajax call, CodeIgniter

I have an ajax call from javascript to a method in a controller, the method in the controller should be loading a view(like, show a new page on the screen), Although everything seems ok, the new view ...
0
votes
0answers
55 views

Doctrine Entity Manager access

I integrated my Codeigniter with Doctrine ORM the way described in this great tutorial http://www.joelverhagen.com/blog/2011/05/setting-up-codeigniter-2-with-doctrine-2-the-right-way/. It says that ...
0
votes
1answer
127 views

CodeIgniter Server Error

In my codeigniter application, there's 10 controllers, but 2 of them have a server error, what's the problem? in my controller: function index($offset='') { ...
0
votes
1answer
37 views

codignieter nested views

I'm trying dynamically to initialize my controllers methods and gather the output data for my nested views. I would like to avoid to check every time the instance of $data['something'] in the view ...
0
votes
2answers
34 views

Is there anyway I can send a variable as an argument to the constructor of a controller in the codeigniter?

I am new to codeigniter. I was just thinking, is there any way I can send any variable to the constructor of a controller, the same way I can do in java when I create an object? Any help would be ...
0
votes
2answers
34 views

variable in codeigniter

i am only a beginner at php and codeigniter i am trying to pass data from model in to controller and then in view but i have uninitialized variables how would i initialize them ? here is my code: ...
0
votes
1answer
40 views

passing data from controller to view advice required

i want to pass some data from my database on to a webpage i have Somme code in my model that specify what data i want to select and echo the data in my view my question is how would i go about passing ...
0
votes
0answers
35 views

How do I call a controller from a google maps infowindow using codeigniter?

I am trying to call a controller from a google maps infowindow. Is it possible? Right now I am trying to call it from a link in the infowindow but I have not been successful so far. I am also using ...
0
votes
0answers
169 views

Fatal error: Cannot redeclare class CI when using HMVC + MY_Controller + Frontend_Controller + Admin_Controller

MY_Controller.php (application/core) : <?php class MY_Controller extends CI_Controller { public $data = array(); function __construct() { parent::__construct(); ...
0
votes
2answers
119 views

codeigniter controller not running while using ajax

This question is also related to my earlier post jquery ajax form submit not working with codeigniter but working otherwise I want to submit a form without loading a new php page. I am using ...
0
votes
2answers
37 views

Can we use Models functions and libraries and other controllers in codeigniter precontroller hooks?

I have to make URL requests coming to the system secure, so i have to check each and every URLs and filter them based on valid requests. so I want to access the models APIs i have written in model ...
0
votes
1answer
13 views

codeignitor - which values reference actual files and which reference classes/functions?

I am doing some tutorials of codeignitor and frustrating myself with some elementary stuff so apologies for this very low level question. I have a model named math.php <?php class math extends ...
0
votes
1answer
54 views

why do I get 404 error or a weird url while linking two pages in codeigniter?

I am trying to link two pages (the homepage and the about page ) in codeigniter. But when I click on the about page link <a href="aboutpage">Click here for the About page</a> a 404 ...
0
votes
0answers
131 views

CodeIgniter Form Validation Callback Function Visible to Router

Can anyone tell me if there is a way to callback with the form_validation library in CodeIgniter to a utility function of a controller? I have a function called check_database that is a callback ...
1
vote
1answer
118 views

how can i pass data from parent controller in codeigniter

I am trying to prevent myself from repeating the same code over and over in every controller. So i place function that fetch the data in the parent controller, and i am trying to pass that data in the ...
0
votes
3answers
48 views

The management of files and folders in codeIgniter can be made from controller or model?

I want to verify if file/folder exists on my CI system (not system folder), can i do it from controller or I need create a method on my model to do it?
0
votes
2answers
93 views

Data through controller - view in CodeIgniter

I have this snippet code in my Controller: // load model $this->load->model('article'); $data['article'] = $this->article->get_data_article(); // add more array in data['article'] ...
2
votes
1answer
133 views

codeigniter how can I manage objects from mother controller to two child controller

I have created 2 controllers for paging and 1 controller for model and one model for database. and 2 controller extends to other controller. like this class MY_Data extends CI_Controller{ ...
0
votes
2answers
83 views

CodeIgniter - Undefined variable & Trying to get property of non-object

I'm trying to get data from API in my Controller and pass the data to the View. But it don't seem working and causing error: Message:Undefined variable: data and Message:Trying to get property of ...
0
votes
3answers
280 views

Code igniter show div else show a different div in a view

I want to set a divs in conditions IN my View but I don't know how to I do it.If the request from controller comes true to him then success div appear otherwise failure div. At the time I am just ...
0
votes
1answer
57 views

Get error on first codeigniter app

I am new to codeigniter and I was trying my first app from the reference of this link But I got the following error: Fatal error: Class 'Controller' not found in ...
0
votes
1answer
140 views

CodeIgniter check sessions in every controller?

I have define this controller to check user session: class SessionController extends CI_Controller { function __construct() { parent::__construct(); $this->is_logged_in(); } ...
0
votes
1answer
46 views

controller do not displays in right way

I have two controllers in my project. The second controller do not displays in right way. If I open it with in browser line - thats ok, but if i pass it by the link in view its not ok. The second ...
0
votes
1answer
62 views

When the form throws validation messages to the user, the drop-down nav breaks on the site

RESOLVED: In the contact controller i had function index with the page location then a separate one called function send_mail. I removed the send_mail function and moved the code up to the index ...
2
votes
3answers
254 views

Page 404 CodeIgniter index.php

I have this problem regarding Codeigniter, unfortunately other posts regarding this problem in this site does not help me or I did not apply it well. Edits* Added Screenshot: My Directory ...
1
vote
2answers
349 views

Code Igniter / Fat Models / Skinny Controllers

Today, I have learned that it is considered good practice to have fat models and skinny controllers. Up to now, I have had it the other way around, so everything that I believed I understood about MVC ...

1 2 3 4 5 6