Re: [fw-general] Re: Setting up Zend

2011-01-27 Thread Gregory Cheung
try typing the full path to zf.sh On 27/01/2011 23:36, Wil Moore III wrote: MG7282 wrote: I'm using a Linux shared server and cannot get the zf tool working. I get an error: zf: command not found even after creating the link. Any suggestions? Please provide your environment details and

RE: [fw-general] Re: Hardcoded text inside Zend Framework : how to translate them?

2010-03-28 Thread Gregory Cheung
See: Zend_Validate_Abstract::setMessage($messageString, $messageKey = null) With the validator instance, $validator, you could use: $validator-setMessage('Your error message here', Zend_Validate_NotEmpty::IS_EMPTY) Regards, Greg -Original Message- From: electrotype

RE: [fw-general] Re: Echo a string containing the full php webpage - issue

2010-02-01 Thread Gregory Cheung
I'm not sure why you would even want to do that...The view is supposed to generate the html code and the code that generated the code you want to pass into eval() should be in a model. Implementing an application using the zend front controller pattern, only to call eval() on an existing php