RE: [fw-general] [ZF2] Set default encoding to ISO in Zend Framework 2

2012-10-22 Thread Vincent de Lau
depending on the session character set. I'm not sure how a UTF-8 to Latin1 mismatch will be handled though. See also: http://dev.mysql.com/doc/refman/5.5/en/charset-connection.html Regards, Vincent de Lau vinc...@delau.nl -- List: fw-general@lists.zend.com Info: http://framework.zend.com/archives

RE: [fw-general] ZFApp?

2010-11-24 Thread Vincent de Lau
From your URL: http://framework.zend.com/svn/framework/laboratory/Primitus/ Vincent de Lau vinc...@delau.nl -Oorspronkelijk bericht- Van: Mike A [mailto:mik...@hotmail.co.uk] Verzonden: woensdag 24 november 2010 17:29 Aan: fw-general@lists.zend.com Onderwerp: [fw-general] ZFApp? Saw

RE: [fw-general] How can I render a Zend_Barcode inside a html page?

2010-10-20 Thread Vincent de Lau
want somthing like img src=?php echo $this-action(array('controller' = 'barcode', 'action' = 'label', 'default'); ? alt=barcode / Vincent de Lau vinc...@delau.nl

RE: [fw-general] Re: [zf-contributors] Poll: Should underscore prefixing of non-public elements be dropped?

2010-08-13 Thread Vincent de Lau
-Oorspronkelijk bericht- Van: Matthew Weier O'Phinney [mailto:matt...@zend.com] Verzonden: vrijdag 13 augustus 2010 18:27 Aan: fw-general@lists.zend.com; zf-contribut...@lists.zend.com Onderwerp: Re: [fw-general] Re: [zf-contributors] Poll: Should underscore prefixing of non-public

RE: [fw-general] Team Development

2010-08-11 Thread Vincent de Lau
. Vincent de Lau vinc...@delau.nl

RE: [fw-general] Help with development of high traffic application (replication / media management) with ZF

2010-07-20 Thread Vincent de Lau
on the node on first access. I hope these few cents are helpful. Vincent de Lau vinc...@delau.nl

RE: [fw-general] Question about SQL (not ZF related, sorry)

2010-07-01 Thread Vincent de Lau
was so large, that creating a reduced set of columns with a subquery was actually beneficial. Vincent de Lau vinc...@delau.nl -Oorspronkelijk bericht- Van: Andrew Ballard [mailto:aball...@gmail.com] Verzonden: donderdag 1 juli 2010 17:36 Aan: Bill Karwin CC: fw-general@lists.zend.com

RE: [fw-general] .htaccess and Download Route Problem

2010-06-16 Thread Vincent de Lau
: Turn on the rewrite engine. If the requested file is a file (with size0) OR If the requested file is a symlink OR If the requested file is a directory Rewrite to itself (no rewrite) and stop rewriting ([L] = last) Rewrite all to index.php Vincent de Lau vinc...@delau.nl

RE: [fw-general] Unable to load under models from subdirectories

2010-06-04 Thread Vincent de Lau
or infra - Infra The models directory is being used as the base for Application_Model_, but all files and folder after that should match casing with the classname. Be aware that Application_Model_Mapper_ uses models/mappers as a base dir. It cost me an hour to figure that one out... Vincent de

[fw-general] Issue with preg in Zend_Db_Statement

2010-03-31 Thread Vincent de Lau
-7911 [2]), together with a patch. My problem is that I can't provide unit tests to prove my patches work and that I don't know all the specifics of every DBMS. I'd love to see someone spending some time on this issue, either by creating test cases or providing feedback. Thanks! Vincent de Lau

RE: [fw-general] Re: PDO or Mysqli?

2010-02-24 Thread Vincent de Lau
causes the problem. Vincent de Lau vinc...@delau.nl

RE: [fw-general] observe controller action

2009-12-02 Thread Vincent de Lau
be thin and use Models to do the work. I can suggest reading http://www.survivethedeepend.com/ for more information on the subject. Vincent de Lau vinc...@delau.nl -Original Message- From: tonystamp [mailto:tonyst...@hotmail.co.uk] Sent: Wednesday, December 02, 2009 12:34 PM To: fw

RE: [fw-general] Turn PHP errors/warnings/notices into exceptions

2009-09-24 Thread Vincent de Lau
('exceptionThrower'); You should check out: http://php.net/ErrorException It is an Exception type tailored to PHP's errors. Vincent de Lau vinc...@delau.nl

RE: [fw-general] mod_rewrite and Zend Framework

2009-09-22 Thread Vincent de Lau
de Lau vinc...@delau.nl -Original Message- From: howard chen [mailto:howac...@gmail.com] Sent: Tuesday, September 22, 2009 3:18 PM To: Zend Framework General Subject: [fw-general] mod_rewrite and Zend Framework Hello, I have a zend framework which has the following path: http

[fw-general] Issues with Zend_Db_Statement::_stripQuoted

2009-09-22 Thread Vincent de Lau
on the issue. Thanks, Vincent de Lau vinc...@delau.nl

RE: [fw-general] Chain default route

2009-08-14 Thread Vincent de Lau
I think that the default route is a Zend_Controller_Router_Route_Module route. It does some checking if a module exists. You use that as your $plainPathRoute. I suppose you can leave the constructor for this route empty. Vincent de Lau vinc...@delau.nl From: Sergio Rinaudo

RE: [fw-general] Zend Framework 2.0

2009-08-12 Thread Vincent de Lau
a small amount of time. I'd probably decide to skip 2.0 if it doesn't contain PHP 5.3 support. Vincent de Lau vinc...@delau.nl

RE: [fw-general] Zend Framework 2.0

2009-08-09 Thread Vincent de Lau
it would be a good idea to reinstate this page and add (preliminary) information about 2.0? Vincent de Lau vinc...@delau.nl From: Pádraic Brady [mailto:padraic.br...@yahoo.com] Sent: Sunday, August 09, 2009 3:53 PM To: admirau Cc: Zend Framework General Subject: Re: [fw-general] Zend

RE: [fw-general] Force full URL names

2009-03-20 Thread Vincent de Lau
. If they don't match, you could redirect to the assembled URL. Kind regards, Vincent de Lau vinc...@delau.nl -Original Message- From: fozzyuw [mailto:jmbertu...@gmail.com] Sent: Friday, March 20, 2009 4:06 PM To: fw-general@lists.zend.com Subject: [fw-general] Force full URL names

RE: [fw-general] routeShutdown firing before action stack ...?

2009-03-14 Thread Vincent de Lau
? If performance is the major issue, that might weigh up against the flexibility of such a system. It would be just a design choice and effort should be taken to improve the dispatcher or create a lighter dispatcher for 'secondary' content. Thanks for reading this anyway! Kind regards, Vincent de

RE: [fw-general] routeShutdown firing before action stack ...?

2009-03-14 Thread Vincent de Lau
-Original Message- From: Matthew Weier O'Phinney [mailto:matt...@zend.com] Sent: Saturday, March 14, 2009 3:30 PM -- Vincent de Lau vinc...@delau.nl wrote (on Saturday, 14 March 2009, 12:52 PM +0100): The mantra of use view helpers stems from the fact that in MVC, views

RE: [fw-general] how to write such route

2009-03-06 Thread Vincent de Lau
You could use a regular expression route, a custom route or you could a route that just catches /manage. Vincent de Lau vinc...@delau.nl From: Jacky Chen [mailto:jacky...@gmail.com] Sent: Friday, March 06, 2009 5:30 PM To: fw-general@lists.zend.com Subject: [fw-general] how to write

RE: [fw-general] Validating a person's name with Zend Validate

2009-01-08 Thread Vincent de Lau
upppercase character in their input, they probably did a better job than you would be doing and you better leave it alone. Exception might be ALL UPPERCASE input or even cAPS LOCK. Kind regards, Vincent de Lau vinc...@delau.nl [1] http://en.wikipedia.org/wiki/Tussenvoegsel From: guice

RE: [fw-general] Project Structure / Public directory

2009-01-06 Thread Vincent de Lau
in index.php are modified to find /application/ and /library/. I could see a justification for your solution, when you want your application to be able to be installed the recommended way. Kind regards, Vincent de Lau mailto:vinc...@delau.nl http://vincent.delau.nl From

RE: [fw-general] Project Structure / Public directory

2009-01-05 Thread Vincent de Lau
. Vincent de Lau vinc...@delau.nl From: Alan Wagstaff [mailto:awagst...@gmail.com] Sent: Monday, January 05, 2009 11:45 PM To: Zend Framework General Subject: [fw-general] Project Structure / Public directory Hi all, In most of the ZF tutorials I have read (ZF Quickstart, Rob's

RE: [fw-general] Zend Framework 1.7.2 is now available!

2008-12-23 Thread Vincent de Lau
Some days rest might be in place, releasing 1.7.1 again... ;) I suppose the message was announcing 1.7.2 as the subject suggests. Vincent de Lau vinc...@delau.nl -Original Message- From: Josh Team [mailto:josht...@gmail.com] Sent: Tuesday, December 23, 2008 8:46 PM To: Wil Sinclair

[fw-general] Thoughts about Zend_Workflow

2008-09-02 Thread Vincent de Lau
a proposal? Anybody has a major issue to address before starting a proposal? Kind regards, Vincent de Lau [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Thoughts-about-Zend_Workflow-tp19279619p19279619.html Sent from the Zend Framework mailing list archive at Nabble.com.

RE: [fw-general] IP calculations

2008-07-31 Thread Vincent de Lau
some other stuff (MAC, IPX) into Zend_Network_Adressing might be useful. Vincent de Lau [EMAIL PROTECTED]

RE: [fw-general] capture STDERR with Zend_Log

2008-07-30 Thread Vincent de Lau
. Vincent de Lau [EMAIL PROTECTED] -Original Message- From: sgrobins [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2008 8:38 PM To: fw-general@lists.zend.com Subject: [fw-general] capture STDERR with Zend_Log Hello, I am using Zend_Log for all my output in a script

RE: [fw-general] capture STDERR with Zend_Log

2008-07-30 Thread Vincent de Lau
-Original Message- From: Vincent de Lau [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2008 8:49 PM To: fw-general@lists.zend.com Subject: RE: [fw-general] capture STDERR with Zend_Log I've created a custom error handler for this. See http:// php.net/set_error_handler

RE: [fw-general] The how-to / what to do upgrading 1.5.2 to 1.6.0

2008-07-24 Thread Vincent de Lau
The new Zend_View stream wrapper might have something to do with this, although I'm not sure it is included in 1.6RC1. See http://www.nabble.com/Zend_View-and-the-View-Stream-Wrapper-tc17607130ef15440.html#a17607130 Vincent de Lau [EMAIL PROTECTED] -Original Message- From: Bruno

Re: [fw-general] descriptive urls using zend

2008-06-24 Thread Vincent de Lau
/* is the default route, but you van define an alternate route like /:controller/:param1/:param2. I hope this gets you underway. Kind regards, Vincent de Lau [EMAIL PROTECTED] [1] http://framework.zend.com/manual/en/zend.controller.router.html

RE: [fw-general] About the css issue

2008-06-05 Thread Vincent de Lau
in a document, and it should be in head. Regards, Vincent de Lau [EMAIL PROTECTED]