[fw-general] Youtube Auto Login

2009-02-24 Thread gerritku
How create youtube Autothentication with youtube APIs and Zend framework? So from our personal page we can get inbox information like : total personal messages, total comment, etc. Thanks Gerrit -- View this message in context: http://www.nabble.com/Youtube-Auto-Login-tp22177648p22177648.html

[fw-general] Fisheye error

2009-02-24 Thread Martin Mayer
Hi, Fisheye browser's not working? I get Proxy error for http://framework.zend.com/code/browse/Zend_Framework. Martin

RE: [fw-general] Fisheye error

2009-02-24 Thread Wil Sinclair
No, it's not. It apparently needs more resources since I updated it last week, and I need more resources to go in and fix it. ;) Wait, no, actually :( ,Wil -Original Message- From: Martin Mayer [mailto:mayer.mar...@gmail.com] Sent: Tuesday, February 24, 2009 12:21 AM To:

[fw-general] Re[fw-general] place unicode characters to to latin

2009-02-24 Thread Irmantas
Hi coders I'm looking for Zend filter or something where I could transform unicode characters like ąčęėįšųūž to latin characters aceeisuuz is there any filter or something else. Or should i write my own filter? Thanks for your answers and sorry for my english :P -- View this message in context:

[fw-general] Zend_Service_Youtube Component not working

2009-02-24 Thread gerritku
I already try example source from http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Youtube+-+Andries+Seutens but not working. Anybody have solution code for authentic to youtube account? Gerrit -- View this message in context:

Re: [fw-general] Zend_Service_Youtube Component not working

2009-02-24 Thread kamil
gerritku pisze: I already try example source from http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Youtube+-+Andries+Seutens but not working. Anybody have solution code for authentic to youtube account? Gerrit Look in Zend_Gdata

[fw-general] Zend Framework Support Forums

2009-02-24 Thread vadim gavrilov
Just a general questions, Why isn't there a Peer-to-Peer Technical Support forums for the Zend Framework? I mean the mailing list is ok and we get our qeustions answered but having some kind of a forum where developers could share ideas, tips, help each other (without relying on the mailing list)

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread Cristian Bichis
Hi, Actually there is already a ZF forum and many of the people from here are also on forum. Check www.zfforums.com -- Best regards, Cristian Bichis www.zftutorials.com | www.zfforums.com | www.zftalk.com | www.zflinks.com Just a general questions, Why isn't there a Peer-to-Peer Technical

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread vadim gavrilov
Hm, I wonder why this didn't come up anywhere. Thanks. On Tue, Feb 24, 2009 at 3:10 PM, Cristian Bichis cont...@zftutorials.comwrote: Hi, Actually there is already a ZF forum and many of the people from here are also on forum. Check www.zfforums.com -- Best regards, Cristian Bichis

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread till
On Tue, Feb 24, 2009 at 2:20 PM, vadim gavrilov vadim...@gmail.com wrote: Hm, I wonder why this didn't come up anywhere. Thanks. http://tinyurl.com/aammcg (Just kidding, of course!) Till

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread vadim gavrilov
Yea i guess i am kinda stupid, Still was looking for something official. But thanks. On Tue, Feb 24, 2009 at 3:34 PM, till klimp...@gmail.com wrote: On Tue, Feb 24, 2009 at 2:20 PM, vadim gavrilov vadim...@gmail.com wrote: Hm, I wonder why this didn't come up anywhere. Thanks.

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread Matthew Weier O'Phinney
-- vadim gavrilov vadim...@gmail.com wrote (on Tuesday, 24 February 2009, 03:02 PM +0200): Just a general questions, Why isn't there a Peer-to-Peer Technical Support forums for the Zend Framework? I mean the mailing list is ok and we get our qeustions answered but having some kind of a forum

Re: [fw-general] Zend Framework Support Forums

2009-02-24 Thread Matthew Weier O'Phinney
-- Cristian Bichis cont...@zftutorials.com wrote (on Tuesday, 24 February 2009, 03:10 PM +0200): Actually there is already a ZF forum and many of the people from here are also on forum. Check www.zfforums.com Note, however, that this is an unofficial venue, and most of us on the internal

RE: [fw-general] Base Controller convenience methods

2009-02-24 Thread O'BRIEN, Steven X
This might sound trivial but an advantage of using base controllers is that you get code completion using eclipse or zend studio. Do you get code completion when using action helpers? For example it would be great if you could go $this-_helper-[List of all available helpers] -Original

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Matthew Weier O'Phinney
-- O'BRIEN, Steven X steven.x.obr...@airbus.com wrote (on Tuesday, 24 February 2009, 02:23 PM -): This might sound trivial but an advantage of using base controllers is that you get code completion using eclipse or zend studio. Do you get code completion when using action helpers? For

[fw-general] Re: Zend Framework Support Forums

2009-02-24 Thread Colin Guthrie
'Twas brillig, and Matthew Weier O'Phinney at 24/02/09 13:40 did gyre and gimble: -- vadim gavrilov vadim...@gmail.com wrote (on Tuesday, 24 February 2009, 03:02 PM +0200): Just a general questions, Why isn't there a Peer-to-Peer Technical Support forums for the Zend Framework? I mean the

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread till
On Tue, Feb 24, 2009 at 4:48 PM, Matthew Weier O'Phinney matt...@zend.com wrote: -- O'BRIEN, Steven X steven.x.obr...@airbus.com wrote (on Tuesday, 24 February 2009, 02:23 PM -): This might sound trivial but an advantage of using base controllers is that you get code completion using

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Jake McGraw
Steven: To get code completion do something like: /** * @var MyCustomHelper */ protected $myCustomHelper; ... public function init() { ... $this-myCustomHelper = $this-_helper-myCustomHelper; ... } using the @var notation will allow Eclipse to expand any reference. - jake On Tue, Feb

RE: [fw-general] Base Controller convenience methods

2009-02-24 Thread O'BRIEN, Steven X
Hi Jake, Ok this is getting fussy. But we are finding that despite there being pre written classes people still write helpers that already exist. Because they don't know they exist. The Zend framework has a lot of files. Combine these with your own project specific files and you have a lot

Re: [fw-general] Base Controller convenience methods

2009-02-24 Thread Jason Webster
There's nothing stopping you from adding custom autocomplete rules to Eclipse for your team members. In fact, you'd have to if you want to achieve that level of functionality. The helper's are lazy loaded through a broker system which relies on magic methods, so there's no way eclipse can

Re: [fw-general] pure-PHP BigInteger support

2009-02-24 Thread Ralph Schindler
How much work on top of bcmath and the pecl/big_int is this kind of feature. Also, out of curiosity- what are the use cases for big int? I also presume that the implementation would have to take 64bit machines into account? -ralph On 2/17/09 6:06 PM, zelnaga zeln...@gmail.com wrote:

[fw-general] mapping ArrayCollection with Zend_Amf_Server

2009-02-24 Thread Darby Felton
Hi all, When I pass an instance of one of our ActionScript value objects (ContactVO) to the server, I am getting the following error from Zend_Amf_Server: Unable to parse null body data flex.messaging.io.ArrayCollection mapped class is not defined In the ContactVO are several properties

[fw-general] Linux + XAMPP + Zend Framework

2009-02-24 Thread tirengarfio
Hi, any tutorial for installing Zend on XAMPP and Linux? Ciao -- View this message in context: http://www.nabble.com/Linux-%2B-XAMPP-%2B-Zend-Framework-tp22188102p22188102.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Zend_Search_Lucene field not found

2009-02-24 Thread Jean L
Here it is. Greatly appreciate your kind help. - ?php require_once 'Zend/Search/Lucene.php'; require_once 'Zend/Search/Lucene/Document/Html.php'; if(is_dir(/local/clien/www/html_index/an_index) == 1){ $index

Re: [fw-general] Linux + XAMPP + Zend Framework

2009-02-24 Thread vadim gavrilov
There are no specific installation instructions for XAMPP, just download the source code, add it into your web directory (mine is c:/wamp/www) and make sure that directory exists in the PHP include paths. You can see more instructions here:

[fw-general] Acl Questions

2009-02-24 Thread Ehask71
I have an app I am working on and need some help understanding the Docs. $acl-allow('staff', 'member', array('edit', 'submit', 'revise')); This allows staff access to member resource but where do I set privileges like edit,submit,revise?? I have read and reread the ZF Docs on Acl. I must be

Re: [fw-general] Some widget issues

2009-02-24 Thread dele454
I AM GLAD TO SAY I HAVE FINALLY SORTED THIS LINGERING ISSUE OUT!! What i basically did was a combination of what Rob suggested and some changes on my side. What i did is to change add baseUrl() to all my assets links (css+ images etc) and changed the layout script for those pages behaving badly

Re: [fw-general] how to determine if a column exists in a table (not a row)

2009-02-24 Thread Jason Webster
I believe that something along the lines of: in_array($colName, $this-info('cols') Will get you exactly what you're looking for. On 24/02/2009 4:18 PM, Alex Howansky wrote: If I have an instance of a Zend_Db_Table_Row object, I can determine if a certain column exists in that row by way of

Re: [fw-general] Acl Questions

2009-02-24 Thread Ehask71
Thx Matthew, I guess I should have clarified. My main question was in regards to Modules and I didnt even mention it. My structure is Default Module Index About Contact /Member Directory Profile Index How do I declare the resources in a Module so I can then assign privleges??

[fw-general] Zend Framework 1.8

2009-02-24 Thread armandop
Hi everyone, Does anyone know when 1.8 is due out or possibly a candidate release? Much Appreciated Armando Padilla -- View this message in context: http://www.nabble.com/Zend-Framework-1.8-tp22197139p22197139.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Zend Framework 1.8

2009-02-24 Thread vadim gavrilov
1.7.6 is the next version i think. On Wed, Feb 25, 2009 at 8:39 AM, armandop armando_padilla...@yahoo.comwrote: Hi everyone, Does anyone know when 1.8 is due out or possibly a candidate release? Much Appreciated Armando Padilla -- View this message in context:

Re: [fw-general] Zend Framework 1.8

2009-02-24 Thread armandop
Hi vince. Yea your right. Just wanted to know if there was a date for the 1.8 release? I read somewhere that it was slated for early 2009? vince. wrote: 1.7.6 is the next version i think. On Wed, Feb 25, 2009 at 8:39 AM, armandop armando_padilla...@yahoo.comwrote: Hi everyone,

Re: [fw-general] Zend Framework 1.8

2009-02-24 Thread vadim gavrilov
I don't think it should be that long before it's release as 1.8 is feature complete in the incubator. On Wed, Feb 25, 2009 at 8:44 AM, armandop armando_padilla...@yahoo.comwrote: Hi vince. Yea your right. Just wanted to know if there was a date for the 1.8 release? I read somewhere that it

Re: [fw-general] Zend Framework 1.8

2009-02-24 Thread Cristian Bichis
Mid of march for 1.8 release according to talks into #zftalk... -- Best regards, Cristian Bichis www.zftutorials.com | www.zfforums.com | www.zftalk.com | www.zflinks.com I don't think it should be that long before it's release as 1.8 is feature complete in the incubator. On Wed, Feb 25,

Re: [fw-general] Zend Framework 1.8

2009-02-24 Thread Thomas Weidner
I don't think so... Incubator is for unfinished and unvalidated components. New releases are always build from trunk. Greetings Thomas - Original Message - From: vadim gavrilov vadim...@gmail.com To: armandop armando_padilla...@yahoo.com Cc: fw-general@lists.zend.com Sent: Wednesday,