Re: [fw-general] Zend_XmlRpc_Server & Controller

2008-08-16 Thread Paolav
Hi there I am using XML-RPC to upload an image to the server - using base64. On my Windows vista box it works fine. However, when testing on the remote, limux box I am getting a faultcode 631 error (Php 5.2.6). I have tried two alternative base64 functions, both fail with the same fault code, wh

Re: [fw-general] Zend_Form_Element_File with new Zend_File + ini config

2008-08-16 Thread Marko Korhonen
Ok, I seem to have same problem with new Captcha element. It works fine if I make it in code, but if i use .ini config style, it does not work. br, Marko -- View this message in context: http://www.nabble.com/Zend_Form_Element_File-with-new-Zend_File-%2B-ini-config-tp19009432p19012919.html Se

Re: [fw-general] API Docs

2008-08-16 Thread Marco
Hi Matthew I've filed an issue http://framework.zend.com/issues/browse/ZF-3973 and have also attached some patch files with some fixes. If someone could check these and apply them if approved and let me know if you want me to continue with fixing some of the other components as well. Regards Mar

Re: [fw-general] Dojo example in docs broken?

2008-08-16 Thread Matthew Weier O'Phinney
-- darren <[EMAIL PROTECTED]> wrote (on Saturday, 16 August 2008, 08:45 AM -0500): > I am trying to follow the example on this page. > > It looks like the registerModulePath() expects 2 parameters, $module and > $path. But, the example only provides 1. > > $this->dojo()->enable() > >

Re: [fw-general] Dojo example in docs broken?

2008-08-16 Thread Matthew Weier O'Phinney
-- darren <[EMAIL PROTECTED]> wrote (on Saturday, 16 August 2008, 08:45 AM -0500): > I am trying to follow the example on this page. > > It looks like the registerModulePath() expects 2 parameters, $module and > $path. But, the example only provides 1. > > $this->dojo()->enable() > >

[fw-general] Dojo example in docs broken?

2008-08-16 Thread darren
I am trying to follow the example on this page. It looks like the registerModulePath() expects 2 parameters, $module and $path. But, the example only provides 1. $this->dojo()->enable() ->setDjConfigOption

Re: [fw-general] API Docs

2008-08-16 Thread Marco
> If you could, please file an issue in the tracker with a list of items > that should be fixed. Sure will do Regards Marco

Re: [fw-general] API Docs

2008-08-16 Thread Matthew Weier O'Phinney
-- Marco <[EMAIL PROTECTED]> wrote (on Saturday, 16 August 2008, 07:47 AM +0200): > I've been working on getting the phpdoc working with my local copy of ZF 1.6 > and I notice there are quite a lot of warnings and a few errors in the current > docs. Is it worth fixing these? > > Some of the more c

Re: [fw-general] Zend_Form_Element_File

2008-08-16 Thread Matthew Lurz
This was really just a matter of ignorance on my part and of not reading the documentation closely enough. I think a getFile method would be convenient but not entirely necessary. thomasW wrote: > > As I said... It's Matthews component, not mine. :-) > > I would expect a getFile Method to retu

Re: [fw-general] Zend_Form_Element_File with new Zend_File + ini config

2008-08-16 Thread Marko Korhonen
Hi Thomas, Here's my code: $form_config = new Zend_Config_Ini($this->_application_path ."config/forms/user.ini", "user_form"); $this->_form = new Zend_Form($form_config->form); if ($this->getRequest()->isPost()) { if ($t

Re: [fw-general] Zend_Form_Element_File with new Zend_File + ini config

2008-08-16 Thread Thomas Weidner
Hy Marko, Please give us some example code. Normally I would say, that you forgot to validate the form, or the specified directory does not exist. Files are transferred (copied) AFTER the validation was successfull. Greetings Thomas Weidner, I18N Team Leader, Zend Framework http://www.thomasw

[fw-general] Zend_Form_Element_File with new Zend_File + ini config

2008-08-16 Thread Marko Korhonen
Hi, I have my form defined in onw ini file. I added following lines to use the new Zend_File component: form.enctype = "multipart/form-data" and: form.elements.picture.type = "file" form.elements.picture.options.required = false form.elements.picture.options.destination = "/path/to/my/userspi