[fw-general] Some strange behaviour with Zend_Search_Lucene

2009-07-31 Thread Sergio Rinaudo
Hi, I'm trying to improve my search queries using Zend_Search_Lucene, according with this documentation page http://framework.zend.com/manual/en/zend.search.lucene.query-language.html, these '+ - && || ! ( ) { } [ ] ^ " ~ * ? : \ ' are special characters that needs to be escaped. I've

Re: [fw-general] Several database connections using Zend_Application_Resource_Db?

2009-07-31 Thread Hector Virgen
You can only have one default database connection, but you can create a separate db resource that loads the others and stores them somewhere (like in Zend_Registry). -- Hector Sent from Temecula, California, United States On Fri, Jul 31, 2009 at 12:23 PM, wizardz wrote: > > Hi! > What is the bes

[fw-general] Several database connections using Zend_Application_Resource_Db?

2009-07-31 Thread wizardz
Hi! What is the best way to handle several database connections using Zend_Application_Resource_Db? - write my own DB recource that will handle it? - use Zend_Application_Resource_Db several times and create several instances of the resource but with different configuration? - do I miss som

Re: [fw-general] Zend Framework 1.9.0 Released!

2009-07-31 Thread Sudheer Satyanarayana
Matthew Weier O'Phinney wrote: The Zend Framework team announces the immediate availability of version 1.9.0! http://framework.zend.com/download/latest Kudos and thanks go out to the huge number of community contributors who helped make this release possible. This release has been almost en

Re: [fw-general] Zend Framework 1.9.0 Released!

2009-07-31 Thread ryan
I, for one, have really been looking forward to this release. Speaking as one of the folks that started using ZF back in 0.2, it really has come a long way. Kudos to everyone. Many of us would still be using if it weren't for you guys. > The Zend Framework team announces the immediate avail

Re: [fw-general] Re: [fw-auth] Zend_Acl fixes in trunk for assertions ZF-1721 & ZF-1722

2009-07-31 Thread Ralph Schindler
Awesome! Well, I plan to close these issues by the end of the day (or weekend) assuming no one else pipes up about how well the solution works :) -Ralph Abraham Block wrote: Seems to work like a champ, Ralph! On Fri, Jul 31, 2009 at 11:06 AM, Ralph Schindler mailto:ralph.schind...@zend.com

Re: [fw-general] Zend Framework 1.9.0 Released!

2009-07-31 Thread Dalibor Karlović
On Friday 31 July 2009 17:58:29 Matthew Weier O'Phinney wrote: > Please join me in a hearty round of congratulations and acknowledgment > of all contributors who helped make this release possible through code > contributions, feedback, testing, documentation, translations, and issue > reports! Wit

Re: [fw-general] Access Zend_View properties from Zend_Paginator view script

2009-07-31 Thread David Mintz
On Thu, Jul 30, 2009 at 9:48 PM, Sergio Rinaudo wrote: > It is possible to access View properties created on My_Controller_Action > in a Zend_Paginator view script? > Thanks. > This might help: "PaginationControl accepts up to four parameters: the paginator instance, a scrolling style, a view p

[fw-general] Re: [fw-auth] Zend_Acl fixes in trunk for assertions ZF-1721 & ZF-1722

2009-07-31 Thread Abraham Block
Seems to work like a champ, Ralph! On Fri, Jul 31, 2009 at 11:06 AM, Ralph Schindler wrote: > Hi all, > > I have supplied a fix in trunk for issues ZF-1721 and ZF-1722. This is a > long standing issue that affects developers who wish to write non-trivial > assertions. If anyone is interested, h

[fw-general] Zend Framework 1.9.0 Released!

2009-07-31 Thread Matthew Weier O'Phinney
The Zend Framework team announces the immediate availability of version 1.9.0! http://framework.zend.com/download/latest Kudos and thanks go out to the huge number of community contributors who helped make this release possible. This release has been almost entirely community driven, with the

[fw-general] Re: [fw-mvc] Using Ajax with Zend

2009-07-31 Thread Simone Cosci
Naimesh.Trivedi (Gmail) ha scritto: Hello ! I want to use Ajax in my Zend based input forms, should I used Zend_Form or Zend_Dojo_Form ? Can anybody help me showing a link of example of ajax enabled form using above ? Thanks in Advance ! Naimesh I think you can choose

[fw-general] Re: [fw-mvc] Using Ajax with Zend

2009-07-31 Thread Simone Cosci
Naimesh.Trivedi (Gmail) ha scritto: Dear Simone, Hello ! Thanks for the prompt response. I am also trying with Zend_Form_Dojo. The example you gave is not full, I am new to Zend so don't know which code to write where, I meant in controller, model or view and where to add the mention

Re: [fw-general] Unexpected session exception with Zend_Application_Resource_Session

2009-07-31 Thread Lucas Corbeaux
Thanks a lot, you save me some hours ! I totally focused on the exception message and not really check the save_path... Anyone knows why a wrong save_path throws a "session already started" exception later ? Is there an issue ? Thank you again, Lucas Hector Virgen a écrit : I think you're

Re: [fw-general] Unexpected session exception with Zend_Application_Resource_Session

2009-07-31 Thread Hector Virgen
I think you're missing a forward slash: resources.session.save_path = APPLICATION_PATH "/../data/session/" I'd also double-check that the folder is writable by php/apache. -- Hector On Fri, Jul 31, 2009 at 8:34 AM, Lucas Corbeaux wrote: > Hi there, > > I have a strange exception with Zend_Appl

[fw-general] Unexpected session exception with Zend_Application_Resource_Session

2009-07-31 Thread Lucas Corbeaux
Hi there, I have a strange exception with Zend_Application_Resource_Session. In fact, the resource works well, here is a part of my application.ini : resources.session.save_path = APPLICATION_PATH "../data/session/" resources.session.name = "myApplication" resour

[fw-general] Zend_Acl fixes in trunk for assertions ZF-1721 & ZF-1722

2009-07-31 Thread Ralph Schindler
Hi all, I have supplied a fix in trunk for issues ZF-1721 and ZF-1722. This is a long standing issue that affects developers who wish to write non-trivial assertions. If anyone is interested, here is a similar use case that describes part of the issue I think a lot of developers have run in

[fw-general] RE: [fw-mvc] Using Ajax with Zend

2009-07-31 Thread Naimesh.Trivedi (Gmail)
Dear Simone, Hello ! Thanks for the prompt response. I am also trying with Zend_Form_Dojo. The example you gave is not full, I am new to Zend so don't know which code to write where, I meant in controller, model or view and where to add the mentioned java script code with some example va

[fw-general] Zend_Form_Dojo Submit button issue

2009-07-31 Thread Naimesh.Trivedi (Gmail)
Hello ! I am using Zend framework 1.8.4. I tried adding a Zend_Form_dojo button element as below : $this->addElement('SubmitButton','submitBtn',array('required' => false,'ignore' => true,'label' => 'Submit',)); It adds it successfully but also generates element for it which is

[fw-general] Using Ajax with Zend

2009-07-31 Thread Naimesh.Trivedi (Gmail)
Hello ! I want to use Ajax in my Zend based input forms, should I used Zend_Form or Zend_Dojo_Form ? Can anybody help me showing a link of example of ajax enabled form using above ? Thanks in Advance ! Naimesh

[fw-general] FW: Using Dojo with Zend

2009-07-31 Thread Naimesh.Trivedi (Gmail)
Please let me refresh my 3rd point be more informative. 3) In my Zend Form class .php for example prjhead.php which I stored in /application/forms directory Now in prjhead.php, the the class extending Zend_Form has to have name Default_Form_prjhead to work. If I change the name of that class

[fw-general] Inconsistent Zend_Navigation behaviour?

2009-07-31 Thread Brenton Alker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm having problems generating navigation with Zend_Navigation. I've got 2 custom routes, defined in the application.ini and am adding 2 pages to the navigation in the controller's init() method (I've also tried pre and post dispatch methods - sam

[fw-general] Re: Zend_Form: Adding elements to an existing display group

2009-07-31 Thread ej S(ibr(ina
Second testing message i hope it'll be last :-) Andy Hector Virgen napsal(a): > You're right, I switched over to your method and now all of my fields > appear in the form values. > > I just searched the issue tracker and found the bug that relates to > this. It's marked as "postponed" so I guess

[fw-general] Re: Zend_Form: Adding elements to an existing display group

2009-07-31 Thread ej S(ibr(ina
Hello this is just testing message hope you understand. Thanks Andy Hector Virgen napsal(a): > You're right, I switched over to your method and now all of my fields > appear in the form values. > > I just searched the issue tracker and found the bug that relates to > this. It's marked as "postpon