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 = explode('/', ltrim(getUri..,'/')); 
    if (!$rawrequest[0])
    {
        $r = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
        $r->gotoUrlAndExit('/' . $this->_defaultLang);
    }
    Zend_Registry::set('ENV_LANG_PREFIX', $rawrequest[0]);
    $rawrequest[0] = null;
    $finaluri = implode('/', $rawrequest);

    //$finaluri = $finaluri ? $finaluri : '/';

    $request->setRequestUri($finaluri);
    $localedata = $this->_db->fetchRow("select * from w_langs where active =1 AND url_prefix = ? AND active = 1 AND used = 1",Zend_Registry::get('ENV_LANG_PREFIX'));
    if(!$localedata)
    {
        $r = Zend_Controller_Action_HelperBroker::getStaticHelper('redirector');
        $r->gotoUrlAndExit('/' . $this->_defaultLang);
    }
    date_default_timezone_set($localedata['timezone']); 
    setlocale(LC_ALL, $localedata['locale']);
    Zend_Registry::set('ENV_LOCALE', $localedata);

There is in this plugin fix for routing from others folders than virtualhost.

This code is horible (but working :) ) , Now i need extend language routing, because there can be different active languages in frotend and backend.

Frontend routing: /route_prefix/module/controller/action.
Backend routing: /admin (= module)/route_prefix/controller/action

Can anyone help me ?

// add:

Yes i now about chaining routers with zend locale and zend translation, but this application is desinged for small personal/copmany presentation => memory limit on hosting. I am using forpsi.com hosting (their are running on Zend server), but there are 32M memory limit. So i have own (very simple) translation adapter,locale plugin..

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.