RE: [fw-general] Zend_Locale

2007-02-22 Thread Ian Warner
-Original Message- From: Thomas Weidner [mailto:[EMAIL PROTECTED] Sent: 22 February 2007 14:20 To: Ian Warner; fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Locale My question though pointed at the fact that I have these three digit elements mixed in within the 2 char

[fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
i'm trying to figure out how to upload a file through Zend Framework. If have tryed with no luck to upload using Zend_Http_Client. Can anyone give me a practical example? Thank You!

Re: [fw-general] File Upload

2007-02-22 Thread Craig Slusher
Section 13.2.4 File Uploads http://framework.zend.com/manual/en/zend.http.client.advanced.html On 2/22/07, Romeo-Adrian Cioaba [EMAIL PROTECTED] wrote: i'm trying to figure out how to upload a file through Zend Framework. If have tryed with no luck to upload using Zend_Http_Client. Can anyone

Re: [fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
hey, following that exact page i have tried to make a simple picture upload script but with no success. can someone point me in the right direction? thanks! On 2/22/07, Craig Slusher [EMAIL PROTECTED] wrote: Section 13.2.4 File Uploads

[fw-general] Post-1.0 release schedule

2007-02-22 Thread Matthew Ratzloff
I guess this is primarily a question for Bill. Will the post-1.0 release schedule match the pace of the pre-1.0 release schedule? Meaning, once 1.0 is released, will we see 1.1 about a month later? And 1.2 about a month after that? Just curious, -Matt

Re: [fw-general] Post-1.0 release schedule

2007-02-22 Thread Kevin McArthur
Further, will post 1.0 releases maintain a compatible interface between major versions? Kevin - Original Message - From: Matthew Ratzloff [EMAIL PROTECTED] To: fw-general@lists.zend.com Sent: Thursday, February 22, 2007 11:38 AM Subject: [fw-general] Post-1.0 release schedule I

Re: [fw-general] File Upload

2007-02-22 Thread Michael Baerwolf
I just register the global $_FILES and then call it in the controller In the bootstrap Zend::register('files',$_FILES); Then an action in my image controller $files = Zend::registry('files'); copy($files['image_name']['tmp_name'],

[fw-general] 0.8 and isDispatched() non-object

2007-02-22 Thread Teemu Valimaki
Hi, great work with 0.8 release! I just downloaded it, tried to migrate from 0.7 and now I get the following fatal error Call to a member function isDispatched() on a non-object in /ZendFramework/library/Zend/Controller/Action.php on line 390. I checked Action.php and there's no such

RE: [fw-general] Post-1.0 release schedule

2007-02-22 Thread Bill Karwin
The objective of reaching 1.0 is so that we users of ZF can have some assurance that interfaces are more stable than they were during preview releases. Therefore all component developers will need to pay attention to backward-compatibility issues. Regarding release schedule, we haven't decided

Re: [fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
following Michael's sugestion here is what we've come out with. 1. a simple form with a browse button in the template file: form action=___URL___ method=post enctype=multipart/form-data input type=file name=pictn /form where ___URL___ is your actions URL 2. Register the global $_FILES in