[fw-general] Accessible Captcha image

2009-08-11 Thread tony stamp
Hello I've been playing around with the zend_form_element_captcha (image) and have finally got it working, but have now been requested to provide an alternative or sound-based captcha for people who cannot see the image. I was wondering if anyone has used the zend captcha elements to create an

[fw-general] Calling Dojo

2009-08-11 Thread Naimesh.Trivedi (Gmail)
Hello ! What difference would be in performance, if using dojo in a class like : class Default_Form_Prjhead extends Zend_Dojo_Form and declaring all dojo elements below it against directly using in view - form.phtml as div class=formRow label for=firstNameFirst / Last Name:

Re: [fw-general] Zend Tool errors on Windows after upgrading to 1.9

2009-08-11 Thread Ralph Schindler
Please checkout the 1.9.1 packages, I think there is a fix in place for this, if not PLEASE let me know.. The issue is: http://framework.zend.com/issues/browse/ZF-7465 and http://framework.zend.com/issues/browse/ZF-7338 Thanks! -ralph admirau wrote: Fix for this bug is described here:

Re: [fw-general] Session save path causes exception

2009-08-11 Thread Ralph Schindler
Do you have auto_start set to 1 on the server by chance? -ralph Joó Ádám wrote: Hi, I have an action and a view helper both checking Zend_Auth::getInstance()-hasIdentity() and if it’s true, then setting $this-session to / returning the object with user data, respectively. After setting

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread Ralph Schindler
I for one can say that the road to 2.0 will not be a short road. Lots of considerations will go into 2.0, especially since we've learned SO MUCH from the entirety of the 1.0 branch. There are plenty of components that simply put, need a rewrite. Reasons for rewrite could range far and wide:

Re: [fw-general] Session save path causes exception

2009-08-11 Thread Joó Ádám
Do you have auto_start set to 1 on the server by chance? No, I’ve checked php.ini. Any other idea? Thanks, Ádám

Re: [fw-general] Unit Testing ZFW

2009-08-11 Thread Ralph Schindler
Are you testing trunk? Are you using the standard TestConfiguration.php.dist file? Are you enabling any exotic components that are disabled by default? Where is it dying? I would try commenting out the test run for the larger components first (Zend_Pdf, Zend_Memory, Zend_Search) to see if

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread Mario Guenterberg
On So, Aug 09, 2009 at 04:52:55 -0400, mbneto wrote: Hi Vincent, I think it is too speculative to talk about a 5.3 only. A few days ago Mathew mentioned that no major distro (at least the 'enterprise') are using the 5.3 version so I think that this will be a bad move, unless they do not

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread Michael Kimsal
While distro/php versions probably will always be a factor to some degree, putting too much weight on that as a deciding factor will lead to stagnation. RHEL and CentOS, arguably the most 'enterprise' of Linux distros, still only officially support PHP 5.1.6, IIRC. Yes, you can upgrade from

[fw-general] Zend_Form - Adding CSS classnames to multiCheckbox inputs

2009-08-11 Thread Hector Virgen
Hello, I am building a form that uses the multiCheckbox form element. I need to add class names to specific checkboxes for javascript purposes. Is there a way to do that? I tried this, but it ended up adding the class name foo to all of the checkboxes: $this-addElement('multiCheckbox',

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread micah
ZF is already past 5.1.6 and has been since 1.7. I don't think RHEL or CentOS should play any role in the decision as it's been 3 years since they updated. Ubuntu will probably ship PHP 5.3 as default in the next LTS (probably 10.04). Not so sure about Debian's next release. dotdeb.org

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread Ralf Eggert
Hi, Ralph Schindler schrieb am 11.08.2009 17:40: That said, if you got free time, fill in the 2.0 pages under ZFDEV if you can think of something you'd like to see implemented in 2.0 since a bc break is underway-- its always good to take down our brainstorming notes, our what ifs when they

Re: [fw-general] Zend Framework 2.0

2009-08-11 Thread Ralf Eggert
Hi, to keep it short and simply. mi...@onshore.com schrieb am 11.08.2009 20:20: I think it would be great if we can take advantage of the functionality of PHP 5.3 in ZF 2.0. From my point of view, ZF 2.0 does not make any sense if it doesn't depend on the new features of PHP 5.3. If it really

[fw-general] SmartClient for PHP

2009-08-11 Thread consultorpc
Hello, We are releasing a new project called SmartClientPHP ( http://smartclientphp.com SmartClient for PHP ) under LGPL license. It is designed to help PHP programmers that use http://smartclient.com SmartClient Ajax Ria System , allowing them to write SC code faster and making sure that

Re: [fw-general] SmartClient for PHP

2009-08-11 Thread Christoph Dorn
This is great! To what extent are the smart client API and components supported? Christoph We are releasing a new project called SmartClientPHP ( SmartClient for PHP http://smartclientphp.com ) under LGPL license. It is designed to help PHP programmers that use SmartClient Ajax Ria System

[fw-general] Re: downloadable api doc

2009-08-11 Thread mikaelkael
Hi, You have now at http://www.mikaelkael.fr/Zend-Framework-1-9-x-documentation.html the Reference Guide the API doc in CHM format (updated for 1.9.1 release). Mickael. Саша Стаменковић a écrit : Hm.. phpdoc -o CHM:default:default -d srcpath -t destpath -ti title will create PHP doc in

[fw-general] Where is my Zend_Config???

2009-08-11 Thread christal
From the examples in the document, it looks like Zend_Config is initialized in the root index.php file. Now how do I access this instance from my controller? class FooController extends Zend_Controller_Action { public function indexAction() { // I need my $config } } --

Re: [fw-general] Where is my Zend_Config???

2009-08-11 Thread Hector Virgen
There are a couple ways to store the config. In the past I've stored it in Zend_Registry, which can be pulled out later at any time: // in bootstrap Zend_Registry::set('config', $config); // in controller $config = Zend_Registry::get('config'); Another option is to store it directly in the front

Re: [fw-general] Zend Dojo Dijit layout issue using Zend_Dojo_View_Helper

2009-08-11 Thread jollyblume
Hi, dijit.form.button displays properly, but none of the dijit.layout.xxx widgets display anything. my layout.phtml file looks like this: ?php echo $this-doctype(); ? html xmlns=http://www.w3.org/1999/xhtml; head ?php echo $this-headMeta(); echo $this-headTitle(); echo