Re: [fw-general] Vacation auto-responders and you

2008-05-31 Thread Rob Allen
On 30 May 2008, at 20:02, Matthew Ratzloff wrote: Hi everyone, As we in the northern hemisphere enter into the summer and being to take vacations, please be courteous to your fellow mailing list members and remember to exclude all Zend Framework mailing lists from your vacation auto-resp

RE: [fw-general] Include Path Order

2008-05-31 Thread Wil Sinclair
I'm glad you mentioned this, Jack. You're right- it seems like the most obvious thing in the world, but somehow it's easy to look over these kinds of details. Ralph has already created a portion of the wiki for performance discussions and tips in preparation for the performance audit. Can you pleas

Re: [fw-general] Include Path Order

2008-05-31 Thread Jack Sleight
Hi Wil, Sure no problem, will do. Wil Sinclair wrote: I'm glad you mentioned this, Jack. You're right- it seems like the most obvious thing in the world, but somehow it's easy to look over these kinds of details. Ralph has already created a portion of the wiki for performance discussions and tip

Re: [fw-general] Include Path Order

2008-05-31 Thread Jack Sleight
Page added: http://framework.zend.com/wiki/display/ZFDEV/Performance+-+Multiple+Include+Path+Order Wil Sinclair wrote: I'm glad you mentioned this, Jack. You're right- it seems like the most obvious thing in the world, but somehow it's easy to look over these kinds of details. Ralph has already

Re: [fw-general] valid html issue

2008-05-31 Thread Joó Ádám
Whoops, sorry for that. As I see, it is already fixed. Regards, Ádám On Fri, May 30, 2008 at 2:59 PM, reto <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I just tried the solution for setting the Doctype in the Bootstrap and > then printing it in View-scripts as stated in changeset 9531: > http:

[fw-general] controller question - not that obvious, I guess

2008-05-31 Thread yps
Hi, I'm trying to get my URIs as simple as posible. Right now a product detail page looks like this: http://mydomain.com/index/show/id/23 etc.. but I want to get something like that: http://mydomain.com/show/23 so I'd have have a controller called showController.php and and an action called

Re: [fw-general] controller question - not that obvious, I guess

2008-05-31 Thread Michał Minicki
how to tell controller to use some default action and treat that '23' as a parameter?? is that doable at all on ZF ?? Please help. thanks. http://framework.zend.com/manual/en/zend.controller.router.html -- Michał Minicki aka Martel Valgoerad | [EMAIL PROTECTED] | http://aie.pl/martel.asc =-

Re: [fw-general] controller question - not that obvious, I guess

2008-05-31 Thread Jani Hartikainen
You would typically use routes to do something like that. Take a look here to get started: http://framework.zend.com/manual/en/zend.controller.router.html For your specific case, I would look at Zend_Controller_Router_Route, which is shown in chapter 7.5.6.1. of the manual page linked above. O

Re: [fw-general] controller question - not that obvious, I guess

2008-05-31 Thread yps
thanks for your responses. I took that part: 'profile', 'action' => 'userinfo' ) ); $router->addRoute('user', $route); but I got a fatal error: Call to a member function addRoute() on a non-object, and the Zend_Controller_Router_Route class IS LOADED.. -- View this message

Re: [fw-general] controller question - not that obvious, I guess

2008-05-31 Thread Vincent
On 5/31/08, yps <[EMAIL PROTECTED]> wrote: > > > thanks for your responses. > > I took that part: > > > $route = new Zend_Controller_Router_Route( > 'author/:username', > array( > 'controller' => 'profile', > 'action' => 'userinfo' > ) > ); > > $router->addRoute('us

[fw-general] Zend_Form::setRequired() and setMessage()

2008-05-31 Thread Jonathan Lebensold
Hi there, I'm working through a small project and I'd like to set a custom message for setRequired(true) since Zend_Validate_StringLength doesn't pick up form fields that are empty. also, is there a less verbose (perhaps with method chaining) way of setting custom error messages?

RE: [fw-general] PHP 5.2.6 and Zend_Translate

2008-05-31 Thread Robert Castley
Wahoo! I am not alone :-) Many thanks for posting this, I thought I was going mad! This bug is preventing me from upgrading to PHP 5.2.6. So the question is now, who does the bug lie with? Zend of PHP? Once again .. thank you! :-) _ From: Justin Hendrickson [mailto:[EMAIL PROTE

Re: [fw-general] PHP 5.2.6 and Zend_Translate

2008-05-31 Thread Thomas Weidner
PHP has changed the SPL without any response in the documentation. But only for the Windows version of PHP and only for the release 5.2.6. The returned values differ from all PHP versions before. So in my opinion it's was php bug. The problem has already been solved for ZF within the trunk one