Re: [fw-general] Router problem in 0.6.0

2006-12-22 Thread Matthias Zitzmann
I used the rewrite without RewriteBase before. This worked only on my development machine (Windows XP), neither on the test machine at Windows 2000 nor on the productive system (Gentoo Linux). This is also not the solution. Andris Paikens schrieb: Hi Matthias, maybe You should remove

Re: [fw-general] Router problem in 0.6.0

2006-12-22 Thread Michał Minicki
Matthias Zitzmann [EMAIL PROTECTED] napisał(a): $routes= array( 'form'= new Zend_Controller_Router_Route('form/:action/*', array('controller' = 'form', 'action' = 'index')), 'files'= new Zend_Controller_Router_Route('files/view/*', array('controller' = 'files', 'action'

Re: [fw-general] Router problem in 0.6.0

2006-12-22 Thread Matthias Zitzmann
That's it, thanks! Matthias Luiz Vitor schrieb: Hi Matthias If I'm not wrong, the Routes are processed recursively, so the most generic routes should be defined first. You defined the page route dinamicaly and as last, It'll be the first one processed and will always be used. So try

[fw-general] Router problem in 0.6.0

2006-12-21 Thread Matthias Zitzmann
Hi folks, yesterday I moved my application from a patched 0.1.5 to 0.6.0. There were a few changes I need to do in my View-Class (I'm using __get and __set, if I extend Zend_View_Abstract, this won't work any longer). This changes were done in about three hours. The bigger problem is, that