Re: [fw-general] Zend Model with Webservices (Soap/Rest)

2009-07-28 Thread Tom Graham
Hi Matthew, After reading your slides from DPC a while ago I've been looking into the service layer pattern and have done al ittle refactoring in a project I'm working on. One thing I have been wondering is do you ever access your mapper directly within a controller (i.e. editing a record and

[fw-general] Bulletin / discussion board

2009-07-28 Thread Anders Gunnarsson
Have you seen a good ZF based bullitin/discussion board? Preferably open source regards Anders

Re: [fw-general] Zend Model with Webservices (Soap/Rest)

2009-07-28 Thread Don Bosco van Hoi
Tom Graham-2 wrote: Hi Matthew, After reading your slides from DPC a while ago I've been looking into the service layer pattern and have done al ittle refactoring in a project I'm working on. One thing I have been wondering is do you ever access your mapper directly within a controller

Re: [fw-general] Zend Model with Webservices (Soap/Rest)

2009-07-28 Thread Don Bosco van Hoi
I did not mean Data Access Object but Data Transfer Object. Btw where is the difference between the data access object and the data mappern? Don Bosco van Hoi wrote: Tom Graham-2 wrote: Hi Matthew, After reading your slides from DPC a while ago I've been looking into the service

Re: [fw-general] Zend Studio 7.0 Zend Framework webinar tomorrow!

2009-07-28 Thread Joseph Crawford
I agree I would also love to be able to download these Webinars and go through them on my own time.. Anyone know when and if they will be released online? Joseph Crawford

Re: [fw-general] Zend Studio 7.0 Zend Framework webinar tomorrow!

2009-07-28 Thread Matthew Weier O'Phinney
-- Joseph Crawford i...@josephcrawford.com wrote (on Tuesday, 28 July 2009, 07:25 AM -0400): I agree I would also love to be able to download these Webinars and go through them on my own time.. Anyone know when and if they will be released online? Typically they're released around a week

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

[fw-general] Image captcha, remove files

2009-07-28 Thread PHPScriptor
Hello, Maybe a simple question, but I never did this before. How can I remove the old image-captcha's from my directory? How can this be done efficiently? Can this be done with Zend Framework? Or do I need to run a cronjob every night? ... - visit my website at http://www.phpscriptor.com/

[fw-general] Image captcha, remove files

2009-07-28 Thread PHPScriptor
Hello, Maybe a simple question, but I never did this before. How can I remove the old image-captcha's from my directory? How can this be done efficiently? Can this be done with Zend Framework? Or do I need to run a cronjob every night? ... - visit my website at http://www.phpscriptor.com/

Re: [fw-general] Image captcha, remove files

2009-07-28 Thread Tim Fountain
2009/7/28 PHPScriptor cont...@phpscriptor.com Maybe a simple question, but I never did this before. How can I remove the old image-captcha's from my directory? I believe the component does this automatically. You can control how frequently it does so by changing the garbage collection

[fw-general] Using url() view helper with regex route

2009-07-28 Thread Sergio Rinaudo
Dear list, I am using some regexRoutes and I need to use the url view helper. Unfortunatelly, I get this error: Cannot assemble. Reversed route is not specified. I don't have any problem with normal routes. This is an example of the code I use: $this-url(array('1' = $myparam),'myregexroute')

Re: [fw-general] Image captcha, remove files

2009-07-28 Thread Carlton Gibson
Hi there, On 28 Jul 2009, at 13:41, PHPScriptor wrote: Maybe a simple question, but I never did this before. How can I remove the old image-captcha's from my directory? How can this be done efficiently? Can this be done with Zend Framework? Or do I need to run a cronjob every night? ...

Re: [fw-general] Image captcha, remove files

2009-07-28 Thread Carlton Gibson
On 28 Jul 2009, at 13:55, Tim Fountain wrote: 2009/7/28 PHPScriptor cont...@phpscriptor.com Maybe a simple question, but I never did this before. How can I remove the old image-captcha's from my directory? I believe the component does this automatically. You can control how frequently

RE: [fw-general] Using url() view helper with regex route

2009-07-28 Thread Sergio Rinaudo
I've Also tried using the third parameter of Zend_Controller_Router_Route_Regex, to map the variable name $route = new Zend_Controller_Router_Route_Regex( [...], [...], array( 1 = 'myvar' )) $router-addRoute('myregexroute', $route); then in a view script $this-url(array('myvar'' =

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this something I could use? I managed to get this working in the end, by modularising the whole application - ie - I created a default module, plus a module for each language, as suggested

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread Matthew Weier O'Phinney
Sending a given message once to the list will suffice; 10 times is overkill... -- James Hargreaves james.hargrea...@qoobic.co.uk wrote (on Tuesday, 28 July 2009, 05:19 AM -0700): James Hargreaves wrote: I keep seeing talk of modules on some ZF posts, how does this work and is this

Re: [fw-general] Using url() view helper with regex route

2009-07-28 Thread Brenton Alker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sergio Rinaudo wrote: Dear list, I am using some regexRoutes and I need to use the url view helper. Unfortunatelly, I get this error: Cannot assemble. Reversed route is not specified. When defining your route, you need to provide a reverse

[fw-general] Zend_Captcha_Figlet leaves junk in the session file

2009-07-28 Thread ghalib
Hi all My question concernes Zend_Captcha (Zend_Captcha_Figlet to be exact). Rendering the captcha is no problem - I get a fine ASCII image on my form. This is my code: // in a form class (...) $captchaAdapter = new Zend_Captcha_Figlet(); $captchaAdapter-setWordlen(6); $captcha = new

Re: [fw-general] Front Controller Plugin Problems

2009-07-28 Thread James Hargreaves
Thanks for your help, suffice to say I didn't send it 10 times, I submitted it just the once... Matthew Weier O'Phinney-3 wrote: Sending a given message once to the list will suffice; 10 times is overkill... -- James Hargreaves james.hargrea...@qoobic.co.uk wrote (on Tuesday, 28 July

Re: [fw-general] Zend_Form and Date validator

2009-07-28 Thread markbelanger1985
Try extending the validation class and override the $_messageTemplate variable. class My_Validate_NotEmpty extends Zend_Validate_NotEmpty { protected $_messageTemplates = array( parent::IS_EMPTY = It can't be empty!, ); } Then add the class prefix and path to the form so the

Re: [fw-general] Zend_Form and Date validator

2009-07-28 Thread holografix .
Hi Thank you for the suggestion. I had already thought about extending the validation class. I just want to understand that behavior. cheers holo 2009/7/28 markbelanger1985 mbelan...@osz.com Try extending the validation class and override the $_messageTemplate variable. class

Re: [fw-general] Zend_Form and Date validator

2009-07-28 Thread holografix .
Hi I found my mistake. My fault. Don't need to extend the validation class. Just need to change the order of the validatord. Cheers holo 2009/7/28 markbelanger1985 mbelan...@osz.com Try extending the validation class and override the $_messageTemplate variable. class My_Validate_NotEmpty

[fw-general] Zend Framework 1.9.0 Release Candidate 1 now available

2009-07-28 Thread Matthew Weier O'Phinney
The Zend Framework team announces the immediate availability of the first Release Candidate for 1.9.0: http://framework.zend.com/download/latest Note that because these packages are not stable, they will not be found on the zend.com CDN; please scroll to the bottom of the above page to find

[fw-general] Planet Zend Framework

2009-07-28 Thread Tom Graham
Hi, I noticed Zend have registered various planet domain names for Zend Framework. Domain name: PLANETZF.COM Registrant: Zend Technologies Ltd 12 Abba Hillel St. Ramat-Gan, Israel 52506 Does anyone from Zend know when we're going to see the site up and running? I for one would be interested in

[fw-general] Zend_Controller_Router_Route_Hostname Problem - Please help

2009-07-28 Thread drj201
Hello everyone, I am trying to create a route within my application based upon the hostname of the request. Keeping this as simple as possible... I have two modules, a default module (domain1) and another module (domain2). http://www.domain1.com is the ZF default application module and works