Tagged Questions
0
votes
0answers
18 views
Zend Routes Ini - Unidentified number of variables
I have a routes.ini file like this (Zend Framework 1.1.2)
routes.cat-list.route = "cat/:id"
routes.cat-list.defaults.module = "front"
routes.cat-list.defaults.controller = "folder"
The issue is ...
1
vote
2answers
149 views
Path not found error in Zend Framework
I have been getting this error in Zend framework when i want to run the static content , The error is like
///Not Found
The requested URL /public/content/services was not found on this server.
...
0
votes
1answer
99 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 ...
0
votes
1answer
107 views
Zend routing without controller and action
There are given article URLs in a database (e.g. "article1", "article2", "article3").
When I type www.example.com/article1 I want to route to
controller: index,
action:index.
My route is:
...
1
vote
1answer
227 views
Zend Framework URL Rewrite For SEO
I'm new to Zend, so pls help me out on this one, since I have searched a lot and tried a lot, I really did.
here is the very old question:
this is my current url:
...
2
votes
2answers
148 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
160 views
Returns 302 error in phpunit when the site redirection works fine
When doing unit testing using PhpUnit in ZF2, the following message shows up:
Failed asserting that 302 matches expected 200
I understand that it shown up because of the redirection command of ...
9
votes
1answer
1k views
Zend Framework URL based translation routes
I am trying to implement URL based translation in Zend Framework so that my site is SEO friendly. This means that I want URLs like the below in addition to the default routes.
zend.local/en/module
...
1
vote
1answer
83 views
How to make Url helper work when on routed page?
I have a url which routes to a custom module. I have added this line in my Bootstrap.php
$router->addRoute('forum-board', new Zend_Controller_Router_Route(
'forum-board', array('module' ...
0
votes
1answer
407 views
zend framework basepath
hi i have a web application installed in a remote server i wanted to modify this web application so i downloaded all the files from the server
.zfproject
library folder
application folder
...
0
votes
1answer
163 views
Custom routing logic and serving static content while having the document root in the parent of the public directory?
I extend Zend_Controller_Router_Route_Abstract in Zend Framework to add custom routing to my application. My match method return false in cases it identify that the request path isn't ones of the ...
1
vote
3answers
401 views
Zend Framework create fully dynamic route while maintaining default routes
I understand how to create a simple custom route in the form of
example.com/archive/:year
However, I need to create a route in the form of
example.com/:make/:model
Both path components are ...
-1
votes
1answer
159 views
Zend Framework: Custom URLS [closed]
I need to build an application using zend in which i need to have urls like
www.example.com/Statename/cityname/zipcode
As i am new to zend i don't know where to start looking.
I would appreciate ...
0
votes
1answer
88 views
How to define one route to handle request with page parameter and without it?
I would need one route definition (if it's possible), that will handle both requestes:
http://www.example.com/list
http://www.example.com/list/2
First one is displaying first 10 elements of ...
0
votes
2answers
246 views
Zend Router Regex not routing as expected
Zend Bootstrap is not following this route:
$route = new Zend_Controller_Router_Route_Regex (
'(.+)-hospital-lottery',
array('module' => ...
0
votes
1answer
154 views
Zend multiple directories and MVC routing
I'm building my first personal website using Zend 1.11. To create the directory structure I've used the zf script that comes with the framework. I can use the same script to create controllers/views ...
1
vote
1answer
124 views
How to Configure Zend Router to Lookup a List of Controllers
I have several controllers which I want to match with the usual router pattern. These include: users, organisations, products. They should be accessible via, for example:
/users/login
...
2
votes
2answers
5k views
Zend Framework: The requested URL /my/path was not found on this server
I am total new to Zend Framework.
I wrote a simple web service that return mock XML data with Zend Framework, with module structure like this:
AppName
application
configs
...
1
vote
1answer
298 views
How to use a dash as sepatator in a Zend_Controller_Router_Route
Currently one of my routes looks like this
new Zend_Controller_Router_Route(
'aviso/:url_id/:slug',
array(
'module' => 'postulante',
'controller' => 'aviso',
'action' => ...
0
votes
1answer
368 views
Create route with Zend_Controller_Router_Route_Regex
I have one route defined in application.ini like
router.routes.xx.route = "y/:var/:controller/:action/*"
router.routes.xx.defaults.controller = "page"
router.routes.xx.defaults.action = "index"
I ...
1
vote
2answers
278 views
Custom route in Zend Framework
I'm working on a Zend Framework API and need to follow a particular format for URLs, so I was hoping for some help regarding how to configure the routing correctly.
...
2
votes
2answers
96 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 ...
0
votes
2answers
186 views
Need to even further shorten easy urls using Zend Route
I might be asking a bit too much here but I would like to know how can I further shorten urls such that they look like there's not an inclusion of a controller.
eg: I want to shorten this:
...
1
vote
2answers
644 views
change url zend
class ContactusController extends Zend_Controller_Action it result url/contactus.I like to change url/contact-us . How can i add "-" in url. Please help me to find-out the solution
0
votes
1answer
225 views
Zend retrieve router variables
Zend talk.I know this basic difference beetwen getQuery and getParam:
getQuery retrieves values from the query string.
getParam retrieve also variables set by the router.
Question: What if I only ...
0
votes
1answer
109 views
Zend Retrieve Url parameter
This is my first approach to Zend.Having this index action:
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$this->view->variable="I'm testing my ...
0
votes
1answer
199 views
zend undefined URL handling
hello I am working in Zend. I want to know some thing about undefined URL handling. I have a url like http://localhost/concierge/login and it has the following rule in url rule file.
'admin/login' ...
4
votes
2answers
267 views
Routing URLs started with a special character
In ZendFramework, i want to route urls started with ~ to special controller and action, so that other urls don't start with ~ work properly.
For example see below two url routings:
mysite.com/~user
...
0
votes
1answer
1k views
Problem with url routing in Zend Framework, needs index.php?
As you may know a Zend link should look like this: mydomain.com/index/user for controller index and action user or mydomain.com/category for controller category and action index. But for me in most ...
3
votes
1answer
2k views
Zend framework, URL view helper and the layout
I've been using Zend framework some time now, but I'm facing a problem I can't solve myself. I'm using Zend_Layout, Zend_View and the URL view helper to create hyperlinks. To create some SEO-friendly ...
1
vote
2answers
998 views
url routing in zend framework
Hi I created several module for my own CMS like category, article, core , ...
now how can I access these modules with url like:
http://localhost/mycms/admin/category
...
2
votes
3answers
1k views
Case insensitive url-routing for Zend
I am working with legacy code written in PHP 5.2.6 with Zend Framework 1.5.3 on CentOS 5.5
There is code as such
url:"./sales/getAlerts/?bypass=1"
The view is named getalerts.phtml
Controller ...
1
vote
2answers
360 views
Zend Router precedence
I have got two routes
; category route
resources.router.routes.category.type = "Zend_Controller_Router_Route"
resources.router.routes.category.route = "shopping/:idTwo/:id/*"
...
1
vote
1answer
161 views
Zend Framework routes not being applied
I have the following routes in my application.ini:
resources.router.routes.user.route = "users/:id/*"
resources.router.routes.user.defaults.controller = users
...
2
votes
1answer
2k views
Zend Framework : Subdirectories in controllers directory
I'm using the Zend Framework for my website, and just created a special module "api" to create... Well, an API.
Now, I have a lot of controllers in my module and I'd like to create subdirectories in ...
3
votes
3answers
283 views
Override default route but call it when necessary
I'm developing a site which has urls like this:
site.com/james
site.com/james/photos
Schema for this urls are this: site.com/USERNAME/APPLICATION
Both username and application names are checking ...
0
votes
2answers
742 views
Zend_Controller_Router: Get language from translated segment
I want to use a URL rewrite on my site:
/:@controller/:@action/
So I want to use translated segments on route and I want to detect requested language from these translated segments. For example, if ...
0
votes
2answers
526 views
Using a dash (-) instead of a plus (+) in Zend Framework URLs
by default it seems my ZF is separating multiple parameter words with plus signs.
eg. /product/test+product+name
I would like to use -> /product/test-product-name
Here is the line from ...
3
votes
1answer
901 views
How to add localization in the URL using the Zend Router
I have a Zend Framework site that setups all routes in a file, routes.ini. The routes look like this:
routes.popular.route = popular/:type/:page/:sortOrder
routes.popular.defaults.controller = ...
5
votes
2answers
2k views
Zend Framework: How to disable default routing?
I've spent many hours trying to get this to work. And I'm getting quite desperate.
Would be great if someone out there could help me out :)
Currently using Zend Framework 1.9.5, though I have been ...
3
votes
2answers
4k views
Zend framework: Removing default routes
I'm using Zend FW 1.9.2, want to disable the default routes and supply my own. I really dislike the default /:controller/:action routing.
The idea is to inject routes at init, and when the request ...
0
votes
2answers
1k views
Zend Router overwrites post variables from form
We are using the Zend Router and it seems that its overwriting the parameters that are sent by forms. The only parameters that arrive to the controller are the params from the Url.
Does anyone know ...
0
votes
1answer
9k views
Zend url view helper - keeping existing params in a reversed route
At the moment in my ZF project have a URL structure like this:
/news/index/news_page/1/blog_page/2
When I generate my pagination I use the URL helper as follows:
<?php echo ...
3
votes
5answers
1k views
How to route sub-domains to account pages? How does domain masking work?
Part 1
I want to build a PHP Zend Framework application that users can sign up to use. When they register, I would like the application to create a sub-domain that points to their public page, that ...
2
votes
3answers
1k views
Zend Framework: How to get default param?
How do I get the 'default' param if not specified?
Consider the following:
http://localhost/controller/action/id/123
In my controller, I can get the value of 'id' using
$request = ...
8
votes
3answers
4k views
Zend Framework Routing: .html extension
I know I've seen this done before but I can't find the information anywhere. I need to be able to route with .html extensions in the Zend Framework.
I.E. /controller/action.html should route to the ...
4
votes
3answers
2k views
Tutorials For Database-Driven Routing in Zend Framework?
I am working on a project that needs to use a database driven MVC scheme where the route to the controllers and views are controlled through a single database table. However, I haven't been able to ...


