Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 652903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:19:24+00:00 2026-05-13T22:19:24+00:00

As you know, Zend Framework (v1.10) uses routing based on slash separated params, ex.

  • 0

As you know, Zend Framework (v1.10) uses routing based on slash separated params, ex.

[server]/controllerName/actionName/param1/value1/param2/value2/

Queston is: How to force Zend Framework, to retrive action and controller name using standard PHP query string, in this case:

[server]?controller=controllerName&action=actionName&param1=value1&param2=value2

I’ve tried:

protected function _initRequest()
{
    // Ensure the front controller is initialized
    $this->bootstrap('FrontController');

    // Retrieve the front controller from the bootstrap registry
    $front = $this->getResource('FrontController');

    $request = new Zend_Controller_Request_Http();
    $request->setControllerName($_GET['controller']);
    $request->setActionName($_GET['action']);
    $front->setRequest($request);

    // Ensure the request is stored in the bootstrap registry
    return $request;
}

But it doesn’t worked for me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:19:25+00:00Added an answer on May 13, 2026 at 10:19 pm
    $front->setRequest($request);
    

    The line only sets the Request object instance. The frontController still runs the request through a router where it gets assigned what controller / action to call.

    You need to create your own router:

    class My_Router implements Zend_Controller_Router_Interface
    {
        public function route(Zend_Controller_Request_Abstract $request)
        {
            $controller = 'index';
            if(isset($_GET['controller'])) {
                $controller = $_GET['controller'];
            }
    
            $request->setControllerName($controller);
    
            $action = 'index';
            if(isset($_GET['action'])) {
                $action = $_GET['action'];
            }
    
            $request->setActionName($action);
        }
    }}
    

    Then in your bootstrap:

    protected function _initRouter()
    {
        $this->bootstrap('frontController');
        $frontController = $this->getResource('frontController');
    
        $frontController->setRouter(new My_Router());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

may I know how to create a session-based table using Zend Framework? It is
Do you know any open source applications based on Zend Framework, good for reference
im new in PHP and I want to know about PHP Zend Framework. What
Does anyone know how to tell Zend Framework 1.11 how to find my namespaced
I'm new to Zend Framework. I would like to know how to implement zend
I like how this works in Zend Framework. I can know which environment I'm
I only know Wordpress and have started to seek another alternative framework, Zend. I
I would like to know if this method of setting up routing in Zend
Any body know can we use smarty with zend framework. If yes what is
I want to know how to use PHP session variable in zend framework here

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.