Re: [fw-general] Router Help?

2009-11-02 Thread Tom Printy
Hello, I got my route to work however If I add two routes to a controller only the last one added is evaluated. Is this the intended behavior? Thanks -Tom Printy Tom Printy wrote: Hello, I am trying to get some routes to work and having some troubles I have a couple routes defined like

[fw-general] Router Help?

2009-10-28 Thread Tom Printy
/index.php(26): Zend_Application-run() #4 {main} Request Parameters: array ( 'controller' = 'elgin', 'action' = 'il', 'garage' = 'index', 'module' = 'default', ) Can anyone offer any suggestions? Thanks -Tom Printy

Re: [fw-general] Router Help?

2009-10-28 Thread Tom Printy
' = 'index', 'module' = 'default', ) Can anyone offer any suggestions? Thanks -Tom Printy

Re: [fw-general] Good examples of large, complex web apps written in ZF

2009-04-17 Thread Tom Printy
Hi, I wrote this using Zend http://zfurl.us/ You can download the code on google code. http://code.google.com/p/zfurl/ -Tom JAGJosh wrote: Hey there, I have worked my way through several tutorials and the Zend Framework in Action book. What I have not yet seen, however, is a complex

[fw-general] Zend Framework + Jquery Consultants

2009-04-07 Thread Tom Printy
Hello, I am involved with a Zend project that could use some additional help to complete. If you are a consultant looking for some additional work please contact me. Specific skills: Zend Framework JQuery PostgresSQL Thanks -Tom Printy

[fw-general] Zfurl.us

2009-03-15 Thread Tom Printy
Hello, I would like to announce my latest project buitl on the Zend Framework. I called zfurl for zend framework URL shortening. You can test it out at zfurl.us and you can sample the code at http://code.google.com/p/zfurl/ . I would appreciate comments or suggestions. Thanks -Tom Printy

Re: [fw-general] Zend_Service_PayPal Proposal

2009-02-03 Thread Tom Printy
Hi Guys, If you do implement the subscription model please don't forget the IPN https://www.paypal.com/cgi-bin/webscr?cmd=p/xcl/rec/ipn-intro-outside; This way when they unsubscribe the application will get a notification from PP and you can update the users subscription. -Tom Yannick

[fw-general] Application Ideas

2009-01-30 Thread Tom Printy
Hello Zenders, I was thinking about putting together some demo apps built on Zend. Does anyone know if there is a URL shortening app or invoice app build on top of the Zend framework? -Tom Printy

[fw-general] Logger produces warnings

2009-01-18 Thread Tom Printy
of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CST/-6.0/no DST' instead in /var/www/hhcpo/library/Zend/Log.php on line 138 How can I turn this off or disable this message? Thanks -Tom Printy

Re: [fw-general] Logger produces warnings

2009-01-18 Thread Tom Printy
Thanks. This cleared it all up. I appreciate the response. -Tom On Sun, 2009-01-18 at 19:24 +0100, till wrote: On Sun, Jan 18, 2009 at 7:03 PM, Tom Printy tpri...@mail.edisonave.net wrote: Hi Everyone, When using Logger I get the following in my views: Strict Standards: date

RE: [fw-general] DB connection params

2008-06-30 Thread Tom Printy
throw new Exception('Fatal Error : Unable to load the Adaptater', $e); } Kind regards, Guillaume BABIK INTERNIM 74, rue Baudin 92300 LEVALLOIS FRANCE Tel/Fax : 01.40.87.11.20 Mobile : 06.80.21.90.29 http://www.internim.com -Message d'origine- De : Tom Printy [mailto

Re: [fw-general] DB connection params

2008-06-30 Thread Tom Printy
Thanks again I am just seeking the Best Practices while building my application. Thanks -Tom On Mon, 2008-06-30 at 10:43 -0400, Matthew Weier O'Phinney wrote: -- Tom Printy [EMAIL PROTECTED] wrote (on Monday, 30 June 2008, 09:19 AM -0500): Thanks this is exactly what I was looking

[fw-general] DB connection params

2008-06-28 Thread Tom Printy
' = 'localhost', 'username' = 'postgres', 'password' = '', 'dbname' = '' ); $DB = Zend_Db::factory('pdo_pgsql', $params); Thanks -Tom Printy