Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
5k views

Zend different view scripts?

I have a controller that passes input from a form into a model class to perform validation. If the validation is successful I want to allow the flow to continue and render the default view associated ...
4
votes
1answer
1k views

Zend Controller Action: _redirect() vs getHelper('Redirector')->gotoUrl()

I've read that $this->getHelper('[helper_name]') is preferable to $this->_helper->[helper_name]. What I haven't been able to find any documentation of is which of these is better/preferred: ...
3
votes
2answers
96 views

Invalid Controller Specified Error, even though the controller is present

I have a camelcased controller name called MenuItem. And Also I have created a router for this particular controller as $routeMenuItem = new ...
3
votes
1answer
2k views

How to access URL parameters in bootstrap

I'm trying to capture a URL parameter in my bootstrap file but after several attempts I'm not able to do it. I've tried this but it does not work: protected function _initGetLang() { ...
2
votes
1answer
34 views

ZendFramework - How to protect confidential files uploaded in public/directory?

Some users uploads there confidential contract/agreement files which is stored in a directory /var/www/html/project/public/contract/<HERE_UNIQUE_FILES.pdf>. But the problem is from google ...
2
votes
1answer
130 views

Zend_View caching (Redis)

Task: During the process of action of Zend Application to achieve next: - for each unique url or any definite url to substitute Zend_View object by data stored in the cache (Zend_View object ) and not ...
2
votes
1answer
80 views

Zend MVC load config based on parameter in Url. Where is the right point dispatch/router/controller?

I'm defining a partner through a route based on the url e.g. my.domain.com/:partner/:controller/:action Now I want load the config file, databases for the partner before the front controller is ...
2
votes
1answer
220 views

How run zend framework action (inside index controller) by cron every 12 hours?

How run zend framework action (inside index controller) by cron every 12 hours? The case: I have basic(no modules) zend project (1.11) that created by zf tool. Inside main IndexController exist ...
2
votes
2answers
118 views

Zend framework action parameter

I want to pass an entire path as an action parameter to my controller action. mycontroller/myaction/myparameter/path_value e.g. path_value could be something like test/folder/folder2 I do not want ...
2
votes
2answers
564 views

Zend Framework: extend custom base controller from Zend_Controller_Action

I want my controllers to be extended from my base controller (no from Zend_Controller_Action). How can I extend my base Contoller from Zend_Contoller_Action. And where this custom base controller to ...
2
votes
2answers
377 views

Zend controller/view newbie puzzle: $_GET & $_POST empty - on receipt from HTML form within view

Zend newbie here ... And just to make it better, my mission is to build on top of someone else's pre-existing Zend site. (BTW: zf show version --> Zend Framework Version: 1.11.1 -- I seem to have ...
2
votes
3answers
350 views

Zend_Controller_Action _forward use (or abuse) cases

While developing a web app using ZF, I had an haha! moment regarding the _forward method in Zend_Controller_Action. As stated in the Programmer's Reference Guide, when calling the _forward method ...
2
votes
2answers
1k views

Zend Framework - Set No Layout for Controller

I have a Controller that I want to use for ajax scripts to call and set session variables, get information, etc. How do I set it so that that particular controller doesn't use the default layout ...
2
votes
4answers
162 views

Zend_Form:: When should be form created in view and not in controller?

Zend_Form:: When should be form created in view and not in controller? option 1 - form created in controller and passed to view (usually used) controller: $form=new MyForm(); ...
1
vote
1answer
44 views

Zend Layout for specific Actions

Is there a simple way of just enable a layout for the actions of a controller, instead of disabling it in all other actions of other controllers in Zend?
1
vote
1answer
148 views

An explantion of the Zend Redirector Action Helper

Is there a comprehensive explanation of how the Zend Redirector Action Helper works? I've read the reference guide, but am still not 100% clear. For example: Apparently the goToSimple() is more ...
1
vote
2answers
283 views

Zend Framework: How to stop dispatch/controller execution?

I have a Zend Framework controller with an editAction(). class WidgetController extends BaseController { public function editAction() { //code here } } This controller extends a ...
1
vote
1answer
86 views

I want to control with one Controller some other Controllers with their own models (not _forward)

I'm new to zend framework and its my first question I asked in the internet... sorry for my bad english! I have got a problem and in some hours I would jump out of the window ;) I have one controller ...
1
vote
1answer
251 views

Add validations to a zend form using ini file

Hii.. HOw do I define validations to a zend form using ini file.
1
vote
1answer
143 views

unable to access zend views from controller file

I am able to print the form content in the controller file, but when I assign the form view as $this->view->form = $form and trying to display the form design using echo $this->form in ...
1
vote
3answers
479 views

Zend Framework MVC redirecting to different controller and action

i'm trying to work out how i can stop zend or redirect zend to go to a different zend controller and action if a check within the boot strap fails. for example a get variable does not exist or more ...
1
vote
1answer
193 views

PHPUnit: “Invalid value passed to setPost()” when passing Zend_Db_Table_Row_Abstract converted using toArray()

The following code fails throws a Zend_Controller_Exception ("Invalid value passed to setPost(); must be either array of values or key/value pair") /** Model_Audit_Luminaire */ $luminaireModel = new ...
1
vote
3answers
254 views

Control access to files available for download

I have a folder that contains uploaded documents that my ZF application can spit out to logged in users. I want them to be able to use a link like http://server/documents/filename.pdf and download the ...
1
vote
2answers
1k views

Zend framework controller action helper

I am getting fatal error after adding the action helper class. I am trying to load layout corresponding to called layout. Following is my code snippet: First of all i added a helper class under ...
1
vote
2answers
1k views

Zend Framework - Extend Module Controller

I have the following directory structure: modules/ api/ controllers/ ApiController.php InventoryController.php OtherController.php The init() method is common amongst ...
1
vote
3answers
2k views

Getting the baseurl value into my controllers

Am creating an action helper that will require the return value of the Zend_View_Helper_BaseUrl How do I go about that?
1
vote
1answer
443 views

Zend Pdf generation from an action

I have a controller Employee , in that i have the action detail . The detail action prints like the attached image. Suppose there is a save pdf button, i need to print this page as .pdf.. How can i ...
1
vote
6answers
3k views

ZEND Controllers — How to call an action from a different controller

I want to display a page that has 2 forms. The top form is unique to this page, but the bottom form can already be rendered from a different controller. I'm using the following code to call the action ...
1
vote
2answers
381 views

Layout being rendered twice

I seem to have a problem with my layout displaying twice. I was wondering if this was caused by something in my front controller plugin (see below) which utilises Zend Layout only for a particular ...
1
vote
2answers
136 views

Zend_Controller Following PEAR Naming Convention

I am developing a web-app using zend framework. I like how all the autoloading works however I don't really like the way Zend_Controller names the controllers by default. I am looking for a way to ...
0
votes
2answers
128 views

Zend render static / dynamic with multi controllers

I'm pretty new to Zend (read the documents concerning routers and controllers). My StaticController and IndexController : class StaticController extends Zend_Controller_Action { public function ...
0
votes
0answers
40 views

PHP Zend Framework: How do I make ZF Tool work with extended Controller_Actions?

I'm working with a Zend Framework project and using the ZF tool from the command line. After setting up some initial structure, I extended the Zend_Controller_Action class with something like ...
0
votes
1answer
24 views

Is there an easy way to apply logging (e.g. Zend_Log) to Zend_Controller_Action_Helper_Redirector?

I've got an application which seems to be stuck in a redirect loop when I put it in a subdirectory of my server (e.g. blah.com/testing/ instead of blah.com/), despite sharing the same code. I think ...
0
votes
1answer
34 views

ZF: wrong links when using routing in bootstrap

The problem is when generating Zend_Navigation menu in the view all links have "/projects/add/" href. At the same time when "/projects/list/" is active all links are correct. The same if I deleted ...
0
votes
1answer
17 views

How to Echo a Single text line preceding a Zend Form?

I have a Zend_Form that is being called by the indexAction of my controller. It's a login form for a certain user type. How do I create a hyperlink to the other login forms in other controllers in ...
0
votes
2answers
45 views

How do I read the url parameters from a ZendFramework Controller

I have a ZendFramework controller whose view forms a framework similar to this: http://foo.com/#/controler/someaction/state/city/address/ The action looks like this: public function ...
0
votes
0answers
45 views

PHP Zend_Rest_Controller post method with Zend_Rest_Client

I want to post a method through Zend_Rest_Controller with Zend_Rest_Client. If any body knows help me. Thanks in advance. Cheers, Coder Decoder Encode
0
votes
1answer
138 views

Zend_Controller tries to execute my stylesheets as controller

I initialize my placeholders for my global layout within the Bootstrap.php as described here. public function _initPlaceholders() { $this->bootstrap('View'); $view = ...
0
votes
0answers
81 views

Test SubForms in PHPUnit [closed]

For a project, I'm trying to unit test a controller that makes use of SubForms: $this->request->setMethod("POST")->setPost($values); $this->dispatch("controllername/index"); $values is ...
0
votes
1answer
46 views

Fastest and easiest way to change controllers' module

I am developing my first Zend website, and I just finished the Back-office. The problem is that I did not create any module, but now that I have to develop the Front-office I would like to create a ...
0
votes
2answers
56 views

how to use a function within same function zend framework

Hii... I have a function something like this... class Zend_View_Helper_RenderUOList extends Zend_View_Helper_Abstract { public function makeUOList($inputArray, $main = true, $id ="", $class="") ...
0
votes
2answers
508 views

Invalid controller specified - Zend Framework

Hi Yeah I have already visited the forums & tried to solve the bug. PLease I really need a little help here. Whenever I am trying to access the http://domain.com/dashboard/index/index/ I ...
0
votes
2answers
146 views

Hooking into the Error processing cycle

I'm building a monitoring solution for logging PHP errors, uncaught exceptions and anything else the user wants to log to a database table. Kind of a replacement for the Monitoring solution in the ...
0
votes
1answer
126 views

error while validating form from ini file

Hii... When I tried to validate zend form using ini file, I am getting the following error message, please help how to fix this Uncaught Zend_Config_Exception, code: 0 Message: ...
0
votes
0answers
23 views

Call validations from ini file

Hii... How do I call validations from ini file added in configs for a particular zend module. Thanx in advance.
0
votes
2answers
197 views

How to create instance to zend controller

I have a controller named class TestController which extends some Zend_Controller_Action. Now I would like to use create an instance of TestController in TestForms (a Zend_Form). I want to populate a ...
0
votes
0answers
61 views

not getting the form data loaded into [log:Zend_View_Abstract:private]

Hii... I assigned $this->view->form = $form (form instance) and now trying to display the content in layout.phtml using echo $this->form; but not displaying anything. I tried to check contents using ...
0
votes
3answers
112 views

Zend Framework: Can I set a depth for url parameters?

I would like to get only one parameter. For example site.ru/controller/action/param1/value/ But if I request follow url: site.ru/controller/action/param1/value/param2/value2/param3/value4/ by default ...
0
votes
5answers
258 views

Unable to access module forms in module controller

I have a test module. In test module I have a Form in forms folder. myproject/application/modules/test/forms/TestForm.php class Test_Form_TestForm extends Zend_Form { //form elements } ...
0
votes
1answer
185 views

Integrating Zend Controller Standalone - without the rest of Zend Framework

I am using specific parts of the Zend Framework in my application, and I would like to replace my home grown controller with a Zend Framework controller. My home grown controller is based on an ...

1 2