0
votes
1answer
17 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', ...
0
votes
1answer
36 views

How to set view variables to multiple different view in one controller [zend]?

I have stuck with implementing a simple scenario. I have 2 views for a single controller MyController view/scripts/my/index.phtml /index2.phtml I know $this->view->test = ...
1
vote
1answer
36 views

Best way to call a Zend_Rest Action from another action controllers

I have set an "Api" module in my Zend (1.12) application who works with Rest. So in that module the controllers extend Zend_Rest_Controller. It works fine and It's very useful using it from terminal ...
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
1answer
34 views

How many controllers to make in a framework generally?

I was wondering if there are any guidelines for the number of controllers to make in any web based frameworks. I know it depends on the requirement. But still if you would consider a basic application ...
0
votes
1answer
168 views

Zend Framework 404 error issue in new controller

I am very new to ZF and I am working on an already built application. My task is to create web service in the application. I have setup the application locally and its working fine. So I have added a ...
0
votes
1answer
129 views

zend framework: plugin controller doesn't work

I want to get use of Controller plugins in Zend Framework. I've created a folder "plugins" in application folder and a file Test.php inside of it. It's content: <?php class Plugin_Multilanguage ...
0
votes
1answer
109 views

save() function Zend Framework

I have found this function in the documentation from Zend, more specific in the Create model and Database Table section ( http://framework.zend.com/manual/1.12/en/learning.quickstart.create-model.html ...
-1
votes
2answers
96 views

regular querystring in Zend framework controller

I am using Zend framework and it does URL rewriting but I want to handle in controller just regular querysting, get request seomthing like this ...
0
votes
0answers
60 views

add custom zend framework controller directory in application.ini

I have this in my application.ini: resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" But I cannot find a way to add a custom directory, e.g. ...
0
votes
1answer
62 views

Zend - Accessing datas from form from another controller by a view helper

after some questions about how to resolve one of my problem (http://stackoverflow.com/questions/13609611/using-several-modules-in-the-same-view) I have another one. I made a form in a view helper ...
0
votes
1answer
58 views

Zend setBaseUrl() difference?

Simple question, just no luck on Google. I was wondering it there is a difference in using Zend_Controller_Request_Http::setBaseUrl(); and Zend_Controller_Request_Http::setBaseUrl(''); It seemed ...
1
vote
1answer
106 views

Zend Framework non-existent controller redirects to home page?

When I type an invalid url (non-existent controller), it displays the homepage rather than return a 404 Page Not Found page. Does anyone know the possible reason? Thanks
0
votes
5answers
1k views

How to call controller function in view in Zend Framework?

In Zend Framework, I have one controller class TestController extends Zend_Controller_Action { public function indexAction() { } public function getResultByID( $id ) { ...
0
votes
0answers
79 views

Zend: generate WSDL file based on controller

I've got a problem generating wsdl file in my project. ImageController.php: require_once('Zend/Soap/AutoDiscover.php'); class ImageController extends Zend_Controller_Action { public function init() ...
0
votes
2answers
148 views

Zend_Db_Table and db->select in controller or model

I'm a little bit confused with Zend. Many examples show the usage of Zend_db_Table in the controller. But from what I've learn about MVC, anything about DB should be in the model. Now that Zend is ...
0
votes
2answers
105 views

Class Not Found when extends a Class of Subdirectory Controller in ZendFramework

I've the next structure -application --controllers ---Sub ----DemoController.php ---IndexController.php -models -views -Boostrap.php Well, in my Sub/DemoController.php I've the next: <?php class ...
3
votes
1answer
215 views

dynamic controller in router zend framework 1.11

How work multi controller in route? My route: $router->addRoute( 'index', new Zend_Controller_Router_Route('/:lang/:@action', array( 'lang' => 'en', ...
0
votes
3answers
75 views

Zend Newbie Issue with Controllers

I have a front controller that works. I wrote a login controller called AuthController.php. It is configured with the appropriate code inside. My problem is when I go to /auth I get a 404. It seems to ...
0
votes
0answers
13 views

Is this an ok way to update an interface on a zend application leaving the production server online?

I plan to update the interface of a website that's built on zend framework. The CSS and JS are in /var/www/account/public/css and /var/www/account/public/js The view files are in sub folders of ...
0
votes
3answers
140 views

Zend Framework - how to use in view script variables declared in other controller?

Zend Framework - how to use in view script variables declared in other controller? Do I need to pass the variable to view in the controller again?
1
vote
2answers
96 views

How to get a variable inside view helper $this->view?

I need to run in my zend project, inside a controller something like: <?php for($i=1; $i<10; $i++){ $this->view->someVariable.$i = $someClassName->someFunction(); } ?> ...
2
votes
3answers
79 views

link to another action

i am unsing zend framework. i have a view linked to a controller, home, so: application>controllers>HomeController.php application>views>scripts>home>index.phtml in the ...
0
votes
2answers
308 views

how to set a controller variable in a view from a form post

I have a Zend view in PHP with a form: <form action="https://example.com/checkout/" name="info" method="post"> <div id="payment"> <div id="paypal> <?php ...
0
votes
1answer
59 views

Errors in Controller - Zend

I am working on a small application and I have a problem with my controllers_viewpvcontroller. I'm trying to display a report. The user can decide the year and the month and after submitting them, the ...
1
vote
2answers
68 views

calling a different action in the same controller

I'm developing a small app. using php and Zend Framework. I have a form, and I use it's controller to view the form. Now I need to manipulate the form data and redirect the user accordingly. here is ...
1
vote
1answer
68 views

redirect to a controller via a hyperlink

I'm new to php, MVC and Zend Framework. I need to redirect to a controller/action via a hyperlink. I used this, as I have used it in a form to redirect to a controller. <a ...
0
votes
1answer
268 views

How to separate controller name with dash in Zend Framework?

I'm just new to Zend and currently I'm trying to add a dash(-) to my controller name. It look something like this module/first-controller/action. Please notice that is controller name not action ...
1
vote
2answers
55 views

Get Instance of self writen Zend_Controller

I have an Callback-Method setStatusCallback(). I want to override the Action-Method statusAction() which is placed on my User_IndexController-Class. I know that I can override a Callback-Method to ...
0
votes
1answer
337 views

Why ZendFramework $this->getFrontController()->getBaseUrl() is returning empty string inside a controller?

I'm using ZendFramework 1.11.11 for my application and I need know the URL (more specifically the path) that fire up my controller inside my controller. When I try ...
1
vote
3answers
678 views

Zend framework Specifying Module Controller Directories implementation?

I am trying to create a Modular structure to zend framework project, what i am trying to do is create a module which will look something like this docroot/ index.php application/ default/ ...
1
vote
2answers
86 views

Is it necessary to have a view file with every controller action

Whenever I create a new action in the zend framework controller using the zf CLI tool it creates the corresponding view file. However, I don't need the view file for every action in the controller. ...
0
votes
1answer
221 views

Zend framework — Action code before rendering view

When I use zend framework, how to run action code in controller before rendering view? Now I use 2 action functions, The first one have no view. The second one have the expected view. When the ...
0
votes
2answers
134 views

Zend framework Nesting controllers

Zend framework Nesting controllers I was wonder if it is possible to have nested controllers. I have an application that has a page with left bar and right bar. | ...
1
vote
2answers
177 views

500 error while implementing MVC in apache server

I am bigginer to php and i was trying to implement Model-View-Controller in php i updated allow override to all and created a .htacess file and wrote the following quotes in it, RewriteEngine On ...
0
votes
0answers
345 views

Zend Framework Controller set by default according to application directory while ignoring code

I've got serious problem with my Zend Framework Application which is under development. In fact while going to localhost/Appname page opens and everything is fine. But after clicking any link I ...
0
votes
1answer
249 views

How to initialize MongoDB connection in a controller in a Zend framework?

I tried to do something like this in my MongoController. However, it doesn't work. public function indexAction() { $m = new Mongo(); $db = $m->test; } I tried the same two lines of code ...
1
vote
1answer
894 views

Downloading files with Zend Framework

I'm a newbie to Zend Framework and I have such problem. On my web page I have the demos of products to be downloaded by users. When they want to download them, they have to fill the form (name, ...
2
votes
1answer
187 views

Zend Framework 1.11, Doctrine2 - How to test controllers without flushing to the database

I have doctrine2 setup with ZF 1.11, I am having difficulty learning the best way to unit test controllers. I would like to be able to test actions in controllers without writing to the database ...
1
vote
2answers
2k views

Zend controller's predispatch method

I was reading this to understand zend's MVC Request Lifecycle. But i can't think of any cases in zend where i would use a controller's predispatch method , isn't the init method enough for the code ...
1
vote
2answers
882 views

Zend framework: “url not found” only with index controller, only if lowercase

This is my problem: I have a working zend application running on aruba/linux. It seems to work well. I have some controllers: index, user, video, ... if i type "http://www.foo.com/public/" i can ...
0
votes
1answer
672 views

zend framework error controller not handling EXCEPTION_NO_CONTROLLER

In my Zend Framework project, my Error controller is not handling EXCEPTION_NO_CONTROLLER exception. When I debug the Error controller, it does enter the EXCEPTION_NO_CONTROLLER switch block and goes ...
0
votes
2answers
490 views

Create action in module's controller in Zend Framework

I have Group module and Moderator controller in my zend project on ubuntu. My Controller class is like this: class Group_ModeratorController extends Zend_Controller_Action { ------- ------- } ...
-1
votes
1answer
186 views

passing zend-framework variable from controller to view

I try to copy and localize a zendframework project seems every thing worked good but in final output in browser no variable from controller passed and this html code without CSS and JS loading are ...
0
votes
2answers
2k views

Get controller name in Bootstrap

I want to load an extra config file based on the controller's name in my bootstrap file, so I have to get the name of the controller in bootstrap (in Zend Framework 1.1). Is this possible? I've ...
1
vote
3answers
157 views

Extending from a BaseController in Zend Framework [duplicate]

Possible Duplicate: Is a good idea have a BaseController and make all controllers extend that class? I would like to know the benefits/purposes why you should extend your controllers from a ...
0
votes
1answer
255 views

Zend Framework: Incomplete object error when passing a value from controller to view

I'm passing a user object from the controller to the view, then calling a method on that controller. I've done a print_r on the object in the view, so I know it's the right object with the right ...
0
votes
2answers
365 views

zend + jquery doesn't work at all?

I'm trying to include the jquery helper in my zend project, documentation from zend is kind of ambiguous, it indicates to use a few lines of code in bootstrap but there are quite some functions like ...
0
votes
1answer
178 views

Moving existing Zend Action Controllers into a module

I began developing an administrative Zend PHP application but was informed later into the project that the same application needs to support a public facing interface. I would like to move my current ...

1 2 3