Re: [fw-general] 301 redirects after changing routes

2010-07-20 Thread Саша Стаменковић
$this->_redirect('/new-url', array('code' => 301)); Regards, Saša Stamenković On Tue, Jul 20, 2010 at 7:32 PM, Jean-Michel Philippon-Nadeau < j...@jmpnadeau.ca> wrote: > Hi List, > > For SEO reasons I've changed the format of my URLs from > controller/action/param/value to /controller/value. I

[fw-general] 301 redirects after changing routes

2010-07-20 Thread Jean-Michel Philippon-Nadeau
Hi List, For SEO reasons I've changed the format of my URLs from controller/action/param/value to /controller/value. I also have routes where I have many implicit parameters, like controller/value/value. I was wondering if anything in the Zend Framework could help me to create 301 redirects from

Re: [fw-general] Help with development of high traffic application (replication / media management) with ZF

2010-07-20 Thread Bill Karwin
On Jul 20, 2010, at 7:00 AM, robert mena wrote: I am in a process of developing a new version of my application. The new version must be able to have high availability and scale so I am evaluating both hardware and software techniques so I can cope with the increasing traffic and a SLA.

RE: [fw-general] Help with development of high traffic application (replication / media management) with ZF

2010-07-20 Thread Vincent de Lau
> -Oorspronkelijk bericht- > Van: robert mena [mailto:robert.m...@gmail.com] > a) database > > Should I use regular databases? In my case MySQL with the master - > slave situation. Or should I try Mongo/Cassandra because of the > auto-sharding features? This is something that I don't

[fw-general] Help with development of high traffic application (replication / media management) with ZF

2010-07-20 Thread robert mena
Hi, I am in a process of developing a new version of my application. The new version must be able to have high availability and scale so I am evaluating both hardware and software techniques so I can cope with the increasing traffic and a SLA. I already use Zend_Cache to reduce unnecessary calls

[fw-general] renderBySpec not accepting 'module'

2010-07-20 Thread Michael Borchers
I use a modular structure: /modules/admin /modules/default In both modules I extend a controller of my library. The controller should always render the view scripts of the default module: $this->_helper->viewRenderer->renderBySpec('index', array('module' => 'default', 'controller' => 'index'));