Search Results

0
votes

Zend_Form_Element_Text Raising Error Prematurely

I can't test right now, but I believe you should be using addErrorMessage() instead of addError(). See the …
4
votes

Zend Form: How do I make it bend to my will?

Matthew Weier O'Phinney has started a series of blog posts about Zend_Form decorators: …
1
vote

Zend_db & Zend_paginator - Not having a fun time

What does this have to do with Zend_Paginator? Ah, do you have the query and you don't know how to make a paginator with it, or is the paginator not working with this query? The only thing …
0
votes

Zend auth and redirection in Controller plugin

You have to change the action name as well (using ->setActionName()). Otherwise the original request's action remains unchanged and the request ends up being redirected to /au …
3
votes

zend-framework, call an action helper from within another action helper

Use the action helper broker: $flashMessenger …
1
vote

Google Maps Problem with Zend Framework

The reason you're not seeing any map is because the URL in your appendFile() call is broken. Remove all the semi-colons: http://maps.google.com/maps?file=api&v=2&am …
1
vote

Zend_framework - relative paths of images

You should be using site-root-relative paths instead of relative paths. Simply remove that dot in your image path: ./images/logo.jpg should be /images/logo.jpg. Th …