[fw-general] Production Examples of Zend Search Lucene

2007-10-01 Thread Robert Young
Hi, I'm evaluating search solutions at the moment and I've narrowed things down to Solr and ZSL. What I'm trying to find out at the moment is if there are any examples of ZSL being used in production environments in large, high traffic systems. Is anyone using ZSL in production or knows of any tes

AW: [fw-general] getRequest

2007-10-01 Thread Leo Büttiker
You can do it in a plugin or in the bootstrap. We currently do it in the bootstrap but we will eventually move it to a plugin to hold the bootstrap clean. -Ursprüngliche Nachricht- Von: Waigani [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 30. September 2007 22:30 An: fw-general@lists.zend

Re: [fw-general] Forward to another module doesn't work

2007-10-01 Thread debussy007
Indeed in the preDispatch it works great ! Also in the doc it is specified that forward is working in preDispatch, postDispatch and any action methods. So it does not mention 'init'. But the exception I had is really misleading. Anyway, Thank you :-) Matthew Weier O'Phinney-3 wrote: > > -- de

Re: [fw-general] question about preDispatch

2007-10-01 Thread debussy007
Nice, this works great :-) !! I have also thought about setting up plugins and helpers. But I think it is a regret that helpers and plugins doesn't work per module. E.g. In my case, I have a module default (for guests and members), partners and admin. And if authentication fails, I have to forw

Re: [fw-general] AW: getRequest

2007-10-01 Thread Waigani
So how do you do it in the bootstrap? I'm guessing you getModuleName after $front->dispatch()? Leo Büttiker wrote: > > You can do it in a plugin or in the bootstrap. We currently do it in the > bootstrap but we will eventually move it to a plugin to hold the bootstrap > clean. > > -Urspr

AW: [fw-general] AW: getRequest

2007-10-01 Thread Leo Büttiker
Ohh, I'm sorry I didn't read the hole thread. For getModuleName you have to probably do it in a plugin in the routeShutdown() methode. But why do you need the modulname there? You can access to it in the controller anyway. -Ursprüngliche Nachricht- Von: Waigani [mailto:[EMAIL PROTECTED] G

Re: [fw-general] Paginate?

2007-10-01 Thread Geoffrey Bachelet
Hi Jess, i'm the developper of the riskle paginate component and I'd be happy to help you have it work :-) I just finished a quick page on riskle's assembla space which summarize what has to be known about this component to use it, you can find it at the following url: http://www.assembla.com/wi

[fw-general] Production Examples of Zend Search Lucene

2007-10-01 Thread Robert Young
Hi, I'm evaluating search solutions at the moment and I've narrowed things down to Solr and ZSL. What I'm trying to find out at the moment is if there are any examples of ZSL being used in production environments in large, high traffic systems. Is anyone using ZSL in production or knows of any tes

Re: [fw-general] Riskle Paginate

2007-10-01 Thread David Mintz
I have just entered the monastery. Please teach me: how do we paginate database results in The Way? I don't know about the idea of all my models having to extend something that extends Zend_DB_table...what other ways to people recommend (before I go and roll my own, he threatened)? On 9/26/07, W

Re: [fw-general] Broken links in Zend Framework Proposal Process Detail

2007-10-01 Thread Darby Felton
Hi Simone, These links are now fixed; thanks for the report! Best regards, Darby Simone Carletti wrote: > Hi list, > > there are a few broken links in > http://framework.zend.com/wiki/display/ZFPROP/Zend+Framework+Proposal+Process+Detail > > 1. section Proposal Review, around "repository (see

[fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread froesi
Hi all, I send a mail via $mail = new Zend_Mail; I need a long subject. The problem is, that Outlook won't correctly paste the linebreaks together again. So in a long subject stands an "= " at the position, where the linebreak was. Example: Here I write an entry in the Zend Framework Community

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Matthew Weier O'Phinney
-- froesi <[EMAIL PROTECTED]> wrote (on Monday, 01 October 2007, 06:27 AM -0700): > I send a mail via $mail = new Zend_Mail; > I need a long subject. > > The problem is, that Outlook won't correctly paste the linebreaks together > again. So in a long subject stands an "= " at the position, where t

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Darby Felton
Hi Froesi, Maybe you're not using the latest version? Best regards, Darby froesi wrote: > Hi all, > > I send a mail via $mail = new Zend_Mail; > I need a long subject. > > The problem is, that Outlook won't correctly paste the linebreaks together > again. So in a long subject stands an "= " at

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread froesi
I updated to newest ZF version. Still the same problem. I am not using SMTP. cheers froesi Matthew Weier O'Phinney-3 wrote: > > -- froesi <[EMAIL PROTECTED]> wrote > (on Monday, 01 October 2007, 06:27 AM -0700): >> I send a mail via $mail = new Zend_Mail; >> I need a long subject. >> >> The p

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Matthew Weier O'Phinney
-- froesi <[EMAIL PROTECTED]> wrote (on Monday, 01 October 2007, 08:03 AM -0700): > I updated to newest ZF version. > Still the same problem. I am not using SMTP. Try using it via the SMTP transport, and see if that works. > Matthew Weier O'Phinney-3 wrote: > > > > -- froesi <[EMAIL PROTECTED]>

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread froesi
Maybe thats the point and would work with smtp, but I don't want to send the mails via the SMTP and can't try at this moment, sorry. Thx cheers froesi Matthew Weier O'Phinney-3 wrote: > > -- froesi <[EMAIL PROTECTED]> wrote > (on Monday, 01 October 2007, 08:03 AM -0700): >> I updated to newest

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Matthew Weier O'Phinney
-- froesi <[EMAIL PROTECTED]> wrote (on Monday, 01 October 2007, 09:05 AM -0700): > Maybe thats the point and would work with smtp, but I don't want to send the > mails via the SMTP and can't try at this moment, sorry. How else are you doing it, then? If you're using Exchange, it's either on anoth

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Rob Allen
froesi wrote: > Hi all, > > I send a mail via $mail = new Zend_Mail; > I need a long subject. > > The problem is, that Outlook won't correctly paste the linebreaks together > again. So in a long subject stands an "= " at the position, where the > linebreak was. > > Example: > > Here I write an

Re: [fw-general] Zend_Mail - to long subject -- Outlook puts '= ' in subject

2007-10-01 Thread Nico Edtinger
Rob Allen: It was happening on long urls. Given I was also having the "BCC appearing in the headers" issue, I swapped out Zend_Mail and used mail() instead with no problems. It's yet another thing on my list of things to investigate more fully when I get some time! I've worked on the heade

Re: [fw-general] AW: AW: getRequest

2007-10-01 Thread Waigani
It is for a login form which logs you into the current page. So I'm actually after module, controller action names. I'll just do it as a plugin. Leo Büttiker wrote: > > Ohh, I'm sorry I didn't read the hole thread. For getModuleName you have > to > probably do it in a plugin in the routeShutdo

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-10-01 Thread Darby Felton
Hi Juan et al, I believe I have resolved this with SVN r6556: http://framework.zend.com/fisheye/changelog/Zend_Framework/?cs=6556 Please try the latest SVN and let us know your mileage. Thanks! Best regards, Darby Juan Felipe Alavarez Saldarriaga wrote: > :) > > Hey, I upgrade from ZFW 1.0.1

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-10-01 Thread Eric Alvares
Hi Darby, Thanks for looking into this. I do have a question, still. Does the 6556 fix take into account string values for the profiler? This happens when the profiler was set up by passing the db factory a Zend_Config_Ini/Xml. As a result an array with the string value 'true' for the profiler

Re: [fw-general] Zend_Loader issue on ZFW 1.0.2

2007-10-01 Thread Eric Alvares
Oops, I see now that Darby has got it covered for the string 'true'. I apologies for having been too lazy to read. Regards, Eric - Original Message - From: "Eric Alvares" <[EMAIL PROTECTED]> To: Sent: Monday, October 01, 2007 11:43 PM Subject: Re: [fw-general] Zend_Loader issue on Z

[fw-general] Re: [ZF JIRA] Zend Framework Wiki/Issue Tracker

2007-10-01 Thread Simon Mundy
You're a champ! Cheers Wil Hi all, I'm very happy to announce that the intermittent issues we've been having with our wiki and issue tracker are now resolved. We have now been up for a week w/o a restart. If you experience any further difficulties with any part of the framework site, please

RE: [fw-general] Validation for multi-column unique constraints

2007-10-01 Thread Bill Karwin
This solution isn't atomic, so it's not safe in a concurrent environment. Some other client could insert a new record in between your steps 1 and 3 and then your SQL statement would generate a violation of the unique constraint even though you think it shouldn't. You should use the database's enf

RE: [fw-general] PDO_MYSQL vs. MYSQLI

2007-10-01 Thread Bill Karwin
The Mysqli adapter uses the 'mysqli' PHP extension. The Pdo_Mysql adapter uses the 'pdo_mysql' PHP extension. Some people use PHP environments that have one or the other of these extensions enabled, so we support both extensions. The behavior of both Zend_Db adapters is intended to be identical

RE: [fw-general] beginner, quoting where in array

2007-10-01 Thread Bill Karwin
You can just skip the step where you call quote(). For example: $whereArray = array( 'username = ?' => $uid, 'code = ?' => $code ); $row = $members->fetchRow($whereArray); The fetchAll() and fetchRow() methods of the Zend_Db_Table class are both designed to accept an

RE: [fw-general] Storing database connection string?

2007-10-01 Thread Bill Karwin
I usually instantiate the Db Adapter either in the init() method of the controller class, and store it in a class variable, for example: class DatabaseController extends Zend_Controller_Action { protected $_db; public function init() { $this->_db = new Zend_Db_Adapter_Pdo_My

RE: [fw-general] design decision for caching and databases

2007-10-01 Thread Bill Karwin
1) You could serialize the Rowset->toArray() instead of the Rowset object. But regardless, this solution works only if you always access records by primary key, e.g. using the find() method. Otherwise, if you query on some other expression, you'd need to fetch the result set anyway before you can

RE: [fw-general] Zend_Auth_Adapter_DbTable assumes Zend_Db::FETCH_ASSOC

2007-10-01 Thread Bill Karwin
I think this has been reported: http://framework.zend.com/issues/browse/ZF-1397 Regards, Bill Karwin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Mintz Sent: Monday, September 24, 2007 7:07 AM To: Zend Framework G

[fw-general] Zend_DB_TABLE and mysqli permission

2007-10-01 Thread mihu
Is there some sort of mysqli permission limitation? I got a exceptions from Zend_DB_TABLE and I am thinking it might be something to do w/ mysqli user permission. Can someone clear this for me? thanks, -- View this message in context: http://www.nabble.com/Zend_DB_TABLE-and-mysqli-permission-

RE: [fw-general] Zend_DB_TABLE and mysqli permission

2007-10-01 Thread Bill Karwin
> -Original Message- > From: mihu [mailto:[EMAIL PROTECTED] > I got a exceptions from Zend_DB_TABLE and I am thinking it > might be something to do w/ mysqli user permission. > > Can someone clear this for me? Can you show one of the exceptions? Have you tried running the same query f