0
votes
1answer
22 views

Codeigniter 2 - Callback function in My_Controller

I have all my callback functions in My_Controller so that they are not repeated throughout the website. This works fine but for some reason one of my functions is not working when I am posting ...
0
votes
1answer
19 views

Problems with login at codeigniter

thanks for reading my post, i have this issue with a nettus tutorial and codeigniter, i am working with login forms controllers and model, and i made a change to keep level or rol when a user logins, ...
0
votes
1answer
20 views

Zend url router setting

How can I use Index Action in CommentController when url is http://site.com/api/location/{location_id}/comment/ i have code $r = new Zend_Controller_Router_Route_Regex('api/location/(.*)/comment', ...
2
votes
1answer
36 views

Laravel 3 routing all “/” requests to a specific group of controllers

I have a main site (/site) and two hotsites (/market, /content) and 1 admin (/admin). Now I can only access the main site using localhost/site/controller, but I wanna to route all "/" requests to the ...
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? ...
1
vote
3answers
37 views

Detecting changes in the model; php yii framework

I'm creating an audit trail module that i will put in a larger system; and i've created a table to store the trail entries , as an "auditor" what i want to see the currently logged on user, the page ...
0
votes
1answer
29 views

Yii Creating an audit trail; Controller to another Controller

I'm creating an audit trail module for a project using Yii php, and i'm quite a newbi.. and as we all know audit trail is concerned with the creation of history, transaction logs... i've created a ...
0
votes
0answers
74 views

Laravel Controller Layout testing

I'm trying to include unit-testing in a new Laravel app I'm building. Right now I'm want to test my OrderController. The index method of this controller looks like this: public function index() { ...
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
1answer
28 views

Getting the parameters out of uri

I setup a simple router class that extracts the following Controller Action Parameters class Router { private $uri; private $controller; private $method; private $params; public function ...
0
votes
1answer
33 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 ...
0
votes
1answer
42 views

Send info from View to Controller

I am working for the first time in cakephp for a project I am developing. In a view I have an array that I want to be able to use a controller function in it. The array I have the info in is this one ...
0
votes
1answer
110 views

How to show two views of one controller in the same page CAKEPHP

I have a doubt for few days ago. I hope to explain well, and sorry for my english. Im working with CakePHP, well, i have some controllers with their own views, etc.. What happens is: i have two ...
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
3answers
233 views

Php MVC framework needs too many files per page

I have tried to build an MVC php framework, similar to Symfony. Every page is loaded through the front controller, which loads the corresponding page controller (1) and view (1). The view loads the ...
1
vote
0answers
58 views

$_POST not working with apache rewrite. using index.php as controller

THE PROBLEM: I can't get any POST variables anywhere. Not even at the top of index.php. Is this because of the apache rewrite rule? Here is my .htaccess rewrite rule: Options +FollowSymLinks ...
0
votes
1answer
31 views

How to populate form helper select with array?

I have the following array data that is being fetched from a table that isn't mine. Array ( [0] => Array ( [sys_sbu] => Array ( ...
0
votes
0answers
56 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
179 views

Laravel Before Filter in the Controller with arguments

I have some troubles with filters in my controller and there parameters. Maybe one of you can help me out. Thank you. I have a controller similar to this one: class Test extends Base_Controller { ...
0
votes
2answers
108 views

Loading a block from a controller in magento, cache issue?

I have two methods inside my controller i call to get html for various ajax updates. protected function _getDemoShippingMethodsHtml() { $layout = $this->getLayout(); ...
0
votes
2answers
54 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 ...
0
votes
0answers
51 views

Symfony 2 route error when adding parameters

I seem to have come across an issue with Symfony 2 that I have not seen before (or more likley im missing something really obvious). I had a route which took no parameters and worked perfectly, ...
0
votes
1answer
198 views

laravel controller doesn't work

1. I'm following CodeHappy: Using Controllers to learn to use laravel controllers, in my PC "myproject/" points to "wamp/www/laravel/public" folder, when I try "myproject/account/login" the browser ...
0
votes
1answer
35 views

Concrete5: Is it possible to access the value set by set() function from another function in the controller?

In my controller's view() function, I have something like this: function view() { $this->set('myVal', $text); } Now is it possible to access $myVal from another custom function inside the ...
0
votes
2answers
83 views

Cakephp not rendering views

I have a controller, that doesn't render a view (the file is present). It just simply shows a blank page. Also it happens only on staging server - two other dev environments work fine. Here's the ...
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 ...
1
vote
2answers
96 views

Should the page controller verify if the selected view/template exists? [closed]

I'm busy with a small framework which I would like to build on "accepted" standards. One of my biggest quests was to ensure that my project config files (containing db info etc) is secure but still ...
0
votes
1answer
43 views

Codeigniter 2: misunderstanding with_remap method in controllers

public function _remap($method) { if ($method == 'some_method') { $this->$method(); } else { $this->default_method(); } } This is what i read from ...
0
votes
1answer
59 views

Opencart Login Categories

I need to create a log-in for all categories apart from one with its own ID, say '192' In controller/category.php I added the below... if (!$this->customer->isLogged()) { ...
1
vote
0answers
48 views

How to change the number of specifiers with count of providing array in php

My code is given bellow Controller code: class statController extends baseController { public function index() { $this->registry->template->projectsWise = ...
0
votes
1answer
108 views

codeigniter 2: getting 404 error on default controller

I set default controller like this $route['default_controller'] = "InterviewController"; So here is InterviewController's code class InterviewController extends CI_Controller{ private $em; ...
0
votes
1answer
43 views

CakePHP 2 - Converting Userinputs to lowercase

I have written in CakePHP 2.3, for my project an user management. Everything works fine. But now I would like to have a registration function in which the user can create themselves. Even that's not ...
3
votes
1answer
69 views

functions accessible by multiple php classes (Symfony controllers)

I have a couple functions that are used in multiple controllers in my Symfony project. Instead of copy and pasting them constantly, I'd like to have a separate php file (say functions.php) to store ...
0
votes
1answer
24 views

Why var_dump for $this->data['foo'] is not working and for $data['foo'] is?

In my controller I have this: $this->data['post'] = $this->mdl_posts->get_post_by_slug($slug); var_dump($this->data['post']); die(); The output is null However, when I change it to: ...
2
votes
1answer
89 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
0answers
107 views

ZF2 run command to create controllers, actions, forms,

I'm trying to make the switch from Zend Framework 1.12 to 2.1.4 and I'm having a hard time with it. I code in Netbeans IDE and am used to 'Run Zend Command' (by clicking with the right mouse button on ...
0
votes
1answer
42 views

Overriding Core Login controller in Concrete5.6.2

I want to overriding core login controller in Concrete5 latest version without editing core files. because i want to add extra functionlity in do_login method of login controller. I have tried. But it ...
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 ...
1
vote
1answer
127 views

Functional test of a symfony2 controller: How to generate a route

On a symfony2 controller, I would like to test a controller, which return a Response object. My test class extends from WebTestCase. I use the static::createClient() to get an operational client. My ...
1
vote
1answer
132 views

symfony2 getting route parameters (controller arguments vs request)

Which access to route parameters is faster? Put route parameters as controller arguments Getting route parameters from $this->getRequest()->get('param') And what about request object? Better ...
0
votes
1answer
55 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
vote
1answer
69 views

What is the difference between Zend_Controller_Action_Helper_Url and Zend_View_Helper_Url?

I'm currently using ZF 1.12.2, and I'm using the URL action helper to set action attributes on my form, but the action helper is performing an array to string conversion. I have commented on what I ...
0
votes
1answer
40 views

Zend php generate file in controller then include it

I am working on a Generic Model so I am trying to generate a php file with the DBTable name then include it in the same ActionController. But the page is already loaded and my file could not be ...
0
votes
2answers
79 views

CakePHP controller action not firing

I'm a beginner at CakePHP, and for a project at work I'm running into a maddening problem. I have a paginated list of links with each linking to a view in cakephp: link1: <a href="<?php echo ...
0
votes
3answers
178 views

Can't override indexAction() of Magento 1.7 CartController

I am trying to override default indexAction() for Mage_Checkout_CartController. I have created following files in my app/local: MyNamespace/cartStockCheck/controllers/CartController.php ...
0
votes
1answer
70 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
2answers
326 views

Passing values to view in Zend Framework 2

I'm trying to convert our existing application from Zend Framework 1 to Zend Framework 2 and I'm having a little trouble. In the original application I had the following in my controllers function ...
1
vote
4answers
304 views

How to create custom MySQL queries in CakePHP?

I am trying to create my own MySQL queries in Cakephp. This is my LocationsController.php: <?php App::uses('Location', 'Model'); class LocationsController extends AppController { public ...
0
votes
1answer
142 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
1answer
46 views

PHP CodeIgniter returning Controller Name rather than Doctrine Associated Entity

I have a basic entity that has a Unidirectional OneToOne relationship with another entity. I have an instance of the owning entity that's created via a variable method as so: $entity = new $entity; ...

1 2 3 4 5 9