Re: [fw-general] Working progressbar demo

2008-11-29 Thread Isaak Malik
Hello again Ben, It's not caused by my antivirus software as far as I know because I've disabled it while trying. Using Nod32 by the way. I had a suspicion that having output_buffering enabled might have caused the "Catched Exception: undefined" error but I just gave it a try while having it disa

Re: [fw-general] Working progressbar demo

2008-11-29 Thread Ben Scholzen 'DASPRiD'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sounds fine to me, do you have some specific Virus scanner like BitDefender running? I know that BitDefender with default settings makes problems with the JsPush adapter. ... : ___ _ ___ ___ ___ _ ___: : | \ /

Re: [fw-general] Working progressbar demo

2008-11-29 Thread Isaak Malik
Firefox 3.0.4 on Win XP Apache 2, mod_php. On Sat, Nov 29, 2008 at 12:17 AM, Ben Scholzen 'DASPRiD' <[EMAIL PROTECTED]>wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Which exact OS / Browser are you using. I tested it on several browsers > and on several systems. > .

Re: [fw-general] Zend Auth: Advanced Usage By Example

2008-11-29 Thread Jason Webster
Not really... SELECT 0 = "0" // true SELECT FALSE = "0" // true SELECT FALSE = 0 // true Bruno Friedmann wrote: Hi Just a word : be carefull with 0/1 TRUE/FALSE and the type of your column and the database used. I suspect if you write you $authAdapter = new Zend_Auth_Adapter_DbTable($db, 'Me

Re: [fw-general] Zend Auth: Advanced Usage By Example

2008-11-29 Thread Bruno Friedmann
Hi Just a word : be carefull with 0/1 TRUE/FALSE and the type of your column and the database used. I suspect if you write you $authAdapter = new Zend_Auth_Adapter_DbTable($db, 'Members', > 'Email', 'Password', 'AND IsActive != "0"'); AND IsActive != 0 this would work ... :-) As another advice

Re: [fw-general] Zend/Transport/Sendmail.php not auto-included - Wanted behavior?

2008-11-29 Thread till
On Sat, Nov 29, 2008 at 1:09 AM, Tim Nagel <[EMAIL PROTECTED]> wrote: > You should take a look at the documentation for the Auto Loader. > > http://framework.zend.com/manual/en/zend.loader.html (the quick start guide > has examples on it as well) I second this, use autoload and the Zend_Loader. I

Re: [fw-general] Best practice for forms, models, validators and filters?

2008-11-29 Thread Ralf Eggert
Hi Matthew, > I typically define forms explicitly as discrete classes -- and the same > for elements. What I would suggest is that if there are common elements > you use across multiple forms that will be using the same > validators/filters/decorators/etc... then create a custom element: Yep, tha