3
votes
Zend framework 1.8 recommended way to register a plugin?
I'm assuming you mean the Zend_Application way of doing things. There's absolutely nothing wrong with the way you mentioned above. That said, you can specify which plugins to load in your applicati …
0
votes
Integrate Doctrine with Zend Framework 1.8 app
As far as auto-loading is concerned, you can actually use the Doctrine loader with the new Zend_Loader_Autoloader stack quite easily. Take a look at …
2
votes
Zend url view helper - keeping existing params in a reversed route
The url helper will use the an existing parameter if it exists in the current request. It seems as if, in your particular case, the news_page param is not set in the request object. Se …
1
vote
Zend_Validate_Between strange error message
Zend_Form_Element_Select automatically adds an InArray validator to itself.
To set the error message for it, this should do the trick:
$element->getValidator …
3
votes
Why can’t I override the default validation error message?
The messages key in the validator array must be passed an array of key/value pairs, where the key is the validation message constant, and the value is your custom error message. Here's …
4
votes
How do I write Routing Chains for a Subdomain in Zend Framework in a routing INI file?
Here's basically what you want, in INI format:
routes.b2b.type = "Zend_Controller_Router_Route_Hostname"
routes.b2b.route = "sales.sitename.com"
; you could specify a default module …
2
votes
File Upload and Unit Testing with Zend Framework
I would recommend taking a look at the unit tests from the Ze …
3
votes
What happens to the Zend Framework routing tables when you change the site to a subfolder?
The most likely cause of your problem is that you need to set the RewriteBase parameter in your .htaccess file.
Assuming your rewrite rules look something like thi …
2
votes
How to exclude searching specified fields using Zend Search (Lucene)
There's currently no way to explicitly not search a field in Lucene's query language, or the Zend_Search_Lucene query constructing API.
However, you can explicitly lis …
0
votes
Manage Zend_Search_Lucene Index on a load balanced environment
The best solution I can think of is to follow a more traditional Master / Slave replication pattern. Take some inspiration from RDBMS replication: All writes should go to the master.
Of co …
2
votes
Redirect doesn’t work after using AjaxContext
Ok. Hopefully I understand your goal.
First of all, there is no redirector method directly on an instance of Zend_Controller_Action.
So, this:
…
3
votes
My Zend Framework ‘quoting’ mess.
If you pass a string to the fetchRow() method of a subclass of Zend_Db_Table_Abstract (which you are doing), it will be treated as a where part of a Zen …
9
votes
How do I write internal style sheets in Zend Framework?
What you are looking for is called the HeadStyle view helper. Its manual documentation can be found …
2
votes
Is there any way to output the filtered data from Zend_Filter_Input?
Zend_Filter_Input offers numerous methods for retrieving filtered and validated data.
First, you can retrieve an associative array of all fields:
$data = $input->get …
3
votes
Grouping WHERE clauses with Zend_Db_Table_Abstract
In order to achieve this, you have to construct the grouped clause within a single call to the where method.
If both values of conditions are the same, you can do this:
…
