[fw-general] [apc-error] Cannot redeclare class

2008-10-03 Thread Todd Wolaver
I've just updated my Zend Framework library on my test server to the latest SVN head and now I'm getting an APC error: [apc-error] Cannot redeclare class zend_dojo I've traced back the error and it starts with Revision 11629 which addressed ZF-4458 (Analyse bottlenecks in Zend_Loader and

[fw-general] Depreciated fetchAll()/fetchRow() functionality

2008-07-21 Thread Todd Wolaver
With all the talk of a Zend_Deprecation and the evolution of the framework in general, I have a question about Zend_DB and fetchAll()/ fetchRow(). The documentation states that the depreciated usage (of not using a Zend_Db_Table_Select object) of fetchRow() and fetchAll() will continue to

Re: [fw-general] Dojo library Layout

2008-07-18 Thread Todd Wolaver
I currently use a layout similar to your second option and I keep my Dojo modules in their own directory outside of the dojo source. - application - bootstrap - htdocs - images - scripts - dojo - dijit - dojo - dojox

Re: [fw-general] Dojo library Layout

2008-07-18 Thread Todd Wolaver
public/js would be a js folder under your server's document root (html in your case). You can in reality put the dojo source anywhere under the document root (pulbic folder) and set the location in the dojo view helper. i.e. $view-dojo()-setLocalPath('/js/dojo/dojo.js')

Re: [fw-general] Recent Component Promotions

2008-07-17 Thread Todd Wolaver
Hi Matthew, Thanks for all the hard and long work on the Dojo implementation! I've been playing with the Dojo view helper and Zend_Dojo_Form it all looks great and easy to implement. I did find a minor issue in the view helper related to adding module paths. The generated code doesn't

Re: [fw-general] Recent Component Promotions

2008-07-17 Thread Todd Wolaver
buttons in my standard forms seem to be disabled in a dojoType = dijit.form.Form Thanks, Todd On Jul 17, 2008, at 12:04 PM, Matthew Weier O'Phinney wrote: -- Todd Wolaver [EMAIL PROTECTED] wrote (on Thursday, 17 July 2008, 11:17 AM -0500): I've been playing with the Dojo view helper

[fw-general] Extending Zend_Auth

2008-06-26 Thread Todd Wolaver
I'm not sure as to the best way to go about this... I'm building an application that will authenticate different types of users (ie system admins and customers) and they are maintained in different database tables. I'd like to have each type to use a different storage namespace. What

[fw-general] Multiple Auth Logins

2007-10-11 Thread Todd Wolaver
Hello, I have implemented Zend_Auth for admin users to login and I'm checking authentication and ACLs in a preDispatch plugin. Now I need to authenticate a different type of user which has nothing to do with the admins and uses a totally different storage engine and auth adapter. I'm

Re: [fw-general] Multiple Auth Logins

2007-10-11 Thread Todd Wolaver
')); } return self::$_instance; } } On Oct 11, 2007, at 9:15 PM, Michael B Allen wrote: On 10/11/07, Todd Wolaver [EMAIL PROTECTED] wrote: Hello, I have implemented Zend_Auth for admin users to login and I'm checking authentication and ACLs in a preDispatch plugin. Now I need to authenticate

[fw-general] Zend_DB findManyToManyRowset issue in latest snapshot (after commit 6251)

2007-09-12 Thread Todd Wolaver
Hello, I just checked out the latest code from Trunk and now I'm getting errors within my application related to Zend_DB and findManyToManyRowset. I've tried the samples in the documentation, http://framework.zend.com/manual/en/zend.db.table.relationships.html The sample code works.

[fw-general] Custom Error Pages

2007-05-17 Thread Todd Wolaver
/htdocs/index.php (66): Zend_Controller_Front-dispatch() #4 {main} thrown in /var/www/ html/application/modules/default/controllers/IndexController.php on line 25 Thanks, Todd - Todd Wolaver [EMAIL PROTECTED] 1505 Park PL., Apt 20 College Station, TX 77840

Re: [fw-general] Invoke Arg in Plugin

2007-05-07 Thread Todd Wolaver
Yes, I've just run into this myself and I ended up using the Zend_Controller_Front::getInstance() i.e. $this-_config = Zend_Controller_Front::getInstance()-getParam ('config'); Todd On May 7, 2007, at 2:10 PM, Maurice Fonk wrote: Because the front controller follows a singleton pattern,

Re: [fw-general] _forward() Question

2007-05-05 Thread Todd Wolaver
($this-_getParam('divId'), $this- parse()); } Component - Todd Wolaver [EMAIL PROTECTED] 1505 Park PL., Apt 20 College Station, TX 77840 Phone: 979-739-3256 AIM: miribota MSN: [EMAIL PROTECTED] - On May 4, 2007, at 5:28 PM, Maurice

Re: [fw-general] _forward() Question

2007-05-05 Thread Todd Wolaver
whether there the request has been forwarded or not. Is this too short-sighted? MF Todd Wolaver wrote: Thanks Matthew, Unfortunately this will be a fairly large site with content managers managing the content URLs. In addition there could be several _forwards() from a single page