15
votes
9answers
5k views
How does Magento code work?
Can someone show me how to accomplish the following in Magento:
Display a hello world message using a controller/view/model approach, so if i went to http://mysite.com/myController
It would show …
11
votes
13answers
3k views
Zend Form: How do I make it bend to my will?
I've read the manual many times, I've scoured the posts offered by Google on the subject, I have even bought a couple of books that deal with ZF. Now, why am I still confused?
I can, using Zend_Form, …
7
votes
3answers
137 views
How to customize Zend_Tool output?
I'd like to use Zend_Tool (ZF 1.9) with my project, but I would like to be able to customize the default output of new files. For example, all Controllers should have a specific header pre-pended to …
7
votes
8answers
857 views
How to get started deploying PHP applications from a subversion repository?
I've heard the phrase "deploying applications" which sounds much better/easier/more reliable than uploading individual changed files to a server, but I don't know where to begin.
I have a Zend …
7
votes
5answers
2k views
Handling input with the Zend Framework (Post,get,etc)
Hi,
im re-factoring php on zend code and all the code is full of $_GET["this"] and $_POST["that"]. I have always used the more phpish $this->_request->getPost('this') and …
7
votes
7answers
4k views
Emulate MySQL LIMIT clause in Microsoft SQL Server 2000
When I worked on the Zend Framework's database component, we tried to abstract the functionality of the LIMIT clause supported by MySQL, PostgreSQL, and SQLite. That is, creating a query could be …
7
votes
16answers
953 views
Can you recommend a good book on zend framework.
Can anyone recommend a good book on zend framework. I got ZF up and running but I want a more complete reference with maybe something that talks about each module more in depth.
Is there such a book. …
6
votes
1answer
232 views
Disply php errors when using Zend framework
Hey SO folk,
I've been using Zend Framework and just living with this problem for a while, but it's now just gotten too annoying so i'll send the question out to you.
There are certain problems …
6
votes
4answers
402 views
Web front end caching best practices for site?
Summary
As I'm looking on stackoverflow and around the net, I find that there is a general lack of good documentation on best practices for caching a high performance site that uses sessions. It …
6
votes
1answer
454 views
How to Design Domain Layer Objects to Represent Multiple Objects & Single Object in Zend Framework?
I'm working on creating a domain layer in Zend Framework that is separate from the data access layer. The Data Access Layer is composed to two main objects, a Table Data Gateway and a Row Data …
6
votes
5answers
982 views
Is there a way to do an “INSERT…ON DUPLICATE KEY UDPATE” in Zend Framework?
I would like to use "ON DUPLICATE KEY UPDATE" in Zend Framework, is this possible?
Example
INSERT INTO sometable (...)
VALUES (...)
ON DUPLICATE KEY UPDATE ...
5
votes
7answers
289 views
Why is Zend Framework so popular?
I'm not a troll and my goal isn't to start a flame war; neither do I mean to disrespect the authors of the Zend Framework: there is a lot of fine work in it. But... I have a job to get done and I'm …
5
votes
8answers
230 views
Is it OK to allow sometimes dynamic SQL without sanitization?
My partner on a PHP project objects my practice of always sanitizing integer values in dynamic SQL. We do use parameterized queries when possible. But for UPDATE and DELETE conditions Zend_Db_Adapter …
5
votes
6answers
236 views
What framework(s) would you suggest for a strong, extensible dev platform?
First, let me apologize for Yet Another Framework Question. But I think this is different enough from the usual "What framework should I choose?" to warrant it.
Here's my situation: For the past year …
5
votes
7answers
1k views
Zend Framework forms, decorators and validation: should I go back to plain HTML?
I am currently working on a pretty large application which contains a lot of forms.
Up to this moment, I have always been writing my forms by hand and writing my own validation logic, but I have …
