Re: [fw-general] Zend_Tool sub forum?

2009-01-04 Thread Matthew Weier O'Phinney
-- Marc Grue m...@grue.info wrote (on Friday, 02 January 2009, 03:32 PM -0800): First, a big thank you, Ralph, for creating the http://framework.zend.com/wiki/display/ZFPROP/Zend_Tool+-+General Zend_Tool !! The idea of automating code generation is a brilliant step towards working smarter not

[fw-general] Zend_Cache problem

2009-01-04 Thread Ross Masters
Hi all, I'm relatively new with ZF and completely new to the lists - so I apologies if this is the wrong list. I'm trying to cache the Twitter public timeline for 60 seconds, using the code below: $frontendOptions = array( 'lifetime' = 60, 'automatic_serialization' = true );

Re: [fw-general] Zend_Tool sub forum?

2009-01-04 Thread Marc Grue
Matthew Weier O'Phinney-3 wrote: -- Marc Grue m...@grue.info wrote (on Friday, 02 January 2009, 03:32 PM -0800): I just signed up to your Yahoo group at http://tech.groups.yahoo.com/group/zf-tool/ but wouldn't it make sense to create a sub forum here ('Zend_Tool') so that all the good

[fw-general] Search Lucene Analyzer: difference from Text and Utf8

2009-01-04 Thread iosonogio
Hello all! I've been reading the docs and the mailing lists, but I've not got it clear the real difference between the two classes of analyzers: the Text's and the Utf8's. I'm currently using the Text Num CaseInsensitive. My sopurce data are iso-8859-1, and I see that when they get indexed they

Re: [fw-general] Zend_Cache problem

2009-01-04 Thread Fabien MARTY
Hi, This is a PHP issue. When you unserialize objects, you must have loaded corresponding classes __before__ And you can't serialize ressources Regards On Sun, Jan 4, 2009 at 8:14 PM, Ross Masters ross.masters...@googlemail.com wrote: Hi all, I'm relatively new with ZF and completely new to

Re: [fw-general] Zend_Cache problem

2009-01-04 Thread Ross Masters
Hi Fabien, Does this mean that if I require Zend_Reset_Client_Result when loading the object from the cache this will work? Thanks, Ross 2009/1/4 Fabien MARTY fabien.ma...@gmail.com Hi, This is a PHP issue. When you unserialize objects, you must have loaded corresponding classes

Re: [fw-general] Zend_Cache problem

2009-01-04 Thread Pádraic Brady
Hi, Your problem is that you're attempting to serialize (indirectly) a SimpleXML object - one of PHP's internal classes. To successfully serialize, a common tactic is to utilise custom serialize functions as described here:

Re: [fw-general] Hierarchical nested list with Zend_Form

2009-01-04 Thread PHPScriptor
If you post your code of your form I can have a deeper look at this. If this nested list is the only thing in your form you can use something like this (didn't test it... but maybe it helps you): Let me know your opinion... this is the code you want: ul liMusic/li (level 1) ul

Re: [fw-general] Hierarchical nested list with Zend_Form

2009-01-04 Thread onyxrev
That would probably be helpful, yes. What I ended up doing, which seems to work, is nest a bunch of subforms programatically. $skills = new Zend_Form_SubForm(); foreach (array_keys($allskills) as $parent_role){

Re: [fw-general] Hierarchical nested list with Zend_Form

2009-01-04 Thread onyxrev
Actually, this does not work. It's not truly nested. I will look into your code suggestion. Thanks! What I ended up doing, which seems to work, is nest a bunch of subforms programatically. $skills = new Zend_Form_SubForm(); foreach (array_keys($allskills) as

Re: [fw-general] PHP version requirement

2009-01-04 Thread ardx
Till Klampaeckel-2 wrote: Zend_File seems to lead the list, but only with 5.2.1, not 5.2.4. And if anyone cares, here are the version requirements per component (tests not included): ... Zend_Date: 5.1.0 ... Zend_Date on ver 1.7+ is broken on php 5.16 due to the use of

[fw-general] pass a variable into a partialloop

2009-01-04 Thread Ace Paul
i have this set up so that in my controller i have set up the variable $racepackage_id = $this-_request-getParam('racepackage_id'); i then make the cityaccomm object $this-view-cityaccomm = $accomm-getCityAccommodation($city_id);// assign accommodation to view I would like to also have the