Re: [fw-general] Deployment tool?

2007-06-08 Thread Matthias Zitzmann
Hi all, I use Eclipse as IDE (with PDT of course). For handling Tasks using Ant is the easiest way. There you'll get predefined Tasks for anything (including SSH, File, DB, ...). So writing a build.xml solves all that problems. Matthias oetting schrieb: Hi all, I have been thinking

Re: [fw-general] Router problem in 0.6.0

2006-12-22 Thread Matthias Zitzmann
RewriteBase from Your htaccess file? Got this idea, because in previous versions there was need for $router-setRewriteBase('/'); Now it is not needed anymore. Maybe that is reason. Andris On 22/12/06, Matthias Zitzmann [EMAIL PROTECTED] wrote: Hi folks, yesterday I moved my application from

Re: [fw-general] Router problem in 0.6.0

2006-12-22 Thread Matthias Zitzmann
'= new Zend_Controller_Router_Route('files/view/*', array('controller' = 'files', 'action' = 'view')) ); Luiz On 12/22/06, *Matthias Zitzmann* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi folks, yesterday I moved my application from a patched 0.1.5 to 0.6.0. There were

[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

Re: [fw-general] Handling exceptions and errors

2006-10-24 Thread Matthias Zitzmann
Hi all, I'd prefer a more Java-like handling. There it's best practice not to throw server-exceptions straight through. You'll the server-exceptions in the server-routines. There you'll generate new client-exceptions, which are thrown to the client, so there is only one specific type of

Re: [fw-general] How to be removed from these mailing lists?

2006-10-12 Thread Matthias Zitzmann
Take a look at the mail headers, the List-unsubscribe-tag contains the email-address, to which you have to send a mail in case to remove from the list - it's [EMAIL PROTECTED] Greets Matthias Alexander Hanhikoski wrote: Dear Zend framework community, How can I remove my e-mail address

Re: [fw-general] Controller/Action Name

2006-10-11 Thread Matthias Zitzmann
Try to use $this-_getParam('controller') and $this-_getParam('action') for that. Matthias Renan Gonçalves wrote: How I can get Controller and Action name ? Thank's