[fw-general] Re: Remember me Zend_Auth cookie

2010-03-27 Thread umpirsky
Hehum...thanks :) Regards, Saša Stamenković On Sat, Mar 27, 2010 at 7:43 AM, Marian Meres-2 [via Zend Framework Community] > wrote: > You may find this usefull: > http://jaspan.com/improved_persistent_login_cookie_best_practice > > On Fri, Mar 26, 2010 at 2:50 PM, umpirsky <[hidden > email]

[fw-general] Zend Framework, dojo & json [Scanned]

2010-03-27 Thread Steve Rayner
i am using the following javascript to pass parameters to server; var obj = {nest_id:1, component_id:1}; data = dojo.toJson(obj); var deferred = dojo.xhrPost({ url: "addtonest", content: data }); this seems ok, the data does arrive in the request. How do i extract the parameters in my

Re: [fw-general] zf tool overwrite?

2010-03-27 Thread scs
Yes, I am using subversion as revision control system. Unfortunately, that day I had a problem with svn that dit not let me to commit changes. The next day, I fixed it but the overwrite occurred within the broken time of svn. By the way, do not misunderstand me. It was my mistake. I wrote the cont

Re: [fw-general] a page is run twice?

2010-03-27 Thread scs
Hello, Hector thanks for the reply. And also sorry from the list that I remembered my question was asked recently When I investigated the issue a bit more, I found that it is not due to a broken link. I did not find any missing/broken link in the apache's error.log And also my htaccess file uses Re

Re: [fw-general] Naming your Namespace

2010-03-27 Thread Chris Morrell
I always thought that Default_ was the recommended namespace for everything under the application/ tree that's part of the default module, and that Application_ was becoming the standard for library/application/. Have I always been mistaken or has this changed recently? This always made sense to

[fw-general] Re: Models and Services - ACL - Where and How

2010-03-27 Thread jsuggs
Chris Morrell-2 wrote: > > Right now I treat my models as resources with a special exception for the > user model which is both a resource and a role. Then I actually make the > models responsible for managing their own ACL permissions, both setting > them > up and querying them. To facilitate

Re: [fw-general] Re: Models and Services - ACL - Where and How

2010-03-27 Thread Chris Morrell
I just want to clarify that I'm not promoting the model = data mentality. I don't particularly love full ORM solutions, so I tend to use a data mapper that handles extracting data from my model and passing it to the data access object (whether that's a relational database, a no-SQL style database,