5
votes
8answers
206 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 …
1
vote
3answers
27 views
What to do about storing user uploaded files in a Zend Framework application?
I'm creating a web application that will involve habitual file uploading and retrieval (PDFs, Word Documents, etc). I have a few "best-practices" questions:
Where should I store these files in …
0
votes
1answer
23 views
Add Page Parameter in Zend Framework Doesn’t Work
Hello guys,
I've been trying to figure this out these days. I got a problem when I want to add 'page' parameter in my URL for my pagination.
This is my router
->addRoute('budi',new …
0
votes
0answers
6 views
Zend_Form - Validator - XML
How could I set a custom validator-message with XML?
Normally:
array('StringLength', true, array(3, 10, 'messages' => array(
Zend_Validate_StringLength::TOO_SHORT => 'TEST',
…
1
vote
0answers
42 views
Getting Zend_GData Feed for a Specific Google Calendar
I had a long detailed question about how to get a specific calendar's event feed, but figured (I think) a solution out before I posted. However, even with the solution I'm left wondering what I'm …
0
votes
1answer
19 views
What does “Automatic cleaning is not available/necessary with this backend” mean? (for memcache )
I have installed the memcache in my php zend code. it seems no error. but there is a warning in the log saying
Zend_Cache_Core::save() / automatic cleaning is not available/necessary with this …
0
votes
1answer
19 views
help with Zend_Auth_Adapter_DbTable
Hi all,
I'm starting with the Zend framework and I wanted to use Zend_Auth_Adapter_DbTable to authenticate my users ...
I looked at the docs, which seem quite straight forward, but I'm getting an …
0
votes
1answer
16 views
$this->headLink() includes duplicated script
Hi,
Just like I did before, I used the following code for my new project.
<?=$this->headLink()->appendStylesheet('/Layouts/admin/css/button.css');?>
…
0
votes
1answer
23 views
jQuery + Zend Framework: dealing with multiple, optional parameters
I'm using the jQuery.get method to perform an AJAX request against a method that returns JSON. This is a search page with 4 search fields, all of which are optional. I set up a route like so:
new …
0
votes
0answers
20 views
How to call a Zend lucene search function?
I inherited a Zend project devoid of comments and I didn't get to talk to the previous developer. Since I have no Zend experience I'm having some issues :)
I'd like to print out some variables inside …
0
votes
2answers
28 views
Zend_ACL with modular structure?
Hello,
I created a MVC with Zend by reading http://framework.zend.com/manual/en/zend.controller.modular.html.
The problem is that I can't find a way to use Zend_ACL with modular structure. Zend_Acl …
0
votes
2answers
31 views
Correct way to deal with multiple forms generated by one controller and action?
I'm using the Zend Framework and I'm about to hack up some of my controller code to do something that seems like there should be a pattern for already.
Currently when I only have one form, the form's …
0
votes
2answers
32 views
Zend Framework: How to delete a table row where multiple things are true?
Normally, this would work for me:
$db = Zend_Db_Table::getDefaultAdapter();
$where = $db->quoteInto('id = ?', $id);
$db->delete('tablename', $where);
but I have to match two ids. So I don't …
0
votes
1answer
25 views
Zend Framework: How to do a DB select with multiple params?
I'm just wondering what the syntax is to do a db select in Zend Framework where two values are true. Example: I want to find if a user is already a member of a group:
$userId = 1;
$groupId = 2;
$db = …
0
votes
2answers
76 views
how to do something like google-analytics
hi,
I need to make something like google-analytics, I mean that it has to be very simple to install and enables a comunication between 2 websites.
Let me explain the idea.
I'm developping an …
