zend-route is a tag suitable for any questions regarding routing in Zend Framework's MVC implementation, url handling, or any other matter affecting or affected by routing in Zend Framework.
10
votes
7answers
604 views
How to set controller/action to Page Not Found
I have a controller and action which I'm accessing through a custom URL. The original route is still accessible though at the default location
zend.com/controller/action
How can I change this to ...
9
votes
2answers
2k views
Zend_Translate - Zend_Navigation and Routing combination problem!
I'm having some difficulties with the combination of Zend_Navigation, Zend_Translate and the routing needed.
My site navigation is done through Zend_Navigation based on and XML file.
I've now added ...
7
votes
3answers
2k views
Zend Form SetAction Using Named Routes
I have a form that I am trying to set the action for. I want to declare the action inside my form file (which extends Zend_Form) instead of in a controller or view, using a route I have created in my ...
5
votes
2answers
809 views
Matching Multiple URLs with parameters using Zend_Controller_Router_Route_Regex in Zend Framework
i am developing a Rest Controller with Zend and i am confused with the mapping of urls to the Router.
Basically i read about Zend Router and i could not plan my urls in order to satisfy the mentioned ...
4
votes
1answer
100 views
How to retain default Zend route
I am trying to setup meaningful URLs such as http://www.site.com/company/department however it hammers my existing URLs which are in the Controller/Action shape.
In my bootstrap, I create my new ...
4
votes
1answer
2k views
How to set up Hierarchical Zend Rest Routes?
With the Zend Framework, I am trying to build routes for a REST api on resources organized in the following pattern:
http://example.org/users/
http://example.org/users/234
...
3
votes
1answer
84 views
Routing for country , province , city , product in Zend Framework
This url structure is proposed for SEO optimization. So suggesting another structure will not work. Structure proposed is
...
3
votes
2answers
119 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
152 views
What is the most idiomatic way to paginate through the results of a search performed using zend_form
I've implemented an action + view that lists all the rows in a database and allows you to paginate through them using zend_paginator. I've also written an action + view that takes a form post (or ...
3
votes
2answers
125 views
Convert Zend_Rest_Route code to handle 2 params?
I have Zend code from http://www.chrisdanielson.com/2009/09/02/creating-a-php-rest-api-using-the-zend-framework/ which looks like this:
$this->bootstrap('Request');
$front = ...
3
votes
2answers
590 views
Zend Framework route: unknown number of params
I'm trying to write a route for an level N category depth. So an usual category URL would look like this:
http://website/my-category/my-subcategory/my-subcategory-level3/my-subcategory-level4
It ...
3
votes
1answer
565 views
module specific routes in Zend Framework without specifying module name in route
I need to create some module specific routes, but without explicitly mentioning module name in route. Right now I have separate config file for each module (MODULE/configs/module.ini) and in the ...
3
votes
1answer
691 views
Zend Framework: set Module as Subdomain
I want to create routes to also get links like:
my.site.com(/:controller/:action)
admin.site.com(/:controller/:action)
I tried to add:
resources.router.routes.www.type = ...
3
votes
1answer
2k views
Zend Navigation and Zend Router problem - not finding correct active page
Okay. I'm building a CMS with Zend. It isn't as simple as it looked but still — the best solution for me. I have a tree system with ID and PARENT, PARENT marks under which page the child resides. ...
3
votes
1answer
56 views
Zend Routing:: How I can send all request that going to application-> IndexController to application->module->store->IndexController
How I can send all request in zend project to my default module controller (without use .access files).
Now it going to application->IndexController, Instead I need that every request will go to ...
2
votes
2answers
167 views
Zend_Controller_Router_Exception: Route default is not defined
I'm trying to test a controller. Zend Tool has generated the following code:
class Default_CarrinhoControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
{
public function setUp()
{
...
2
votes
1answer
40 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
54 views
Full url with schema, domain and port
How do assemble (using Zend Routes) the full url with schema, domain and port, not just a root-based path?
Sample use case: we need to specify full url in the emails sent to the clients.
AFAIK there ...
2
votes
1answer
51 views
Where is the best place to generate routes in an MVC-application?
Imagine you have the following scenario:
In you application, you have several models that are "Commentable". Comments are shown in
an identical manner and can thus utilize the same template. In ...
2
votes
1answer
190 views
Zend custom route not being recognized for controller
I'm creating a controller which will pull information of a painter from a database and display it: PainterController. I have defined it like so:
<?php
class PainterController extends ...
2
votes
1answer
83 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
126 views
Zend Router chaining problem with subdomain
I have a $siteRoute for subdomains:
$siteRoute = new Zend_Controller_Router_Route_Hostname(
':siteSlug.test.com',
array(
'module' => 'site',
),
array('siteSlug' => ...
2
votes
2answers
61 views
Want to turn mysite.com/country/name/Korea to mysite.com/korea
I think the title explains it all. The thing is that my application is Zend Framework based and includes a number of controllers. The main controllers are:
Companies/
People/
Countries/
Initially a ...
2
votes
1answer
482 views
Append param to current URL with view helper in Zend
In my layout-script I wish to create a link, appending [?|&]lang=en to the current url, using the url view helper. So, I want this to happen:
http://localhost/user/edit/1 => ...
2
votes
1answer
175 views
Is there a way to change the route variable separator in Zend Framework?
I'd like to change the way URLs that Zend Framework is generating from this:
$routeString = '/section/:sectionName';
$route = new Zend_Controller_Router_Route(routeString, array( etc, etc... );
...
2
votes
1answer
554 views
Chain several routes in zend framework
How can I get these 2 routes (languages, amdin) to work.. alone admin, or language will work but together they will fail :(
; Admin route
resources.router.routes.admin.type = ...
2
votes
1answer
250 views
Zend_Navigation incompatible with Zend_Router when writing controller/actions?
Novice Zend Framework developer here trying to figure out a simple solution to a Zend Routing problem. I'm sure one of you pros can lend a hand.
I have a website (built in Zend Framework using ...
2
votes
3answers
2k views
URL rewriting for Magento module
I have created a New Module in Magento and named it as "article". It has two Front end controllers index and article.
And in the article controller i have an action called "archives" to list the ...
2
votes
2answers
177 views
How to allow all except part 1 and part 2?
This allows me to get easyly dynamic input variables instead of putting a static prefix like /en/etcetcetc, but the problem is all controllers are blocked. Everything goes to index/index.
Question: ...
2
votes
1answer
868 views
Zend Framework route chaining in application.ini
I am setting language depending on the domain name (en for en.example.com, tr for tr.example.com):
resources.router.routes.plain.type = "Zend_Controller_Router_Route"
...
2
votes
2answers
132 views
Flexible routing in Zend
I haven't used the Zend Router much yet so not sure how difficult or easy this is, but I think Zend is flexible so it's got to have a way to do this easily.
So I create a controller Cont with 2 ...
1
vote
2answers
44 views
Zend Framework Routing with additional page-param
i have a blog with a routing. In my ini it seems like this:
routes.quote.route = :id
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = ...
1
vote
1answer
76 views
Fixing Zend_Route to work with Zend_Navigation
So i have a Zend_Route in my application like this :
public function _initRoutes() {
$front = Zend_Controller_Front::getInstance();
$router = $front->getRouter();
$route = new ...
1
vote
1answer
33 views
how to keep 'index' param when call url helper in zend
When I tried to call url helper in a view file like below:
$url = $this->url();
The result is if:
At current the controller is index and action is index. With index is default action key, it ...
1
vote
1answer
74 views
zend route regex issue
I am trying to make a route in the ini file to match the following URLs, but I have been unsuccessful.
/add-announce.html
/add-announce-books-53.html
My route is this:
routes.add_announcement.type ...
1
vote
1answer
55 views
Zend framework - duplication in translated url
I have these URLs
cz/kontroler/akce
en/controller/action
Is used transatable route and works it like charm. But problem is, that when you will write
cz/controller/akce
it works as well.
In ...
1
vote
2answers
116 views
Zend Routing Not Working
I am trying to set up my zend route using the routes.ini and bootstrap but for some reason it is not able to route as expected. My routes.ini and bootstrap.php are as follows.
routes.ini
...
1
vote
1answer
162 views
Translating route segments with ZF's gettext adapter
I want to try out the route translations in Zend Framework, but I'm using the gettext adapter and the most tutorials have PHP translate adapter, so I'm having problems to make it work.
In the main ...
1
vote
0answers
53 views
Zend Route and Infinite Categories
I'm building a Cms for an organization and url scheme is like this:
departmentName.site.edu/subDepartment/subDepartment/evenMoreSubDepartments/module/controller/action/*
I think i have to combine ...
1
vote
1answer
61 views
Zend framework does not care about the Custom Route specified
I created a router and added to the controller like this
public function _initRouting() {
// Get Front Controller Instance
$front = Zend_Controller_Front::getInstance();
...
1
vote
2answers
52 views
What are the different ways to configure routes?
If someone is familier with Zend Framewor, they know what routes are and how they affect the system overall. My question is concerned about ways to can configure this routes. I know two ways to ...
1
vote
1answer
111 views
Zend framework Router replaces capital letters with dashes by default?
If we use capital alphabet in between name for zend controller and action for example inside default module we create
class MyGoodController extends Zend_Controller_Action {
public fooBarAction()
{
...
1
vote
1answer
63 views
zend custom router that uses a mysql db
I am looking at writing a application that requires search engine friendly URLs for a lot of pages. So for example to access say site.com/blah could be a user or a page. For this I was thinking of ...
1
vote
1answer
117 views
Zend Routes and HTTP Verb/Method
Hi I am trying to setup some REST routes in a Zend app, I am wondering how I can restrict the HTTP method on which the route can be accessed.
$route = new ...
1
vote
1answer
70 views
Zend_Router stop translating plus character into space
I have an API call that passes 10+ parameters, in no certain order.
http://domain.com/signup/format/json/email/bla/name/bla...
For our routes, we are using a config file fed in via
...
1
vote
1answer
100 views
How can I write url /:lang/display-cv-:cvid using zend_config?
I got a zend_config file called routes.ini.
Currently my url looks like this /:LanguageCode/display-cv/:CVID
as defined by this route:
routes.display-cv.route = /:LanguageCode/display-cv/:CVID
...
1
vote
0answers
134 views
Problem with zend_Controller_Router_Route
I have a trouble with zend_controller_Router_Route.
I have created a route:
$router = $this->frontController->getRouter();
$route = new Zend_Controller_Router_Route(
...
1
vote
0answers
353 views
Zend framework - multiple language routing (frontend/backend)
sorry for my bad english at fisrt.
I am working on multilanguage site, so i need to route lang prefixes. Actualy a have an routeStrastup plugin, which capture RequestUri like this :
$rawrequest ...
1
vote
2answers
387 views
How to get Zend Route to use a different module depending on the domain name
I'd like to set up multiple domain names to use the same framework, but I can't seem to get zend's router to bend to my will.
There are plenty of examples using subdomains, but trying to make them ...
1
vote
2answers
108 views
zend routing works only in lowercase letters
I'm setting up routes in application.ini, so when I try to access /moved, it displays cont/move. It works but only if I type moved all lower letters exactly like it's setup on the first line. How can ...