Routing in Zend Framework's MVC implementation. Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.
0
votes
1answer
25 views
How can i write Routes dynamically to routes.ini file?
I need to Add Routes to my routes.ini file dynamically.Below is my code.
$appConfigPath = APPLICATION_PATH . '/configs/routes.ini';
$appConfig = new Zend_Config_Ini($appConfigPath, null, ...
2
votes
1answer
44 views
ZF2 - Injecting pages to navigation before controller is called
I'm creating a dynamic Application in which the content is added through a CMS. Inside the CMS, I'm setting a db entry which states what module to use for each content page.
NodeId,
ParentNodeId,
...
0
votes
1answer
30 views
BjyAuthorize denies access when application runs from a subdirectory
I have a problem with BjyAuthorize. I can access to the routes defined in guards parameter without problem when the application is in the root folder of my virtualhost, but I get an access denied ...
0
votes
1answer
84 views
Zend framework 2 dynamic routing
I'm new to zend framework 2, i need to do routes for this type of urls
http://www.example.com/category/sub-category/id.html
here category is dynamic. means- i have 100 of categories in my db.
sub ...
0
votes
0answers
53 views
ZF2 mobile subdomain route
I have my website (in ZF2) on localhost, and I need to have 2 url's (that I get)
localhost/site
m.localhost/site (mobile)
But, when I try to get the url to the mobile subdomain (m.localhost/site) in ...
0
votes
1answer
30 views
Why Zend_View_Helper_Url returns relative path when using the default route and absolute path when using a custom route?
I have an application running on Zend Framework 1.12 and I am using the URL view helper. I also have a few custom routes which I use with the URL helper to clean the code.
When I use a format such as ...
0
votes
0answers
26 views
Zend Framework and language routing problems
I have a problem with the Zend Routes object. I need to redirect all the request using this schema:
http://www.myproject.com/en/default/customer/login
array(4) {
["module"] => string(7) ...
0
votes
0answers
31 views
Sanitize form data through Zend_Controller_Route or overriding Zend_Controller_Request_* classes
I am very raw with the Zend framework so I probably have some obvious questions at the moment.
Part of our web app's requirement is to block any kind of form input that contains a bunch of malicious ...
1
vote
1answer
76 views
Zend Framework 2 - ZFCUser action whitelisting does not work for rerouting
I'm using this function for whitelisting a few actions from the ZFCUser login.
Everything works great unless I redirect to one of these whitelisted pages. For example I have the myFormAction which ...
0
votes
1answer
58 views
Route mit special characters are not parsed correctly in Zend Framework 2
URIs with german special characters don't work (error 404). I've already had this problem (here) and it has been resolved with the unicode modifier and a custom view helper, that uses it.
Now I have ...
0
votes
0answers
32 views
Open Graph URL - What To Use for Canonical
I use a Zend Framework route to make "pretty URLs" for products in the online store. Here's the route in application.ini:
resources.router.routes.product.route = "sp/:id/:title/*"
...
1
vote
0answers
21 views
Zend_Router route url to a specific module
I'm using Zend, and here is my problem, i have two different urls that i really want to keep like they are.
i want url : "www.urlA.com" to be directed to ...
1
vote
1answer
125 views
How to access route, post, get, server etc parameters from view file in Zend Framework 2
How can we access route, post, get, server parameters from VIEW file in ZF2 way?
Here I found the almost same question but no where mentioned about view nor answered anywhere
Thanks
0
votes
2answers
74 views
ZF2 Route with Colon Seperator
I am working with ZF2 and trying to setup Route configuration that uses a colon seperator.
For example, the web address could be www.example.com/namespace:subject and I want to send it to a specific ...
0
votes
1answer
69 views
How to resolve error within phpunit concerning assertRedirectTo() following zend framework 2.1 example, caused by trailing slash?
After following the Zend Framework 2 "Getting Started" tutorial successfully, I started on the Unit testing example for version 2.1 and, following it verbatim, I get a failure with PHPUnit:
Failed ...
0
votes
0answers
36 views
Pass value to a zend framework based application from IFrame integrated another site
I've been facing a strange problem.
I've an application based on zend framework and i need to load this application using IFrame from another domain. While loading i need to pass a value from IFrame ...
0
votes
1answer
180 views
Zend Framework 2, route with query fails only if route has child routes
Since 2.1.4 the Query route is deprecated, I'm routing to my blog like this:
'cro-blog' => array(
'type' => 'Literal',
'options' => array(
...
0
votes
0answers
13 views
How to make an array and pass them as default value from url using zend routing
I have a following rule to handle a custom url for search page .
$route = new Zend_Controller_Router_Route_Regex(
'category/new-(1b-2b-3b-)item/search',
array('controller'=>'product',
...
0
votes
0answers
77 views
rest routes in zend rest controller
My problem is that I have written rest controller just like e.g. in the link here.
My Bootstrap looks like this
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
...
0
votes
1answer
163 views
Zend Framework Vanity Url Pagination not Working
I'm working on a Zend Framework application and I just got my vanity routing working using the guide at http://tfountain.co.uk/blog/2010/9/9/vanity-urls-zend-framework/, but my pagination isn't ...
0
votes
2answers
122 views
Zend Framework dynamic action name routing
My site lets you create projects, and there are multiple project types (like project templates).
What I want to do is to have one single action that handles all project types. Currently for each ...
0
votes
2answers
195 views
ZF2 Child Routing issues
I'm having some troubles setting up child_routes.
They don't work unless I separate them, althou the end result should be the same!:
This is what I'm trying to achieve:
'router' => array(
...
0
votes
1answer
113 views
Zend Routing / URL helper . Have a global parameter show up first in URL
Was curious if anyone knew the best way to implement the following: I have a parameter in my zend framework 1.12 app which effectively controls the 'scope' of things, and is a field in every table in ...
1
vote
2answers
194 views
Zend_Controller_Router_Exception: Route default is not defined
In my app with several modules, I have a method that sends an email, the text use the url view helper to build a link. If I execute this method via browser everything works correctly, but if I run ...
1
vote
0answers
59 views
How to assemble a URL back to the www route when inside a Zend_Controller_Router_Route_Hostname route?
I have spent hours trying to find a solution to this but doesn't appear to be much out there.
I currently have admin.domain.com point to the admin module which is easy to do like so:
$adminRoute = ...
0
votes
1answer
176 views
ZF2 Hostname router : get domain and tld as one param
I have a route, something like:
array(
'type' => 'Hostname',
'options' => array(
'route' => ':subdomain.:domain.:tld',
...
0
votes
0answers
66 views
Translated chained routes and dot separator
I have problem with translated chained routes
$translator = new Zend_Translate(
array(
'adapter' => 'array',
'content' => array(),
'locale' => 'en'
)
);
...
1
vote
0answers
156 views
How to make localized seo-friendly urls with Zend?
I researched a lot, and I know this topic was discussed in other questions. However I believe the answers are not satisfying.
Many sources mention the importance of speaking urls for seo. Also google ...
0
votes
1answer
46 views
Zend Framework - Param not specified
I got a little problem here. I'm currently trying to use the Zend Router Rewrite but I got this error:
Fatal error: Uncaught exception 'Zend_Controller_Router_Exception' with message 'alias is not ...
0
votes
1answer
80 views
Zend - other-domain redirect like mod_rewrite
I have several basic redirects on apache using mod_rewrite's RewriteRules.
I want to do these redirections programatically, using Zend Framework.
These redirections may include different domains.
...
0
votes
0answers
201 views
Zend 2 - Default Controller route (ZF2)
I'm working on a website that have virtual hosts, like xyz.com, asd.com and so on.
I use Hostname route like ":controller.com", so it routes me to the specific controller.
I created a ...
2
votes
1answer
151 views
Zend Router - URL with or without parameters are two differents routes
I'm currently creating a new version of my website using Zend Framework and I'm stuck with a little problem I've seen in the past.
There are my routes: (a part)
// BLOG -> CATEGORIES
$route = new ...
1
vote
0answers
77 views
Force user to use language route
I am changing my application routes so that I can use subdirectories with gTLDs(example.com/de/) instead of URL params (example.com?loc=de). As It is in ...
0
votes
1answer
81 views
While using Zend Router, other links (the ones that aren't defined as routes) corrupt
I am using Zend Framework 1.12.
I wanted to add some routers. There are users and administrators in my system, and I have added a router for administrator viewing user's page.
I added
// meant to ...
1
vote
1answer
93 views
Zend Router Chain and matching controller/action issue
i want router to match this URL
http://hawthornfc.localsupportus.com.au/hints
in my routes.ini file i have
subdomain.type = "Zend_Controller_Router_Route_Hostname"
subdomain.route = ...
0
votes
2answers
167 views
Zend Url View Helper not working with Regex Routes
I'm using Zend Framework 1.12 and have this route:
$router->addRoute('item_start',
new Zend_Controller_Router_Route_Regex(
'(foo|bar|baz)',
array(
...
0
votes
1answer
61 views
How to use extensions in Zend Framework Routing
I'd like to use an extension like .htm in my URLs. Is there a way to accomplish that?
I've defined the following rule:
frontend.route = '/:standort/:id'
When I use the following
frontend.route = ...
2
votes
1answer
270 views
How to redirect Error Page and perform Routes in Zend Framework 1.x
How to perform routes in Zend Framework 1.x and also redirect custom error messages?
4
votes
3answers
808 views
Fetching Zend Framework URL parameters
I'm building my first Zend Framework application and I want to find out the best way to fetch user parameters from the URL.
I have some controllers which have index, add, edit and delete action ...
2
votes
2answers
140 views
Zend Router URL array merge
I have a problem with custom zend router.
this is my cat router
$frontController = Zend_Controller_Front::getInstance();
$router = $frontController->getRouter();
$router->addRoute('categories', ...
0
votes
1answer
182 views
htaccess redirect loop
Hey guys I'm getting a pretty nasty redirect loop since I'm using a bootstrap and need to figure out how to fix it. Just a heads up, but from forwarder.dev/direct-mail/{2 digit var}?CampId={7 digit ...
0
votes
1answer
313 views
Zend Framework : How to handle “No route matched the request” error?
In Bootstrap.php I have some custom routes using Zend_Controller_Router_Route_Regex.
Everything works fine except when user type in address bar a wrong link.
Ex :
...
0
votes
1answer
261 views
ZendFramework 2 - How to make all the actions available with one router rule? Its only allowing action index
How to allow all sub actions inside that controller with one router rule? For example this follow:
visit: site/login - works only
site/login/forgetpassword - does not work
...
2
votes
4answers
210 views
ZEND - Conflicting route patterns
I'm using Zend framework 1.12, trying to come up with custom routes.
I'm trying to create something that looks like facebook's profile URL (http://facebook.com/username). So, at first I tried ...
1
vote
1answer
104 views
Avoid using “/index/index” twice in Zend Framework Routes
I am new to Zend Framework. I have a page that is:
http://localhost/demo/public/index/index/catid/art
I want to change that into
http://localhost/demo/public/art
I have no idea how to do it.
...
1
vote
2answers
127 views
Getting parameter from url in Zend
My route setup :
Zend_Controller_Front::getInstance()
->getRouter()
->addRoute('view', new Zend_Controller_Router_Route('controller/action/:name'))
My link in view :
...
-1
votes
1answer
340 views
ZendFramework 2 - why this routing not working where i am avoiding to use the array method [closed]
There are two way to do the routing
1) module.config.php is one way using array (not trying to do that)
2) there is other way manual ( example: http://evan.pro./zf2-router-talk.html#slide11 )
I am ...
0
votes
1answer
89 views
Add Zend_Controller_Router_Route replaced default route
When I added this route
$classes_router = new Zend_Controller_Router_Route(
'/:filter1/:filter2/*',
array(
'module' => 'course',
'controller' => $filter_controller,
...
1
vote
1answer
289 views
ZendFramework 2 - how can i do the similar Bootstrap.php like in ZF1?
I have ZF 1 where i got working Bootstrap.php with lots of routing and other preDispatch stuff.
But in ZF2 there is no Bootstrap.php concept anymore? Or i mean how can i do this same in Zf2?
...
0
votes
1answer
1k views
Unable to render template zf2
I have created new module called 'currency' and configured routes in module.config. It is working fine.
After that I have added new controller called CrateController for currency rates.And also ...



