0
votes
1answer
14 views
Zend Form add error message
Hi
I did register form in with zend form
$password = new Zend_Form_Element_Password('password');
$password->setLabel($this->_translate->_("Password:"))
->setRequir …
0
votes
5answers
118 views
Should I learn ASP.NET MVC or the Zend Framework? [closed]
I'm an amateur PHP programmer and want to know if I'm better served by going with the Zend Framework, or if I should learn ASP.NET MVC?
Which has better 'free' resources on the in …
1
vote
1answer
27 views
How do I use namespaces with Zend Framework?
Namespaces are really useful and PHP had no support for them until the recent few releases, AFAIK.
When I'm using Zend Framework, I have to remember long names with underscores - l …
1
vote
1answer
22 views
Problem with Zend_Date and ISO_8601 format
Frankly, I'm flummoxed. Can anyone tell me why I would get a failure message with this code?
$date = Zend_Date::now();
$date = $date->getIso();
if(Zend_Date::isDate($date, Zen …
0
votes
2answers
11 views
File Upload in Zend
Hello every body,
i m using zend form & create its elements using the code below.
// To create text box.
$txt = $this->CreateElement('text', 'txtName');
$txt = $this->setLabe …
0
votes
1answer
37 views
Tagging with Zend Framework
I'm trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The na …
1
vote
1answer
43 views
How can I access the configuration of a Zend Framework application from a controller?
I have a Zend Framework application based on the quick-start setup.
I've gotten the demos working and am now at the point of instantiating a new model class to do some real work. …
0
votes
1answer
16 views
dynamicaly adding textboxes to zend_form
Hi,
I hope that this is a quick question to answer. I am developing a form using Zend_Form, I have a number of Zend_Dojo_Form_Element_Textboxs to add to this form dynamically.
…
2
votes
3answers
65 views
+150
Zend Framework app not closing mysql connections properly
I'm having a weird issue using Zend_Db's PDO adapter for managing my database connections. All of a sudden, I'm constantly hitting the connection limit on my MySQL server.
For wha …
-1
votes
1answer
25 views
Running a premade bulletin board through my Front Controller in Zend
Hi all,
I tried to ask this once, but I think that my former question was too unclear for you guys to answer, so I'll try again
I'm making a website using the Zend Framework, and …
1
vote
5answers
104 views
Framework Comparison and Overhead
I am working on a Facebook game which is developed using Zend framework. Right now I don't have lots of traffic and already seen quite a large # of data usage / CPU time.
Actuall …
0
votes
0answers
16 views
Can Zend_Service_Rest do file uploads?
I assume that RESTful services is a comprehensive paradigm, that it also could cover file uploads too, as a subset of http operations.
If so, how does one do file uploads in Rest …
0
votes
1answer
27 views
Passing additional parameters to the Zend partialLoop View Helper
In a Zend view I can apply a partial template to an iterable element as follows:
$this->partialLoop('template.phtml', $iterable);
However inside the template, only the elemen …
1
vote
1answer
41 views
Framework Comparison and Overhead
I am working on a Facebook game which is developed using Zend framework. Right now I don't have lots of traffic and already seen quite a large # of data usage / CPU time.
Actually …
0
votes
1answer
20 views
How to disable layout inside a plugin ?
Here is what i'm trying to do
<?php
class My_Controller_Plugin_SomePlugin extends Zend_Controller_Plugin_Abstract
{
public function preDispatch(Zend_Controller_Request_Abs …
